/* ============================================================
   style.css | Complete Redesigned Styles
   Clínica Gustavo Martins | Redesign 2026
   Alternating light/dark sections, Montserrat throughout
   ============================================================ */

/* ===================== HEADER ===================== */ 
.header {
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(245, 242, 236, 0.85);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: transform 0.35s var(--ease-out), background 0.3s ease;
}

.header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 36px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-desktop a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  transition: color var(--transition-interactive);
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}

.nav-desktop a:hover {
  color: var(--text);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-shrink: 0;
}

.header-cta {
  flex-shrink: 0;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  transition: background var(--transition-interactive),
              color var(--transition-interactive),
              transform var(--transition-interactive),
              box-shadow var(--transition-interactive);
  cursor: pointer;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-gold {
  background: var(--accent);
  color: #fff;
}

.btn-gold:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ===================== HAMBURGER ===================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ===================== MOBILE NAV ===================== */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition-interactive);
}

.mobile-nav a:hover {
  color: var(--accent);
}

.mobile-nav .btn {
  margin-top: var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
}

/* ===================== HERO ===================== */
/* ============================================================
   HERO | Split layout (text left, vertical video right)
   ============================================================ */
.hero {
  display: flex;
  align-items: flex-start;
  padding: calc(var(--header-h) + var(--space-12)) var(--space-6) var(--space-16);
  position: relative;
  overflow: hidden;
  background-color: #FFFFFF;
}

.hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-16);
  align-items: center;
}

.hero-text {
  text-align: left;
}

.hero .section-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-6);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 600;
  line-height: 1.1;
  color: #0B1D3A;
  margin-bottom: var(--space-8);
  letter-spacing: -0.02em;
}

.hero h1 .accent-text {
  color: var(--accent);
  font-weight: 700;
}

.hero-text > p {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 0 var(--space-8);
  line-height: 1.7;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.hero-cta-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

.hero-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

.hero-unit-btn {
  font-size: var(--text-sm) !important;
  padding: 0.6rem 1.1rem !important;
  gap: var(--space-2) !important;
  white-space: nowrap;
}

/* Vertical video | 9:16 */
.hero-video {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-video-frame {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(11, 29, 58, 0.22),
    0 8px 24px rgba(11, 29, 58, 0.12),
    0 0 0 1px rgba(201, 168, 76, 0.18);
  position: relative;
}

.hero-video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* Hero load animation */
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-text {
  animation: heroFadeIn 1s var(--ease-out) 0.2s both;
}

.hero-video {
  animation: heroFadeIn 1s var(--ease-out) 0.6s both;
}

/* ===================== SECTION SHARED ===================== */
.section-padding {
  padding: var(--space-32) 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
  font-weight: 300;
}

.gold-line {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: var(--space-8);
}

/* ===================== SOBRE (ABOUT) ===================== */
.sobre {
  overflow: hidden;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.sobre-photo {
  position: relative;
}

.sobre-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 20%;
}

.sobre-content {
  padding-left: var(--space-8);
}

.sobre-bio {
  font-size: var(--text-lg);
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: var(--space-10);
  font-weight: 300;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.credential-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 400;
}

.credential-badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
}

/* ===================== PROCEDIMENTOS ===================== */
#procedimentos {
  text-align: center;
}

#procedimentos .section-label,
#procedimentos .section-title {
  text-align: center;
}

#procedimentos .gold-line {
  margin-inline: auto;
  margin-bottom: var(--space-12);
}

.proc-scroll {
  display: flex;
  gap: var(--space-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-4);
  scrollbar-width: thin;
  scrollbar-color: var(--text-faint) transparent;
  margin: 0 calc(-1 * var(--space-6));
  padding-inline: var(--space-6);
}

.proc-scroll::-webkit-scrollbar {
  height: 4px;
}

.proc-scroll::-webkit-scrollbar-thumb {
  background: var(--text-faint);
  border-radius: 2px;
}

.proc-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: default;
  aspect-ratio: 3/4;
  background: var(--bg-surface);
}

.proc-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.proc-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-8) var(--space-6) var(--space-6);
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  color: #fff;
}

.proc-card-body h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-2);
}

.proc-card-body p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  font-weight: 300;
}

/* ===================== CIRURGIAS ESTÉTICAS ===================== */
.cirurgias-block {
  margin-top: var(--space-16);
  padding-top: var(--space-12);
  border-top: 1px solid var(--divider);
}

