/* ============================================================
   EBERT COMUNICAÇÃO — Design System
   Paleta: #FFCC29 · #111111 · #FFFFFF · #888888 · #F0F0F0
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --yellow:      #FFCC29;
  --yellow-dark: #e6b800;
  --black:       #111111;
  --black-soft:  #1A1A1A;
  --gray-dark:   #2A2A2A;
  --gray-mid:    #888888;
  --gray-light:  #F0F0F0;
  --white:       #FFFFFF;

  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Playfair Display', serif;
  --font-body:    'Inter', sans-serif;

  --nav-h: 72px;
  --radius: 6px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --shadow: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.2);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
input, textarea, select {
  font-family:inherit;
  outline:none;
  border:none;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { line-height:1.15; font-weight:700; }
.display {
  font-family: var(--font-display);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.serif { font-family: var(--font-serif); }

/* ── UTILITIES ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--yellow);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-title em {
  font-style: italic;
  color: var(--yellow);
}
.section-sub {
  color: var(--gray-mid);
  font-size: 1rem;
  max-width: 540px;
  line-height: 1.7;
}
.section-sub.light { color: rgba(255,255,255,0.6); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 4px 16px rgba(255,204,41,0.4);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,204,41,0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost.dark {
  color: var(--black);
  border-color: rgba(0,0,0,0.25);
}
.btn-ghost.dark:hover { border-color: var(--black); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-icon { font-size: 1rem; }

/* ── HEADER / NAV ─────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
#header.scrolled {
  background: rgba(17,17,17,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
#header:not(.scrolled) { background: transparent; }
#header .page-inicio & { background: transparent; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .logo-mark {
  width: 10px;
  height: 32px;
  background: var(--yellow);
  border-radius: 2px;
  flex-shrink: 0;
}
.nav-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 3px;
  color: var(--white);
  line-height: 1;
}
.nav-logo .logo-text span { color: var(--yellow); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(17,17,17,0.98);
  backdrop-filter: blur(12px);
  padding: 32px 40px;
  flex-direction: column;
  gap: 24px;
  z-index: 999;
  border-top: 1px solid var(--gray-dark);
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}
.mobile-nav.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 1.25rem;
  font-family: var(--font-display);
  letter-spacing: 2px;
  border-bottom: 1px solid var(--gray-dark);
  padding-bottom: 16px;
  transition: color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--yellow); }

/* ── PAGE HERO (interior pages) ──────────────────────────── */
.page-hero {
  background: var(--black);
  padding: calc(var(--nav-h) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: var(--yellow);
  opacity: 0.04;
  border-radius: 50%;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.page-hero-breadcrumb a,
.page-hero-breadcrumb span {
  font-size: 0.8rem;
  color: var(--gray-mid);
  transition: color var(--transition);
}
.page-hero-breadcrumb a:hover { color: var(--yellow); }
.page-hero-breadcrumb .sep { color: var(--gray-dark); }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--yellow); }
.page-hero p {
  color: rgba(255,255,255,0.55);
  font-size: 1.1rem;
  max-width: 560px;
  line-height: 1.7;
}
.page-hero-line {
  width: 60px;
  height: 4px;
  background: var(--yellow);
  margin: 28px 0;
  border-radius: 2px;
}

