/* =============================================================================
   LARISSA VALEZI · MEDIA KIT
   Paleta terracota & creme · tipografia editorial (Fraunces + Montserrat)
   ========================================================================== */

:root {
  /* Cores */
  --bg: #fdfaf4;
  --cream: #f4ead7;
  --cream-soft: #f9f1e6;
  --terra: #b76827;
  --terra-deep: #9a541d;
  --terra-soft: #c98a55;
  --accent: #c29d83;
  --ink: #2b2420;
  --ink-soft: #6a5e54;
  --line: #e7dccb;
  --white: #ffffff;

  /* Tipografia */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Montserrat", system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-lg: 28px;
  --header-h: 76px;

  /* Sombra e transição */
  --shadow-sm: 0 6px 24px rgba(75, 52, 30, 0.08);
  --shadow-md: 0 18px 50px rgba(75, 52, 30, 0.14);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Tipografia base ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; }
.kicker {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--terra);
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: var(--sans); font-weight: 500; font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 0.85em 1.7em; border-radius: 100px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--terra); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--terra-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { border: 1.5px solid var(--terra); color: var(--terra); }
.btn-ghost:hover { background: var(--terra); color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 1.05em 2.2em; font-size: 1rem; }

/* =============================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(253, 250, 244, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; width: 100%; }
.brand {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 500;
  letter-spacing: -0.01em; color: var(--ink); white-space: nowrap;
}
.nav { display: flex; gap: 1.9rem; }
.nav a {
  font-size: 0.86rem; font-weight: 500; color: var(--ink-soft);
  letter-spacing: 0.01em; position: relative; padding: 0.2em 0;
  transition: color 0.25s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--terra); transition: width 0.3s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.lang-switch { display: flex; align-items: center; gap: 2px; background: var(--cream); border-radius: 100px; padding: 4px; }
.lang-btn {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; color: var(--ink-soft);
  padding: 0.35em 0.7em; border-radius: 100px; transition: all 0.25s var(--ease);
}
.lang-btn.is-active { background: var(--terra); color: var(--white); }
.lang-btn:not(.is-active):hover { color: var(--ink); }
.header-cta { font-size: 0.84rem; padding: 0.7em 1.3em; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; width: 30px; height: 30px; align-items: center; justify-content: center; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: calc(var(--header-h) + 2rem); padding-bottom: 3rem;
  background:
    radial-gradient(120% 90% at 85% 10%, var(--cream-soft) 0%, transparent 55%),
    radial-gradient(90% 80% at 10% 90%, #f6ecdd 0%, transparent 50%),
    var(--bg);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero-role { font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terra); font-weight: 600; margin-bottom: 1.4rem; }
.hero-name { font-size: clamp(3.4rem, 9vw, 6.6rem); line-height: 0.95; letter-spacing: -0.02em; margin-bottom: 1.4rem; }
.hero-name::after { content: ""; display: block; width: 64px; height: 3px; background: var(--terra); margin-top: 1.5rem; border-radius: 2px; }
.hero-langline { font-size: 1.05rem; color: var(--ink-soft); max-width: 30ch; margin-bottom: 1.8rem; font-style: italic; font-family: var(--serif); }
.hero-highlight { display: flex; flex-direction: column; gap: 0.2rem; margin-bottom: 2.2rem; }
.hero-highlight-num { font-family: var(--serif); font-size: 1.3rem; line-height: 1.32; color: var(--ink); max-width: 30ch; }
.hero-niches { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-photo { position: relative; }
.hero-photo .ph, .hero-photo .media-img { border-radius: 220px 220px var(--radius-lg) var(--radius-lg); box-shadow: var(--shadow-md); }
.hero-photo-badge {
  position: absolute; bottom: 22px; left: -18px;
  background: var(--white); color: var(--terra);
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.7em 1.2em; border-radius: 100px; box-shadow: var(--shadow-sm);
}
.hero-scroll {
  align-self: center; margin-top: 2.5rem; font-size: 0.74rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 0.6rem;
}
.hero-scroll::after { content: ""; width: 1px; height: 34px; background: linear-gradient(var(--terra), transparent); animation: scrollPulse 2s var(--ease) infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(0.7); } 50% { opacity: 1; transform: scaleY(1); } }

/* =============================================================================
   SEÇÕES — base
   ========================================================================== */