.cirurgias-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  color: var(--primary);
  text-align: center;
  margin: var(--space-2) 0 var(--space-4);
  letter-spacing: -0.01em;
}

.cirurgias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.cirurgia-card {
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: 6px;
  padding: var(--space-6) var(--space-5);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cirurgia-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(11, 29, 58, 0.08);
  border-color: var(--accent);
}

.cirurgia-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.cirurgia-card h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.cirurgia-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.cirurgia-link {
  font-size: var(--text-sm);
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.cirurgia-link:hover {
  border-bottom-color: var(--accent);
}

@media (max-width: 900px) {
  .cirurgias-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cirurgias-grid {
    grid-template-columns: 1fr;
  }
  .cirurgias-title {
    font-size: var(--text-2xl);
  }
}

/* ===================== NATURALUP ===================== */
/* Section CTA block | shared across all sections */
.section-cta {
  text-align: center;
  margin-top: var(--space-12);
  padding-top: var(--space-10);
  border-top: 1px solid var(--divider);
}

/* ============================================================
   QUEIXAS / CONCERNS SECTION
   ============================================================ */

.concerns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-16);
}

.concern-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}

.concern-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.concern-icon {
  color: var(--accent);
  margin-bottom: var(--space-4);
}

.concern-title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.concern-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

/* Bridge */
.concerns-bridge {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.concerns-bridge-text {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-8);
}

.concerns-bridge-text strong {
  color: var(--accent);
  font-weight: 600;
}

.nu-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

.nu-pillar-tag {
  padding: var(--space-2) var(--space-5);
  border: 1px solid var(--accent);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.naturalup {
  text-align: center;
}

.naturalup-header {
  max-width: 700px;
  margin: 0 auto var(--space-16);
}

.naturalup-header .gold-line {
  margin-inline: auto;
}

.naturalup-logo-mark {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.nu-up {
  color: var(--accent);
}

.nu-reg {
  font-size: 0.4em;
  vertical-align: super;
  color: var(--text-muted);
}

/* Pillars | horizontal timeline */
.pillars-timeline {
  display: flex;
  gap: 0;
  justify-content: center;
  position: relative;
  margin-bottom: var(--space-16);
}

.pillar-step {
  flex: 1;
  max-width: 220px;
  text-align: center;
  position: relative;
  padding-top: var(--space-12);
}

/* Connector line */
.pillar-step::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.pillar-step:first-child::before {
  left: 50%;
}

.pillar-step:last-child::before {
  right: 50%;
}

.pillar-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--bg);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.pillar-step h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--text);
}

.pillar-step p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* Quote */
.naturalup-quote {
  max-width: 700px;
  margin: 0 auto var(--space-10);
}

.naturalup-quote blockquote {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 500;
  font-size: var(--text-3xl);
  color: var(--text);
  line-height: 1.4;
  position: relative;
  padding: 0 var(--space-8);
}

.naturalup-quote blockquote::before {
  content: '\201C';
  position: absolute;
  left: -0.15em;
  top: -0.2em;
  font-size: 3em;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
}

.naturalup-cta {
  margin-top: var(--space-8);
  text-align: center;
}

/* Vídeo NaturalUp */
.naturalup-video {
  max-width: 920px;
  margin: var(--space-12) auto;
  text-align: center;
}

.naturalup-video-intro {
  margin-bottom: var(--space-6);
}

.naturalup-video-intro h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-2xl);
  color: var(--accent);
  margin: var(--space-3) 0 var(--space-3);
  letter-spacing: -0.01em;
}

.naturalup-video-intro p {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--text-base);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto;
}

/* Vídeo vertical | 9:16 (mesmo padrão do hero) */
.video-embed {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 8px 24px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(201, 168, 76, 0.22);
  position: relative;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* ===================== RESULTADOS ===================== */
#resultados {
  text-align: center;
}

/* Result Filter Tabs */
.result-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-10);
}

.result-filter-btn {
  padding: var(--space-2) var(--space-5);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-interactive);
  letter-spacing: 0.01em;
}

.result-filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.result-filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Results Grid */
.results-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-16);
}

.result-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
  aspect-ratio: 1 / 1;
}

.result-img-wrap.hidden {
  display: none;
}