/* ── HOME HERO ───────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.hero-tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: var(--yellow);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-tag::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-title em {
  font-style: italic;
  color: var(--yellow);
  display: block;
}
.hero-subtitle {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-clients {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-dark);
}
.hero-clients-label {
  font-size: 0.75rem;
  color: var(--gray-mid);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-clients-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.client-pill {
  background: var(--gray-dark);
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
}

/* Hero Geometry (right side) */
.hero-geo {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.geo-shape {
  position: absolute;
  border-radius: 4px;
}
.geo-1 {
  width: 280px; height: 320px;
  background: var(--yellow);
  top: 40px; right: 40px;
  animation: geoFloat1 6s ease-in-out infinite;
}
.geo-2 {
  width: 200px; height: 240px;
  background: var(--gray-dark);
  top: 80px; right: 100px;
  animation: geoFloat2 8s ease-in-out infinite;
}
.geo-3 {
  width: 120px; height: 80px;
  background: var(--white);
  bottom: 120px; right: 60px;
  animation: geoFloat3 5s ease-in-out infinite;
}
.geo-4 {
  width: 60px; height: 60px;
  background: var(--yellow);
  bottom: 180px; right: 260px;
  border-radius: 50%;
  animation: geoFloat1 7s ease-in-out infinite reverse;
}
.geo-dot-grid {
  position: absolute;
  bottom: 60px; left: 20px;
  width: 100px; height: 100px;
  background-image: radial-gradient(var(--gray-dark) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
}
.geo-line {
  position: absolute;
  top: 60px; left: 40px;
  width: 2px;
  height: 180px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
}
@keyframes geoFloat1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-16px) rotate(2deg); }
}
@keyframes geoFloat2 {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%       { transform: translateY(12px) rotate(-1deg); }
}
@keyframes geoFloat3 {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(10px); }
}

/* ── TICKER ──────────────────────────────────────────────── */
#ticker {
  background: var(--gray-dark);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  white-space: nowrap;
}
.ticker-item span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.ticker-dot {
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── STATS ───────────────────────────────────────────────── */
#stats {
  background: var(--white);
  padding: 72px 0;
  border-bottom: 1px solid #eee;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 32px 40px;
  border-right: 1px solid #eee;
  text-align: center;
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--gray-light); }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.stat-number .suffix {
  color: var(--yellow);
  font-size: 0.7em;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ── SERVICES ────────────────────────────────────────────── */
#servicos {
  background: var(--gray-light);
  padding: 100px 0;
}
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border-top: 4px solid var(--yellow);
  transition: var(--transition);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--black);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.25rem;
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}
.service-card p {
  font-size: 0.875rem;
  color: var(--gray-mid);
  line-height: 1.7;
}

/* ── CASES (home preview + full page) ───────────────────── */
#cases-preview, #cases-full {
  background: var(--white);
  padding: 100px 0;
}
.cases-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card-img { width: 100%; height: 220px; object-fit: cover; display: block; border-bottom: 2px solid var(--yellow); }
.case-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #eee;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.case-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--yellow);
  margin-bottom: 12px;
}
.case-card-header h3 {
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.3;
}
.case-sector {
  background: rgba(255,204,41,0.15);
  border: 1px solid rgba(255,204,41,0.3);
  color: var(--yellow);
  font-size: 0.65rem;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}
.case-card-header {
  background: var(--black);
  padding: 28px 28px 20px;
  display: flex;
  flex-direction: column;
}
.case-card-header .case-sector {
  order: -1;
  align-self: flex-start;
}
.case-card-body {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.case-card-body p {
  font-size: 0.875rem;
  color: var(--gray-mid);
  line-height: 1.65;
}
.case-metric {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.case-metric-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--yellow);
  line-height: 1;
}
.case-metric-label {
  font-size: 0.75rem;
  color: var(--gray-mid);
  line-height: 1.4;
}
.case-card-footer {
  padding: 16px 28px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.case-card-footer .client-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.5px;
}
.case-arrow {
  width: 32px; height: 32px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--black);
  transition: var(--transition);
}
.case-card:hover .case-arrow {
  background: var(--yellow);
  color: var(--black);
}

/* ── CLIENTS STRIP ───────────────────────────────────────── */
#clients-strip {
  background: var(--gray-light);
  padding: 64px 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}
.clients-strip-label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 40px;
}
.clients-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.client-logo-pill { background: var(--white); border: 1px solid #e0e0e0; border-radius: var(--radius); padding: 14px 28px; font-weight: 700; font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-mid); transition: var(--transition); } .client-logo-pill:hover { border-color: var(--yellow); color: var(--black); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.client-logo-img {
  height: 48px;
  max-width: 140px;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: var(--transition);
}
.client-full-card .client-logo-img {
  margin-bottom: 12px;
}
.clients-logos .client-logo-img {
  margin: 0;
  padding: 10px 20px;
}
.client-logo-img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Full clients grid (cases.html) */
.clients-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.client-full-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid #e8e8e8;
  transition: var(--transition);
}
.client-full-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.client-full-card .name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
  margin-bottom: 4px;
}
.client-full-card .sector {
  font-size: 0.72rem;
  color: var(--gray-mid);
  letter-spacing: 1px;
}