.section { padding-block: clamp(4.5rem, 9vw, 8rem); }
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-title { font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: var(--ink-soft); }
.section-media { background: var(--cream-soft); }
.section-brands { background: var(--cream-soft); }
.section-about { background: linear-gradient(180deg, var(--bg), var(--cream-soft)); }

/* ---------- Placeholders elegantes ---------- */
.ph {
  position: relative; width: 100%; border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, rgba(183,104,39,0.045) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, var(--cream) 0%, #efe2cd 100%);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--terra-soft); overflow: hidden;
}
.ph::before {
  content: attr(data-ph-label);
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--terra-soft); opacity: 0.8;
}
.ph-caption { position: absolute; bottom: 12px; left: 14px; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terra); opacity: 0.65; }
.media-img { width: 100%; border-radius: var(--radius); overflow: hidden; background: var(--cream); }
.media-img img { width: 100%; height: 100%; object-fit: cover; }

/* Proporções */
.ratio-11 { aspect-ratio: 1/1; }
.ratio-34 { aspect-ratio: 3/4; }
.ratio-43 { aspect-ratio: 4/3; }
.ratio-45 { aspect-ratio: 4/5; }
.ratio-916 { aspect-ratio: 9/16; }
.ph-portrait { aspect-ratio: 4/5; }

/* =============================================================================
   NÚMEROS / REDES
   ========================================================================== */
.socials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.social-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.4rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.social-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.social-icon { width: 38px; height: 38px; color: var(--terra); margin-bottom: 0.5rem; }
.social-icon svg { width: 100%; height: 100%; fill: currentColor; }
.social-num { font-family: var(--serif); font-size: 2.5rem; line-height: 1; color: var(--ink); font-variant-numeric: tabular-nums; }
.social-net { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.social-handle { font-weight: 600; font-size: 1rem; color: var(--ink); margin-top: 0.15rem; }
.social-desc { font-size: 0.78rem; line-height: 1.45; color: var(--ink-soft); margin-top: 0.5rem; padding-top: 0.7rem; border-top: 1px solid var(--line); }

.locations { margin-top: clamp(2.5rem, 5vw, 4rem); text-align: center; }
.locations-title { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.78rem; font-weight: 600; color: var(--terra); margin-bottom: 1.2rem; }
.locations-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; margin-bottom: 0.8rem; }
.locations-list li {
  font-family: var(--serif); font-size: 1.15rem; color: var(--ink);
  padding: 0.4em 1.2em; border: 1px solid var(--line); border-radius: 100px; background: var(--white);
}
.locations-note { font-size: 0.86rem; color: var(--ink-soft); font-style: italic; }

/* =============================================================================
   CARROSSEL
   ========================================================================== */
.carousel { position: relative; margin-top: 0.5rem; max-width: var(--maxw); margin-inline: auto; }
.carousel-track {
  display: flex; gap: 1.4rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-inline: var(--gutter); padding-block: 1rem;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide {
  flex: 0 0 clamp(200px, 19vw, 250px); scroll-snap-align: center;
}
.carousel-slide .ph, .carousel-slide .media-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 52px; height: 52px; border-radius: 50%; background: var(--white); color: var(--terra);
  font-size: 1.8rem; line-height: 1; box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center; transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.carousel-btn:hover { background: var(--terra); color: var(--white); }
.carousel-prev { left: clamp(8px, 3vw, 40px); }
.carousel-next { right: clamp(8px, 3vw, 40px); }
.carousel-prev:hover { transform: translateY(-50%) scale(1.08); }
.carousel-next:hover { transform: translateY(-50%) scale(1.08); }
.carousel-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
/* No desktop vários slides ficam visíveis e os últimos dots nunca ativariam;
   a navegação fica por setas + arrasto. Os dots permanecem só no mobile. */
@media (min-width: 861px) { .carousel-dots { display: none; } }
.carousel-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); transition: all 0.3s var(--ease); }
.carousel-dots .dot.is-active { background: var(--terra); width: 26px; border-radius: 100px; }