.result-img-wrap:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.result-img-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  image-rendering: auto;
}

/* Counters */
.counters {
  display: flex;
  justify-content: center;
  gap: var(--space-20);
  padding-top: var(--space-12);
  border-top: 1px solid var(--divider);
}

.counter {
  text-align: center;
}

.counter-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.counter-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--space-1);
  font-weight: 400;
}

/* ===================== ODONTOLOGIA ===================== */
.odonto {
  background: var(--bg-surface);
}

.odonto-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-12);
}

.odonto-header .gold-line {
  margin-inline: auto;
}

.odonto-team {
  display: flex;
  justify-content: center;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.odonto-member {
  text-align: center;
  max-width: 280px;
}

.odonto-member-photo {
  width: 180px;
  height: 180px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0 auto var(--space-4);
}

.odonto-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.odonto-member h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.odonto-role {
  font-size: var(--text-sm);
  color: var(--accent);
  margin-bottom: var(--space-1);
  font-weight: 500;
}

.odonto-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 300;
}

/* Vídeo | Especialidades | Vídeo */
.odonto-action-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: var(--space-8);
  align-items: center;
  max-width: 1040px;
  margin: 0 auto var(--space-12);
}

.odonto-action-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.odonto-action-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* Card de vídeo individual */
.odonto-video-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.odonto-video-wrap {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--text);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.odonto-video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.odonto-video-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

/* Specialties */
.odonto-specialties {
}

.odonto-specialties-title {
  font-size: var(--text-2xl);
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--space-6);
}

.odonto-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.odonto-spec-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding: var(--space-3) var(--space-4);
  background: var(--bg);
  border-radius: var(--radius-md);
  font-weight: 400;
}

.odonto-spec-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
}

/* Botafogo partnership */
.odonto-botafogo {
  max-width: 600px;
  margin: 0 auto var(--space-12);
}

.odonto-botafogo-inner {
  padding: var(--space-8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  background: var(--bg);
}

.odonto-botafogo-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-4);
  margin-bottom: var(--space-4);
}

.odonto-botafogo h3 {
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.odonto-botafogo p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

.odonto-botafogo-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-3);
  color: var(--text-faint);
  font-size: var(--text-sm);
}

.odonto-botafogo-address svg {
  flex-shrink: 0;
  color: var(--accent);
}

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

/* ===================== DEPOIMENTOS ===================== */
.depoimentos {
  text-align: center;
}

.depoimentos-header {
  max-width: 700px;
  margin: 0 auto var(--space-10);
}

.depoimentos-header .gold-line {
  margin-inline: auto;
}

/* Rating display */
.rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--accent);
}

.rating-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 400;
}

/* Featured testimonial carousel */
.testimonial-featured {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  min-height: 320px;
}

.testimonial-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadeInTestimonial 0.5s var(--ease-out);
}

.testimonial-slide.active {
  display: flex;
}

@keyframes fadeInTestimonial {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.testimonial-big-quote {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: var(--text-3xl);
  color: var(--text);
  line-height: 1.5;
  margin-bottom: var(--space-8);
  position: relative;
  max-width: 640px;
}

.testimonial-big-quote::before {
  content: '\201C';
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.testimonial-slide-stars {
  display: flex;
  gap: 2px;
  color: var(--accent);
  justify-content: center;
  margin-bottom: var(--space-6);
}

.testimonial-slide-footer {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-slide-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.testimonial-slide-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-slide-author {
  font-weight: 500;
  font-size: var(--text-base);
  color: var(--text);
}

.local-guide-badge {
  font-size: var(--text-xs);
  color: var(--accent);
  font-weight: 600;
  margin-left: var(--space-2);
}

/* Carousel nav */
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.testimonial-dots {
  display: flex;
  gap: var(--space-2);
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.25);
  transition: background var(--transition-interactive), transform var(--transition-interactive), width var(--transition-interactive);
  cursor: pointer;
  border: none;
  padding: 0;
}

.testimonial-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.testimonial-dot.active {
  background: var(--accent);
  transform: scale(1.15);
  width: 28px;
  border-radius: 5px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: background var(--transition-interactive), color var(--transition-interactive), border-color var(--transition-interactive);
}

.carousel-btn:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

/* ===================== FAQ ===================== */
#faq .section-label,
#faq .section-title {
  text-align: center;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-6) 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-interactive);
  gap: var(--space-4);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s var(--ease-out);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: var(--space-6);
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ===================== CLÍNICA / CONTATO ===================== */
.clinica-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-12);
}

