/* ============================================================
   MÉTODO ELEVA — LANDING PAGE
   Arquivo: style.css

   PALETA BASEADA NAS REFERÊNCIAS ENVIADAS:
   - Preto / marrom profundo: #211c19
   - Marrom quente: #302824
   - Champagne/dourado suave: #b99672
   - Creme: #f4eee7
   - Taupe: #9c8d83

   A ideia é manter a estética:
   elegante + premium + limpa + feminina + editorial.
   ============================================================ */


/* ============================================================
   1. VARIÁVEIS GLOBAIS
   ============================================================ */
:root {
  --dark: #211c19;
  --dark-soft: #302824;
  --dark-lighter: #443a35;

  --champagne: #b99672;
  --champagne-light: #d5b995;

  --cream: #f4eee7;
  --white: #ffffff;

  --text-dark: #302824;
  --text-muted: #776c65;

  --border-light: rgba(33, 28, 25, 0.14);
  --border-dark: rgba(244, 238, 231, 0.18);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;

  --container: 1180px;

  --shadow-soft: 0 25px 70px rgba(33, 28, 25, 0.10);
  --transition: 450ms cubic-bezier(.2, .75, .2, 1);
}


/* ============================================================
   2. RESET
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: var(--font-body);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}


/* ============================================================
   3. ELEMENTOS REUTILIZÁVEIS
   ============================================================ */
.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 130px 0;
}

.section-light {
  background: var(--cream);
}

.section-dark {
  background: var(--dark);
  color: var(--cream);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 20px;

  color: var(--champagne);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .30em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--champagne);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 65px;
}

.section-heading h2,
.section-copy h2,
.cta-content h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 6vw, 82px);
  line-height: .95;
  letter-spacing: -.025em;
}

.section-heading h2 em,
.section-copy h2 em,
.cta-content h2 em {
  color: var(--champagne);
  font-weight: 400;
}

.section-heading > p:last-child,
.section-copy > p {
  max-width: 630px;
  margin-top: 24px;

  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.9;
}

.section-dark .section-heading > p:last-child {
  color: rgba(244, 238, 231, .68);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  min-height: 54px;
  padding: 0 28px;

  border: 1px solid transparent;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;

  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--champagne);
  color: var(--dark);
}

.button-primary:hover {
  background: var(--champagne-light);
}

.button-ghost {
  border-color: rgba(244, 238, 231, .45);
  color: var(--cream);
}

.button-ghost:hover {
  background: rgba(244, 238, 231, .10);
}


/* ============================================================
   4. CABEÇALHO / NAV
   ============================================================ */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;

  width: 100%;

  color: var(--cream);

  transition:
    background var(--transition),
    backdrop-filter var(--transition),
    box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(33, 28, 25, .88);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .15);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  color: var(--champagne);
  font-size: 26px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .08em;
}

.brand-text small {
  margin-top: 5px;
  color: rgba(244, 238, 231, .58);
  font-size: 7px;
  letter-spacing: .28em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;

  color: rgba(244, 238, 231, .82);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;

  height: 1px;
  background: var(--champagne);

  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--champagne);
  border-radius: 999px;
  color: var(--champagne) !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 1px;
  margin: 5px auto;
  background: var(--cream);
  transition: transform .3s, opacity .3s;
}


/* ============================================================
   5. HERO
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;

  min-height: 100svh;
  padding: 170px 0 100px;

  overflow: hidden;
  color: var(--cream);
  background: var(--dark);
}

.hero-photo {
  position: absolute;
  inset: 0;

  /*
    A imagem enviada da cliente está sendo usada.
  */
  background:
    linear-gradient(90deg, rgba(33,28,25,.90) 0%, rgba(33,28,25,.42) 46%, rgba(33,28,25,.18) 100%),
    linear-gradient(0deg, rgba(33,28,25,.62) 0%, transparent 60%),
    url("assets/hero-cliente.jpeg") center 20% / cover no-repeat;

  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    radial-gradient(circle at 85% 20%, rgba(185,150,114,.18), transparent 28%),
    linear-gradient(90deg, transparent, rgba(185,150,114,.04));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 170px);
  font-weight: 400;
  line-height: .78;
  letter-spacing: -.045em;
}

.hero h1 em {
  color: var(--champagne-light);
  font-weight: 400;
}