/* ── TESTIMONIAL ─────────────────────────────────────────── */
#testimonial {
  background: var(--yellow);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
#testimonial::before {
  content: '\201C';
  position: absolute;
  top: -20px; left: 20px;
  font-size: 22rem;
  color: rgba(0,0,0,0.06);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.testimonial-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 32px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-avatar {
  width: 48px; height: 48px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-weight: 700;
  font-size: 1rem;
}
.author-info .name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
}
.author-info .role {
  font-size: 0.8rem;
  color: rgba(0,0,0,0.55);
}
.testimonial-stat {
  text-align: center;
  flex-shrink: 0;
}
.testimonial-stat .num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--black);
  line-height: 1;
  letter-spacing: 1px;
}
.testimonial-stat .label {
  font-size: 0.8rem;
  color: rgba(0,0,0,0.6);
  max-width: 140px;
  line-height: 1.4;
  margin-top: 4px;
}

/* ── TEAM ────────────────────────────────────────────────── */
#equipe {
  background: var(--gray-light);
  padding: 100px 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #eee;
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--black);
  background: var(--yellow);
}
.team-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.78rem;
  color: var(--gray-mid);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.team-line {
  width: 32px;
  height: 3px;
  background: var(--yellow);
  margin: 0 auto;
  border-radius: 2px;
}