.clinica-intro .gold-line {
  margin-inline: auto;
}

.clinica-gallery {
  max-width: 960px;
  margin: 0 auto var(--space-12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.clinica-gallery img {
  width: 100%;
  height: auto;
}

/* Locations */
.locations-label {
  text-align: center;
  margin-bottom: var(--space-8);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.location-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-surface);
}

.map-embed {
  width: 100%;
  height: 200px;
}

.location-info {
  padding: var(--space-5) var(--space-6);
}

.location-info h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.location-info p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 300;
}

/* ===================== FOOTER ===================== */
.footer {
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid var(--divider);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--space-4);
  line-height: 1.6;
  font-weight: 300;
}

.footer-logo-img {
  height: 32px;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-4);
  letter-spacing: 0.04em;
}

.footer-links li {
  margin-bottom: var(--space-2);
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color var(--transition-interactive);
  font-weight: 400;
}

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

.footer-contact a {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-2);
  transition: color var(--transition-interactive);
  font-weight: 400;
}

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

.footer-contact .btn-gold {
  color: #fff;
}

.footer-contact .btn-gold:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-8);
  border-top: 1px solid var(--divider);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: var(--text-faint);
  font-weight: 400;
}

/* ===================== WHATSAPP FLOAT ===================== */
/* Floating Schedule Button */
.fab-schedule {
  position: fixed;
  bottom: var(--space-6);
  left: var(--space-6);
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.fab-schedule.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fab-schedule:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.55);
  color: #fff;
}

.fab-schedule svg {
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .fab-schedule span {
    display: none;
  }
  .fab-schedule {
    width: 52px;
    height: 52px;
    justify-content: center;
    padding: 0;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 900;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ===================== INSTAGRAM ===================== */
.instagram-float {
  position: fixed;
  bottom: calc(var(--space-6) + 72px);
  right: var(--space-6);
  z-index: 900;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(220, 39, 67, 0.35);
  color: #fff;
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}

.instagram-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(220, 39, 67, 0.45);
}

.instagram-float svg {
  width: 28px;
  height: 28px;
}

.header-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}

.header-ig:hover {
  color: #fff;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

@media (max-width: 900px) {
  .header-ig { display: none; }
}

.mobile-ig-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-muted);
  font-size: var(--text-sm);
  text-decoration: none;
  margin-top: var(--space-3);
  padding: var(--space-2) var(--space-3);
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  color: #fff !important;
  border: none !important;
}

.btn-instagram:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.naturalup-ig-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
  color: rgba(255,255,255,0.75);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  padding: var(--space-2) var(--space-4);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-full);
  transition: all 0.25s;
}

.naturalup-ig-link:hover {
  color: #fff;
  border-color: var(--accent);
  background: rgba(201, 168, 76, 0.08);
}

/* ===================== LIGHTBOX ===================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
  cursor: pointer;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  transition: background var(--transition-interactive);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

/* ===================== SCROLL REVEALS ===================== */
.fade-in {
  opacity: 1;
}

@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: revealFade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }
}

@keyframes revealFade {
  to { opacity: 1; }
}

/* JS-based reveal fallback */
.reveal {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
}

/* ===================== RESPONSIVE ===================== */