.hero-subtitle {
  max-width: 560px;
  margin-top: 32px;

  color: rgba(244, 238, 231, .78);
  font-size: 16px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.scroll-hint {
  position: absolute;
  z-index: 2;
  right: 42px;
  bottom: 34px;

  display: flex;
  align-items: center;
  gap: 12px;

  color: rgba(244, 238, 231, .62);
  writing-mode: vertical-rl;

  font-size: 9px;
  letter-spacing: .25em;
}

.scroll-hint span {
  width: 1px;
  height: 54px;
  background: var(--champagne);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(.55); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}


/* ============================================================
   6. SOBRE / MÉTODO
   ============================================================ */
.two-columns {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 100px;
  align-items: center;
}

.about-card {
  padding: 50px;

  background: #ebe3da;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
}

.card-number {
  display: block;
  margin-bottom: 10px;

  color: var(--champagne);
  font-size: 10px;
  letter-spacing: .20em;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
}

.about-card p {
  margin: 8px 0 30px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  gap: 14px;
  margin-top: 20px;

  color: var(--text-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--champagne);
  transition: transform var(--transition);
}

.text-link:hover span {
  transform: translateX(6px);
}


/* ============================================================
   7. PROCESSO
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 50px;

  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.process-card {
  min-height: 350px;
  padding: 42px 34px;

  border-right: 1px solid var(--border-dark);
  transition: background var(--transition), transform var(--transition);
}

.process-card:last-child {
  border-right: 0;
}

.process-card:hover {
  background: rgba(185, 150, 114, .07);
  transform: translateY(-5px);
}

.process-card > span {
  color: rgba(244, 238, 231, .45);
  font-size: 10px;
  letter-spacing: .2em;
}

.line-icon {
  margin: 55px 0 25px;
  color: var(--champagne);
  font-family: var(--font-display);
  font-size: 52px;
}

.process-card h3 {
  font-family: var(--font-display);
  font-size: 35px;
  font-weight: 500;
}

.process-card p {
  margin-top: 10px;
  color: rgba(244, 238, 231, .62);
  font-size: 13px;
  line-height: 1.8;
}


/* ============================================================
   8. RESULTADOS / CARROSSEL
   ============================================================ */
.results-section {
  overflow: hidden;
}

.heading-inline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.carousel-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  min-height: 46px;
  padding: 0 16px;

  border: 1px solid var(--border-light);
  border-radius: 999px;

  background: transparent;
  color: var(--text-dark);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pause-icon {
  color: var(--champagne);
  font-size: 14px;
}

.results-carousel {
  overflow: hidden;
}

.results-track {
  display: flex;
  transition: transform 800ms cubic-bezier(.2,.75,.2,1);
}

.result-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.result-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.result-images figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #ded5cc;
}

.result-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(.2,.75,.2,1);
}

.result-images figure:hover img {
  transform: scale(1.035);
}

.result-images figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;

  padding: 7px 10px;
  background: rgba(33, 28, 25, .80);

  color: var(--cream);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
}

.result-caption {
  display: flex;
  justify-content: space-between;
  gap: 30px;

  padding: 24px 0 0;
}

.result-caption span {
  color: var(--champagne);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .20em;
}

.result-caption p {
  max-width: 450px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: 35px;
}

.arrow {
  width: 46px;
  height: 46px;

  border: 1px solid var(--border-light);
  border-radius: 50%;

  background: transparent;
  color: var(--text-dark);

  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.arrow:hover {
  background: var(--dark);
  color: var(--cream);
  transform: translateY(-2px);
}

.dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 35px;
  height: 2px;
  background: #c9c0b8;
  transition: background var(--transition), width var(--transition);
}

.dot.active {
  width: 55px;
  background: var(--champagne);
}


/* ============================================================
   9. DEPOIMENTOS
   ============================================================ */
.testimonials-section {
  background: #eae2da;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  overflow: hidden;
  background: var(--dark);
  color: var(--cream);
  box-shadow: var(--shadow-soft);
}

.video-placeholder {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-width: 576px;
  margin-inline: auto;
  background: #171311;
}

.video-placeholder video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #171311;
}

.video-placeholder video:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: -2px;
}
.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 22px;
}

.testimonial-info strong {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
}

.testimonial-info span {
  color: rgba(244,238,231,.55);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}


/* ============================================================
   10. CTA FINAL
   ============================================================ */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 150px 0;

  background:
    radial-gradient(circle at 80% 30%, rgba(185,150,114,.16), transparent 25%),
    var(--dark);
  color: var(--cream);
}

.cta-decoration {
  position: absolute;
  right: -130px;
  bottom: -260px;

  width: 620px;
  height: 620px;

  border: 1px solid rgba(185,150,114,.22);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.cta-content > p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0 35px;

  color: rgba(244,238,231,.66);
  font-size: 15px;
  line-height: 1.8;
}

.button-large {
  min-height: 60px;
  padding-inline: 32px;
}


/* ============================================================
   11. FOOTER
   ============================================================ */
.footer {
  padding: 30px 0;
  background: #171311;
  color: rgba(244,238,231,.50);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;

  color: var(--cream);
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: .08em;
}

.footer p,
.footer a {
  font-size: 10px;
  letter-spacing: .05em;
}

.footer a:hover {
  color: var(--champagne);
}


/* ============================================================
   12. ANIMAÇÕES DE ENTRADA / SAÍDA
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 900ms cubic-bezier(.2,.75,.2,1),
    transform 900ms cubic-bezier(.2,.75,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 240ms;
}


/* ============================================================
   13. RESPONSIVIDADE — TABLET
   ============================================================ */
@media (max-width: 900px) {

  .section {
    padding: 100px 0;
  }

  .two-columns {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--border-dark);
  }

  .process-card:last-child {
    border-bottom: 0;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    max-width: 600px;
  }
}


/* ============================================================
   14. RESPONSIVIDADE — CELULAR
   ============================================================ */