/* ── AWARDS ──────────────────────────────────────────────── */
#premios {
  background: var(--white);
  padding: 100px 0;
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.award-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 2px solid transparent;
  transition: var(--transition);
}
.award-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255,204,41,0.15);
}
.award-img { height: 60px; max-width: 100%; object-fit: contain; margin: 0 auto 16px; display: block; }`n.award-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.award-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
  margin-bottom: 4px;
}
.award-year {
  font-size: 0.75rem;
  color: var(--gray-mid);
}

/* ── NEWS ────────────────────────────────────────────────── */
#noticias {
  background: var(--gray-light);
  padding: 100px 0;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #eee;
  transition: var(--transition);
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.news-thumb {
  height: 180px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.news-thumb-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.3;
}
.news-thumb-cat {
  position: absolute;
  bottom: 12px;
  left: 16px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.news-body {
  padding: 24px;
}
.news-date {
  font-size: 0.72rem;
  color: var(--gray-mid);
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.news-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 10px;
}
.news-body p {
  font-size: 0.82rem;
  color: var(--gray-mid);
  line-height: 1.6;
}
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 16px;
  transition: gap var(--transition);
}
.news-link:hover { gap: 10px; color: var(--yellow); }

/* ── SOBRE HISTORIA ──────────────────────────────────────── */
#historia {
  background: var(--white);
  padding: 100px 0;
}
.historia-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.historia-geo {
  position: relative;
  height: 420px;
}
.historia-block {
  position: absolute;
  border-radius: var(--radius);
}
.hb-1 {
  width: 70%; height: 70%;
  background: var(--yellow);
  bottom: 0; left: 0;
}
.hb-2 {
  width: 55%; height: 60%;
  background: var(--black);
  top: 0; right: 0;
}
.hb-3 {
  width: 40%; height: 40%;
  background: var(--gray-light);
  top: 20px; left: 20px;
  border: 2px solid var(--white);
}
.historia-years {
  position: absolute;
  bottom: 20px; right: 20px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.historia-years .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--yellow);
  line-height: 1;
}
.historia-years .lbl {
  font-size: 0.72rem;
  color: var(--gray-mid);
  letter-spacing: 1px;
}
.historia-text .values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-dot {
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.value-item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.value-item p {
  font-size: 0.82rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* ── CTA BAND ────────────────────────────────────────────── */
#cta-band {
  background: var(--black);
  padding: 80px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-band-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 8px;
}
.cta-band-text p {
  color: rgba(255,255,255,0.45);
  font-size: 0.95rem;
}
.cta-band-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.cta-phone {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-phone a {
  color: var(--white);
  font-weight: 600;
  transition: color var(--transition);
}
.cta-phone a:hover { color: var(--yellow); }

/* ── PARTNERS ────────────────────────────────────────────── */
#parceiros {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid #eee;
}
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}
.partner-pill {
  background: var(--gray-light);
  border-radius: 40px;
  padding: 10px 24px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-mid);
  border: 1px solid #e8e8e8;
  transition: var(--transition);
}
.partner-pill:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

/* ── CONTACT PAGE ────────────────────────────────────────── */
#contato-section {
  background: var(--white);
  padding: 100px 0;
}
.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--black);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item .label {
  font-size: 0.72rem;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.contact-item .value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
}
.contact-item .value a {
  color: var(--black);
  transition: color var(--transition);
}
.contact-item .value a:hover { color: var(--yellow); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-link {
  width: 40px; height: 40px;
  background: var(--gray-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gray-mid);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--black);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--gray-light);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--black);
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--yellow);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,204,41,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-mid); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit {
  grid-column: 1 / -1;
  margin-top: 8px;
}
.form-note {
  font-size: 0.75rem;
  color: var(--gray-mid);
  margin-top: 12px;
}

.form-success {
  display: none;
  background: rgba(255,204,41,0.1);
  border: 1.5px solid var(--yellow);
  border-radius: var(--radius);
  padding: 20px;
  color: var(--black);
  font-size: 0.9rem;
  margin-top: 16px;
}

/* WhatsApp CTA */
.whatsapp-cta {
  background: var(--black);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.whatsapp-icon {
  width: 48px; height: 48px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.whatsapp-cta-text p {
  font-size: 0.8rem;
  color: var(--gray-mid);
}
.whatsapp-cta-text strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.whatsapp-cta-text a {
  color: #25D366;
  font-size: 0.82rem;
  font-weight: 600;
  transition: opacity var(--transition);
}
.whatsapp-cta-text a:hover { opacity: 0.8; }

/* ── FOOTER ──────────────────────────────────────────────── */
#footer {
  background: var(--black-soft);
  color: rgba(255,255,255,0.6);
  padding: 72px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gray-dark);
}
.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 3px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.footer-brand .logo-text .mark {
  width: 8px;
  height: 26px;
  background: var(--yellow);
  border-radius: 2px;
  display: inline-block;
}
.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 24px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--yellow); }
.footer-contact-item {
  font-size: 0.82rem;
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--yellow); }
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social {
  width: 34px; height: 34px;
  background: var(--gray-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer-social:hover {
  background: var(--yellow);
  color: var(--black);
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
}
.whatsapp-float-bubble {
  background: var(--black);
  color: var(--white);
  font-size: 0.78rem;
  padding: 8px 14px;
  border-radius: 20px;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition);
  pointer-events: none;
  white-space: nowrap;
  box-shadow: var(--shadow);
}
.whatsapp-float:hover .whatsapp-float-bubble {
  opacity: 1;
  transform: translateX(0);
}
.whatsapp-float-btn {
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

/* ── DIVIDERS ────────────────────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #e0e0e0, transparent);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .hero-inner { gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid #eee; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-bottom: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  :root { --nav-h: 64px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  #hero { min-height: 100svh; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 0;
    gap: 48px;
  }
  .hero-geo { height: 300px; }
  .geo-1 { width: 200px; height: 220px; right: 20px; }
  .geo-2 { width: 140px; height: 160px; right: 70px; }

  .services-header,
  .cases-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .services-grid,
  .cases-grid,
  .news-grid { grid-template-columns: 1fr; }

  .testimonial-inner { grid-template-columns: 1fr; gap: 40px; }
  .testimonial-stat { text-align: left; }

  .historia-inner { grid-template-columns: 1fr; }
  .historia-geo { display: none; }

  .contato-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-grid { grid-template-columns: 1fr; }

  .cta-band-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .cta-band-actions { flex-direction: column; align-items: flex-start; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .whatsapp-float { bottom: 20px; right: 20px; }

  .stat-item { border-right: none; }
}



/* Img Placeholders */
.nav-logo-img { height: 40px; width: auto; }
.footer-logo-img { height: 50px; width: auto; margin-bottom: 16px; }