/* =============================================================================
   MARCAS
   ========================================================================== */
.brands-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.brand-cell {
  aspect-ratio: 3/2; display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 1.2rem; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.brand-cell:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.brand-cell img { max-height: 60%; width: auto; object-fit: contain; filter: grayscale(1); opacity: 0.7; transition: filter 0.3s var(--ease), opacity 0.3s var(--ease); }
.brand-cell:hover img { filter: grayscale(0); opacity: 1; }
.brand-ph { font-family: var(--serif); font-size: 1rem; color: var(--terra-soft); text-align: center; }

/* =============================================================================
   VÍDEOS
   ========================================================================== */
.videos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.video-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.video-frame { position: relative; background: var(--cream); }
.video-frame .ph, .video-frame video { border-radius: 0; }
.video-frame video { width: 100%; height: 100%; object-fit: cover; background: #000; }
.video-play {
  position: absolute; inset: 0; margin: auto; width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: var(--terra); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); pointer-events: none;
}
.video-play svg { width: 26px; height: 26px; fill: currentColor; margin-left: 3px; }
.video-body { padding: 1.3rem 1.4rem 1.6rem; }
.video-title { font-size: 1.25rem; margin-bottom: 0.5rem; }
.video-desc { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.55; }

/* =============================================================================
   ANALYTICS
   ========================================================================== */
.result-groups { display: flex; flex-direction: column; gap: 1.6rem; }
.result-group {
  display: flex; align-items: center; gap: clamp(1.6rem, 4vw, 3.2rem);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.6rem); box-shadow: var(--shadow-sm);
}
.result-group:nth-child(even) { flex-direction: row-reverse; background: var(--cream-soft); }
.result-group-text { flex: 0 0 31%; min-width: 220px; }
.result-kicker {
  display: block; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terra); font-weight: 600; margin-bottom: 0.9rem;
}
.result-group-title { font-family: var(--serif); font-size: clamp(1.25rem, 2.1vw, 1.7rem); line-height: 1.28; }
.result-images { flex: 1; display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: center; align-items: flex-start; }
.result-print {
  width: clamp(180px, 17vw, 232px); height: auto; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); background: var(--white);
  cursor: zoom-in; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.result-print:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
@media (max-width: 760px) {
  .result-group, .result-group:nth-child(even) { flex-direction: column; align-items: stretch; gap: 1.5rem; }
  .result-group-text { flex-basis: auto; min-width: 0; }
}