@media (max-width: 700px) {

  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .site-header {
    background: rgba(33,28,25,.72);
    backdrop-filter: blur(12px);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 17px;
    left: 17px;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;

    padding: 8px;

    background: rgba(33,28,25,.97);
    border: 1px solid rgba(244,238,231,.10);
    border-radius: 18px;

    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .3s, transform .3s;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 15px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: 100svh;
    padding-bottom: 80px;
  }

  .hero-photo {
    background-position: 63% 20%;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(72px, 22vw, 120px);
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .scroll-hint {
    display: none;
  }

  .section-heading h2,
  .section-copy h2,
  .cta-content h2 {
    font-size: clamp(50px, 16vw, 72px);
  }

  .about-card {
    padding: 34px;
  }

  .heading-inline {
    align-items: flex-start;
    flex-direction: column;
  }

  .result-images {
    gap: 8px;
  }

  .result-images figcaption {
    left: 8px;
    bottom: 8px;
    padding: 5px 7px;
    font-size: 8px;
  }

  .result-caption {
    flex-direction: column;
    gap: 10px;
  }

  .carousel-controls {
    margin-top: 25px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-cta {
    padding: 110px 0;
  }
}


/* ============================================================
   15. ACESSIBILIDADE / REDUÇÃO DE MOVIMENTO
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


/* ============================================================
   SOBRE MIM — DRA. EDUARDA IGNÁCIO
   ============================================================ */
.about-doctor {
  position: relative;
  overflow: hidden;
}

.doctor-grid {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  gap: clamp(55px, 8vw, 110px);
  align-items: center;
}

.doctor-photo-wrap {
  position: relative;
  max-width: 500px;
}

.doctor-photo-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--dark-soft);
  box-shadow: var(--shadow-soft);
}

.doctor-photo-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 18px;
  border: 1px solid rgba(185, 150, 114, .48);
  pointer-events: none;
}

.doctor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(.2,.75,.2,1);
}

.doctor-photo-frame:hover .doctor-photo {
  transform: scale(1.025);
}

.doctor-photo-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--border-light);
}

.doctor-photo-caption span {
  color: var(--champagne);
  font-size: 10px;
  letter-spacing: .18em;
}

.doctor-photo-caption p {
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .20em;
}

.doctor-copy h2 {
  margin-bottom: 30px;
}

.doctor-intro {
  max-width: 680px;
}

.doctor-intro p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.9;
}

.doctor-intro p:first-child {
  margin-top: 0;
}

.doctor-intro strong {
  color: var(--text-dark);
  font-weight: 700;
}

.doctor-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.doctor-highlight {
  min-height: 130px;
  padding: 25px 20px;
  border-right: 1px solid var(--border-light);
}

.doctor-highlight:last-child {
  border-right: 0;
}

.doctor-highlight strong {
  display: block;
  color: var(--champagne);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
}

.doctor-highlight span {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 9px;
  line-height: 1.6;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.doctor-purpose {
  display: grid;
  grid-template-columns: 4px .95fr 1.05fr;
  gap: 45px;
  align-items: center;
  margin-top: 120px;
  padding-top: 65px;
  border-top: 1px solid var(--border-light);
}

.purpose-line {
  width: 4px;
  height: 125px;
  background: var(--champagne);
}

.doctor-purpose h3 {
  max-width: 620px;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  line-height: 1;
}

.doctor-purpose h3 em {
  color: var(--champagne);
  font-weight: 400;
}

.doctor-purpose > p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.9;
}

@media (max-width: 900px) {
  .doctor-grid {
    grid-template-columns: 1fr;
  }

  .doctor-photo-wrap {
    max-width: 600px;
  }

  .doctor-purpose {
    grid-template-columns: 4px 1fr;
  }

  .doctor-purpose > p {
    grid-column: 2;
  }
}

@media (max-width: 700px) {
  .doctor-highlights {
    grid-template-columns: 1fr;
  }

  .doctor-highlight {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--border-light);
  }

  .doctor-highlight:last-child {
    border-bottom: 0;
  }

  .doctor-purpose {
    grid-template-columns: 3px 1fr;
    gap: 20px;
    margin-top: 80px;
    padding-top: 45px;
  }

  .doctor-purpose > p {
    grid-column: 2;
  }
}

/* ============================================================
   WHATSAPP POR CIDADE
   ============================================================ */
.city-whatsapp-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 22px;
  width: 100%;
  max-width: 980px;
  margin: 45px auto 0;
}

.city-whatsapp-item {
  flex: 1 1 0;
  max-width: 300px;
  text-align: center;
}

.city-whatsapp-item h3 {
  margin-bottom: 14px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
}

.city-button {
  width: 100%;
  min-height: 54px;
  padding-inline: 18px;
  font-size: 10px;
}

@media (max-width: 700px) {
  .video-placeholder {
    width: 100%;
    max-width: 576px;
    aspect-ratio: 9 / 16;
  }

  .city-whatsapp-grid {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .city-whatsapp-item {
    width: min(100%, 340px);
    max-width: 340px;
  }
}