/* Tablet */
@media (max-width: 1024px) {
  /* Hero | stack on tablet */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text {
    text-align: center;
  }
  .hero-text > p {
    margin-inline: auto;
  }
  .hero-video {
    max-width: 320px;
    margin-inline: auto;
  }

  .concerns-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-desktop {
    display: none;
  }

  .header-cta-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .sobre-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .sobre-content {
    padding-left: 0;
  }

  .sobre-photo img {
    aspect-ratio: 3/4;
    object-position: center 15%;
  }

  .proc-card {
    flex: 0 0 280px;
  }

  .pillars-timeline {
    flex-wrap: wrap;
    gap: var(--space-8);
  }

  .pillar-step {
    flex: 0 0 calc(50% - var(--space-4));
    max-width: none;
  }

  .pillar-step::before {
    display: none;
  }

  .pillar-number {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto var(--space-3);
  }

  .pillar-step {
    padding-top: 0;
  }

  .results-masonry {
    grid-template-columns: repeat(3, 1fr);
  }

  .odonto-action-row {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .odonto-action-row {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .odonto-team {
    gap: var(--space-8);
  }

  .locations-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --header-h: 60px;
  }

  /* Evita overflow horizontal: permite que o botao do Google quebre/encolha em telas estreitas */
  .google-reviews-cta .btn {
    white-space: normal;
    max-width: 100%;
    text-align: center;
  }

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

  .section-padding {
    padding: var(--space-20) 0;
  }

  .container {
    padding-inline: var(--space-5);
  }

  .hero {
    padding: calc(var(--header-h) + var(--space-12)) var(--space-5) var(--space-12);
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }

  .hero-text > p {
    font-size: var(--text-base);
  }

  .hero-video {
    margin-top: var(--space-10);
  }

  .section-title {
    font-size: var(--text-3xl);
  }

  .proc-card {
    flex: 0 0 260px;
    aspect-ratio: 3/4;
  }

  .pillars-timeline {
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
  }

  .pillar-step {
    flex: 0 0 auto;
    width: 100%;
    max-width: 360px;
  }

  .naturalup-quote blockquote {
    font-size: var(--text-2xl);
  }

  .results-masonry {
    grid-template-columns: repeat(2, 1fr);
  }

  .counters {
    gap: var(--space-10);
  }

  .odonto-team {
    flex-direction: column;
    align-items: center;
    gap: var(--space-10);
  }

  .odonto-spec-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-big-quote {
    font-size: var(--text-2xl);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .locations-grid {
    margin-top: var(--space-6);
  }
}

/* ============================================
   LANGUAGE SWITCHER (PT/EN/ES)
   ============================================ */
.lang-switcher {
  position: relative;
  display: inline-block;
}

.lang-switcher.desktop-only {
  margin-right: var(--space-3);
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--color-gold, #c9a84c);
  padding: 8px 14px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
}

.lang-toggle:hover {
  border-color: var(--color-gold, #c9a84c);
  background: rgba(201, 168, 76, 0.08);
}

.lang-toggle svg {
  width: 12px;
  height: 12px;
  transition: transform 0.25s ease;
}

.lang-switcher.open .lang-toggle svg {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #0a1628;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  min-width: 180px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 1000;
}

.lang-switcher.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: #f4f1ea;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.lang-menu a:hover {
  background: rgba(201, 168, 76, 0.1);
  color: var(--color-gold, #c9a84c);
}

.lang-menu a.active {
  background: rgba(201, 168, 76, 0.15);
  color: var(--color-gold, #c9a84c);
}

.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 20px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  color: var(--color-gold, #c9a84c);
  letter-spacing: 0.05em;
}

/* Mobile language switcher inside mobile nav */
.mobile-nav .lang-switcher {
  display: block;
  width: 100%;
  margin: var(--space-4) 0;
}

.mobile-nav .lang-toggle {
  width: 100%;
  justify-content: space-between;
  padding: 12px 16px;
}

.mobile-nav .lang-menu {
  position: relative;
  top: 6px;
  right: auto;
  width: 100%;
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .lang-switcher.desktop-only { display: none; }
}

/* ============================================
   INTERNATIONAL PATIENTS SECTION
   ============================================ */
.international {
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(15, 28, 50, 0.98) 100%);
  position: relative;
  overflow: hidden;
}

.international::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-gold, #c9a84c) 50%, transparent 100%);
  opacity: 0.4;
}

.international-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.international-flags {
  display: inline-flex;
  gap: 10px;
  margin-bottom: var(--space-4);
}

.international-flags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 28px;
  padding: 0 10px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--color-gold, #c9a84c);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.international-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.intl-feature {
  padding: var(--space-6);
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.intl-feature:hover {
  border-color: rgba(201, 168, 76, 0.5);
  background: rgba(201, 168, 76, 0.07);
  transform: translateY(-3px);
}

.intl-feature-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  margin-bottom: var(--space-4);
}

.intl-feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-gold, #c9a84c);
  stroke-width: 1.8;
}

.intl-feature h3 {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-gold, #c9a84c);
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}

.intl-feature p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244, 241, 234, 0.8);
  margin: 0;
}

.international-cta-row {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-10);
}

@media (max-width: 1024px) {
  .international-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .international-grid {
    grid-template-columns: 1fr;
  }
  .international-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
}