/* =============================================================================
   DEPOIMENTOS
   ========================================================================== */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.2rem 2.2rem 2rem; position: relative; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.testimonial-card::before {
  content: "\201C"; position: absolute; top: 0.1em; right: 0.4em;
  font-family: var(--serif); font-size: 5rem; color: var(--cream); line-height: 1;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stars { display: flex; gap: 3px; margin-bottom: 1.1rem; }
.star { width: 18px; height: 18px; color: var(--terra); }
.star svg { width: 100%; height: 100%; fill: currentColor; }
.testimonial-quote { font-family: var(--serif); font-size: 1.2rem; line-height: 1.5; color: var(--ink); margin-bottom: 1.4rem; position: relative; z-index: 1; }
.testimonial-meta { display: flex; flex-direction: column; gap: 0.15rem; border-top: 1px solid var(--line); padding-top: 1.1rem; }
.testimonial-author { font-weight: 600; font-size: 1rem; }
.testimonial-source { font-size: 0.82rem; color: var(--ink-soft); letter-spacing: 0.02em; }

/* =============================================================================
   SOBRE
   ========================================================================== */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-photo-2 { margin-top: 1.8rem; }
.about-photo-3 { margin-top: -1.8rem; }
.about-photos .ph, .about-photos .media-img { box-shadow: var(--shadow-sm); }
.about-title { font-size: clamp(2rem, 4.5vw, 3rem); margin: 0.8rem 0 1.4rem; }
.about-body { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 2rem; max-width: 46ch; }

/* =============================================================================
   CONTATO
   ========================================================================== */
.section-contact { background: var(--ink); color: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.contact-title { font-size: clamp(2.4rem, 6vw, 4rem); color: var(--white); margin-bottom: 1.2rem; }
.contact-sub { font-size: 1.1rem; color: rgba(244,234,215,0.75); max-width: 40ch; margin-bottom: 2rem; }
.section-contact .btn-primary { background: var(--terra); }
.section-contact .btn-primary:hover { background: var(--terra-soft); }
.contact-email { margin-top: 1.2rem; font-size: 1.05rem; }
.contact-email a { color: var(--cream); border-bottom: 1px solid rgba(244,234,215,0.4); padding-bottom: 2px; transition: color 0.25s var(--ease); }
.contact-email a:hover { color: var(--terra-soft); }
.contact-follow { display: flex; align-items: center; gap: 1rem; margin-top: 2.4rem; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,234,215,0.6); }
.contact-socials { display: flex; gap: 0.6rem; }
.contact-photo .ph, .contact-photo .media-img { border-radius: var(--radius-lg) var(--radius-lg) 200px 200px; box-shadow: var(--shadow-md); }
.contact-photo .media-img { aspect-ratio: 4/5; }

.icon-link {
  width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(244,234,215,0.25); color: var(--cream); transition: all 0.3s var(--ease);
}
.icon-link svg { width: 20px; height: 20px; fill: currentColor; }
.icon-link:hover { background: var(--terra); border-color: var(--terra); color: var(--white); transform: translateY(-3px); }

/* =============================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink); color: rgba(244,234,215,0.7); padding-block: 2.5rem; border-top: 1px solid rgba(244,234,215,0.12); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.footer-brand { font-family: var(--serif); font-size: 1.3rem; color: var(--cream); }
.footer-socials { display: flex; gap: 0.6rem; }
.footer-rights { font-size: 0.8rem; }

/* =============================================================================
   REVEAL ANIMATION
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =============================================================================
   RESPONSIVO
   ========================================================================== */
@media (max-width: 1024px) {
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  :root { --header-h: 64px; }
  .nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }

  /* Menu mobile */
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; gap: 0; background: rgba(253,250,244,0.98); backdrop-filter: blur(14px);
    padding: 1rem var(--gutter) 1.5rem; box-shadow: var(--shadow-md);
    transform: translateY(-120%); transition: transform 0.4s var(--ease); display: flex;
  }
  body.menu-open .nav { transform: translateY(0); }
  .nav a { padding: 0.9em 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav a::after { display: none; }

  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero-name::after { margin-inline: auto; }
  .hero-langline { margin-inline: auto; }
  .hero-highlight { align-items: center; }
  .hero-actions { justify-content: center; }
  .hero-photo { max-width: 380px; margin-inline: auto; order: -1; }
  .hero-photo-badge { left: 50%; transform: translateX(-50%); }

  .socials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .analytics-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-text { text-align: center; }
  .about-body { margin-inline: auto; }
  .contact-photo { max-width: 360px; margin-inline: auto; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 520px) {
  .socials-grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .social-card { padding: 1.5rem 0.8rem; }
  .social-num { font-size: 2rem; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .videos-grid { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }
  .carousel-btn { width: 42px; height: 42px; font-size: 1.4rem; }
}

/* ---------- Acessibilidade ---------- */
:focus-visible { outline: 2px solid var(--terra); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =============================================================================
   ADIÇÕES — métricas, carrosséis de vídeo, analytics, lightbox
   ========================================================================== */

/* ---------- Faixa de métricas de destaque ---------- */
.highlights-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
  margin-top: 1.6rem; padding: 2rem clamp(1rem, 4vw, 3rem);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.highlight { text-align: center; position: relative; }
.highlight + .highlight::before {
  content: ""; position: absolute; left: -0.7rem; top: 12%; height: 76%; width: 1px; background: var(--line);
}
.highlight-num {
  display: block; font-family: var(--serif); font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--terra); line-height: 1; font-variant-numeric: tabular-nums;
}
.highlight-label {
  display: block; margin-top: 0.5rem; font-size: 0.78rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-soft); font-weight: 500;
}

/* ---------- Coleções de vídeo (carrosséis temáticos) ---------- */
.video-collection { margin-top: clamp(2.5rem, 5vw, 4rem); }
.video-collection:first-child { margin-top: 0; }
.collection-head { margin-bottom: 1.4rem; display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.collection-title { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.collection-title::before {
  content: ""; display: inline-block; width: 26px; height: 2px; background: var(--terra);
  vertical-align: middle; margin-right: 0.7rem; border-radius: 2px;
}
.collection-desc { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

.video-collection .carousel-slide { flex: 0 0 clamp(160px, 14vw, 195px); }
.video-card { background: transparent; box-shadow: none; }
.video-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); cursor: pointer; background: #000;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.video-frame:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.video-frame .media-img img { transition: transform 0.5s var(--ease); }
.video-frame:hover .media-img img { transform: scale(1.04); }
.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-frame .video-play {
  position: absolute; inset: 0; margin: auto; width: 58px; height: 58px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: var(--terra);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.video-frame:hover .video-play { transform: scale(1.08); background: #fff; }
.video-play svg { width: 24px; height: 24px; fill: currentColor; margin-left: 3px; }
.video-caption {
  margin-top: 0.9rem; font-size: 0.86rem; color: var(--ink); font-weight: 500;
  letter-spacing: 0.01em; text-align: center;
}

/* ---------- Marcas: logos monocromáticas ---------- */
.brand-cell img { max-width: 80%; max-height: 64%; filter: none; opacity: 0.62; }
.brand-cell:hover img { opacity: 1; }

/* ---------- Analytics ---------- */
.ratio-analytics { aspect-ratio: 3/4; }
.analytics-card { display: flex; flex-direction: column; margin: 0; }
.analytics-card .media-img { border-radius: var(--radius) var(--radius) 0 0; }
.analytics-card .media-img img { object-position: top center; }
.analytics-caption {
  padding: 1rem 1.2rem; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--terra); font-weight: 600; background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius); text-align: center;
}

/* ---------- Zoom / Lightbox ---------- */
.is-zoomable { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 4vmin;
  background: rgba(26, 24, 21, 0.92); backdrop-filter: blur(6px);
}
.lightbox.is-open { display: flex; animation: lbIn 0.25s var(--ease); }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  max-width: 100%; max-height: 92vh; border-radius: 12px; box-shadow: var(--shadow-md);
  object-fit: contain;
}
.lightbox-close {
  position: absolute; top: 18px; right: 24px; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.14); color: #fff; font-size: 1.8rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background 0.25s var(--ease);
}
.lightbox-close:hover { background: rgba(255,255,255,0.28); }

/* ---------- Responsivo das adições ---------- */
@media (max-width: 860px) {
  .highlights-strip { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; }
  .highlight:nth-child(3)::before, .highlight:nth-child(odd)::before { display: none; }
  .collection-head { flex-direction: column; gap: 0.3rem; }
}
@media (max-width: 520px) {
  .video-collection .carousel-slide { flex: 0 0 70vw; }
}
