/* Mantém a seção invisível até entrar na tela */
.section-after-fold {
  content-visibility: auto;
  contain-intrinsic-size: 1px 1000px;
}

.support {
  background-color: #fff;
}

.prep-method {
  background-color: #EFF0FD;
}

.support {
  padding: 3rem 2rem;
}

.prep-method {
  padding: 3rem 2rem 0;
}

.prep-method + .prep-method {
  padding: 2rem 2rem 3rem;
}

.container {
  max-width: 1200px;
  margin: auto;
}

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

.t-green {
    background-color: rgba(83, 207, 171, 0.1);
    color: #53CFAB;
}

.r-green {
    background-color: #53CFAB;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin: 1rem 0;
}

.section-title .highlight {
  color: #616EEB;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin: auto;
}

/* Support Services Section */
.support-grid {
  display: grid;
  gap: 1rem;           /* mobile compacto */
  margin-top: 2rem;
}

.support-card {
  background: #EFF0FD;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.25rem;
  will-change: transform, opacity;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 320ms ease, opacity 320ms ease, box-shadow 200ms ease, border-color 200ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.support-card:hover {
  transform: translateY(0); /* leve lift no hover em desktop */
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  border-color: #c7d2fe; /* azul claro */
}
.support-card.visible {      /* aplicada via IntersectionObserver */
  transform: translateY(0);
  opacity: 1;
}

.support-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  background: linear-gradient(to bottom right, #616EEB, #06b6d4); /* azul -> ciano */
  color: #fff;
  box-shadow: 0 6px 18px rgba(97,110,235,.25);
  margin-bottom: 0.75rem;
}

.support-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: #0f172a; /* slate-900 */
}
.support-desc {
  color: #475569; /* slate-600 */
  font-size: .95rem;
  text-align: center;
}

.support-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.support-list li {
  display: flex; align-items: center;
  gap: .5rem;
  font-size: .95rem;
  color: #1f2937; /* gray-800 */
  padding: .25rem 0;
}
.support-list li::before {
  content: "";
  width: .45rem; height: .45rem;
  border-radius: 999px;
  background: #616EEB; /* mantém a identidade da página */
  flex-shrink: 0;
}

/* WHAT IS PCE */
.what {
  background: linear-gradient(to bottom right, #0f172a, #111827);
  color: #e5e7eb;
  padding: 3rem 2rem;
}
.what .section-title { color: #fff; }
.what .section-title .highlight { color: #616EEB; }
.what .section-subtitle { color: #e5e7eb }
.what .section-subtitle .strong { color: #fff; font-weight: 700; }

.what-intro { margin-top: 1.5rem; }
.what-intro-title { font-size: 1.2rem; font-weight: 800; margin: 0 0 .25rem; color: #fff; }
.what-intro-sub { margin: 0; color: #cbd5e1; font-size: .95rem; }

.country-grid {
  display: grid;
  gap: .75rem;
  margin-top: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.country-btn {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: .2rem;
  padding: .9rem .9rem;
  border-radius: 14px;
  border: 2px solid rgba(97,110,235,0.25);
  background: rgba(255,255,255,0.03);
  color: #e5e7eb;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, opacity .3s ease;
  transform: translateY(6px);
  opacity: 0;
}
.country-btn .flag { font-size: 1.4rem; line-height: 1; }
.country-btn .name { font-weight: 700; font-size: .95rem; }
.country-btn .count { font-size: .75rem; color: #93a3b5; }

.country-btn.visible { transform: translateY(0); opacity: 1; }
.country-btn:hover { transform: translateY(-1px); border-color: rgba(97,110,235,0.5); }
.country-btn.is-active {
  border-color: #616EEB;
  background: linear-gradient(to bottom right, rgba(97,110,235,0.15), rgba(6,182,212,0.10));
}

.country-info {
  margin-top: 1rem;
  display: grid;
  gap: .75rem;
  border: 1px solid rgba(97,110,235,0.35);
  background: linear-gradient(to right, rgba(97,110,235,0.12), rgba(14,30,59,0.25));
  border-radius: 16px;
  padding: 1rem;
  transform: translateY(8px);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease, box-shadow .25s ease;
}
.country-info.visible { transform: translateY(0); opacity: 1; }
.country-info:hover { box-shadow: 0 10px 24px rgba(0,0,0,.25); }

.country-info-flag {
  font-size: 2.25rem;
  display: flex; align-items: center; justify-content: center;
}
.country-info-meta { text-align: center; }
.country-info-name { margin: 0 0 .25rem; font-weight: 800; color: #fff; }
.country-info-sub { margin: 0 0 .25rem; color: #cbd5e1; font-size: .95rem; }
.country-info-count { margin: 0; color: #93a3b5; font-size: .9rem; }

/* Deadlines 2026 */
.deadlines {
  background: linear-gradient(to bottom right, #0f172a, #111827); /* tema escuro próprio */
  padding: 0 2rem 3rem;
  color: #e5e7eb;
}
.deadlines .section-title { color: #fff; }
.deadlines .section-title .highlight { color: #616EEB; }
.deadlines .section-subtitle { color: #cbd5e1; }

.deadline-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.deadline-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(97,110,235,0.25);
  border-radius: 16px;
  padding: 1.25rem;
  transform: translateY(8px);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease, border-color .25s ease, box-shadow .25s ease;
}
.deadline-card.visible { transform: translateY(0); opacity: 1; }
.deadline-card:hover { border-color: rgba(97,110,235,0.45); box-shadow: 0 10px 24px rgba(0,0,0,.25); }

.deadline-card.is-rec {
  background: linear-gradient(to bottom right, rgba(97,110,235,0.18), rgba(6,182,212,0.12));
  border-width: 2px;
}

.deadline-badge {
  width: 130px;
  background: #616EEB; color: #fff;
  padding: .25rem .5rem; border-radius: 999px; font-size: .75rem; font-weight: 700;
}

.deadline-title { margin: .75rem 0 .25rem; font-weight: 800; color: #fff; }
.deadline-desc { margin: 0 0 .75rem; color: #cbd5e1; font-size: .95rem; }

.deadline-list { list-style: none; padding: 0; margin: 0 0 1rem; }
.deadline-list li {
  display: flex; align-items: center; gap: .5rem;
  padding: .4rem 0; color: #e5e7eb; font-size: .95rem;
}
.deadline-list li span { width: 1.2rem; text-align: center; opacity: .9; }

.deadline-cta {
  width: fit-content;
  padding: .7rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  background: #616EEB;
  color: #fff;
  transition: filter .2s ease, transform .2s ease;
}
.deadline-cta:hover { filter: brightness(1.05); transform: translateY(-1px); }
.deadline-cta.is-ghost {
  background: #374151; color: #e5e7eb;
}
.deadline-cta.is-ghost:hover { filter: brightness(1.1); }


/* Method Section */

.prep-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.method-list {
  display: grid;
  gap: 1.5rem;
}

.method-card {
  display: flex;
  gap: 1rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 1rem;
  padding: 1rem;
  transition: transform 0.3s ease;
}
.method-card:hover {
  transform: translateY(-3px);
}
.method-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 0.8rem;
  background: linear-gradient(to bottom right, #0066ff, #00bcd4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
}
.method-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.1rem;
}
.method-card p {
  font-size: 0.9rem;
  color: #555;
}
.method-card ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}
.method-card li {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
}
.method-card li::before {
  content: "•";
  color: #0066ff;
  margin-right: 0.5rem;
}

.stats-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #ddd;
}
.stats-card h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}
.stat {
  margin-bottom: 1rem;
}
.stat-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}
.stat-value {
  font-weight: 700;
}
.progress {
  height: 0.5rem;
  background: #eee;
  border-radius: 0.25rem;
  overflow: hidden;
}
.progress div {
  height: 100%;
  background: linear-gradient(to right, #0066ff, #00bcd4);
  width: 0;
  transition: width 1s ease-out;
}
.stat-footer {
  margin-top: 1.5rem;
  text-align: center;
  font-weight: 600;
  color: #0066ff;
}

/* Method: Tabs (mesma paleta de .prep-method) */
.method-tabs {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  overflow: visible;
  padding-bottom: 0;
  justify-content: center;
}

.tab {
  flex: 0 1 auto;
  white-space: nowrap;
  padding: .6rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(97,110,235,.3);
  background: #fff;
  color: #0f172a;
  font-weight: 400;
}
.tab:hover { background-color: rgba(97, 110, 235,0.15); border-color: rgba(97,110,235,.6); }
.tab.is-active {
  background-color: #616EEB;
  color: #fff;
  font-weight: 700;
}

/* Panels (geral) */
.method-panels { margin-top: 1rem; }
.panel[hidden] { display: none !important; }

/* Animação de entrada (observer) */
.panel {
  padding-top: 1rem;
  transform: translateY(8px);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}
.panel.is-active { transform: translateY(0); opacity: 1; }

/* Grid interno (para panels com texto + mídia) */
.panel .panel-grid {
  display: grid;
  gap: 1rem;
  align-items: center;
  max-width: 1080px;
  margin-inline: auto;
}

/* Tipos de conteúdo textual */
.panel-text { text-align: center; }
.panel-title { margin: 0 0 .4rem; font-size: 1.2rem; font-weight: 800; color: #0f172a; }
.panel-list { text-align: left; margin: .5rem 0 0; padding: 0; list-style: none; }
.panel-list li {
  display: flex; align-items: center; gap: .5rem;
  padding: .2rem 0; color: #1f2937; font-size: .95rem;
}
.panel-list li::before {
  content: ""; width: .45rem; height: .45rem; border-radius: 999px; background: #616EEB; flex-shrink: 0;
}

/* Mídia: thumb/iframe responsivos (16:9) */
.panel-media img,
.panel-media iframe {
  width: 90%;
  height: auto;
  display: block;
  border-radius: 14px;
  max-width: 768px;
}

/* Thumb de vídeo (click-to-load) */
.video-thumb {
  margin-inline: auto;
  position: relative;
  display: block;
  width: 90%;
  max-width: 768px;
  aspect-ratio: 16 / 9;        /* garante proporção de vídeo */
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* Botão de play central */
.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 999px;
  background: #616EEB;
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(97,110,235,.35);
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}
.play-btn:hover { transform: scale(1.04); filter: brightness(1.05); }
.play-btn:focus-visible { outline: 2px solid #a5b4fc; outline-offset: 2px; }

/* Variante: painel só mídia (Plataforma) */
.panel--media-only { padding: 0; }

/* Success Stories */
.stories {
  background: linear-gradient(to bottom right, #0f172a, #111827);
  color: #e5e7eb;
  padding: 3rem 2rem;
}
.stories .section-title { color: #fff; }
.stories .section-title .highlight { color: #616EEB; }
.stories .section-subtitle { color: #e5e7eb }

.story-feature {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
  background: linear-gradient(to right, rgba(97,110,235,0.12), rgba(14,30,59,0.25));
  border: 1px solid rgba(97,110,235,0.35);
  border-radius: 16px;
  padding: 1rem;
  transform: translateY(10px);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease, box-shadow .25s ease;
}
.story-feature.visible { transform: translateY(0); opacity: 1; }
.story-feature:hover { box-shadow: 0 10px 28px rgba(0,0,0,.25); }

.story-feature-left .quote-mark {
  font-size: 2.4rem; line-height: 1; color: rgba(97,110,235,0.5); margin-bottom: .4rem;
}
.story-quote { margin: 0 0 .75rem; color: #cbd5e1; font-size: 1.05rem; }

.author { display: flex; align-items: center; gap: .7rem; }
.avatar { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; background: #0b1325; flex-shrink: 0; display: grid; place-items: center; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-meta { line-height: 1.25; }
.author-name { font-weight: 800; color: #fff; }
.author-study { font-size: .85rem; color: #93a3b5; }
.author-country { display: flex; align-items: center; gap: .35rem; font-size: .85rem; color: #a5b4fc; }
.author-country .flag { font-size: .85rem; line-height: 1; }

.story-feature-right .badge-box {
  display: grid; gap: .5rem; align-content: start;
}
.badge-line { display: flex; align-items: baseline; gap: .5rem; }
.badge-line strong { font-size: 1.6rem; color: #a5b4fc; }
.badge-line span { font-size: .9rem; color: #cbd5e1; }
.pill-badge {
  display: inline-block; padding: .35rem .6rem; border-radius: 999px;
  background: rgba(97,110,235,0.15); color: #a5b4fc; font-weight: 700; font-size: .8rem;
}

.story-grid {
  display: grid; gap: 1rem; margin-top: 1.25rem;
}
.story-card {
  border: 2px solid rgba(97,110,235,0.25);
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 1rem;
  transform: translateY(8px);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease, border-color .25s ease, box-shadow .25s ease;
}
.story-card.visible { transform: translateY(0); opacity: 1; }
.story-card:hover { border-color: rgba(97,110,235,0.45); box-shadow: 0 8px 22px rgba(0,0,0,.22); }

.card-head { display: grid; grid-template-columns: auto 1fr auto; gap: .75rem; align-items: center; margin-bottom: .5rem; }
.card-head .avatar { width: 56px; height: 56px; }
.head-meta .name { font-weight: 800; color: #fff; }
.head-meta .study { font-size: .85rem; color: #93a3b5; }
.country-row { display: inline-flex; align-items: center; gap: .35rem; font-size: .85rem; color: #a5b4fc; }
.country-row .flag { font-size: 1rem; line-height: 1; }
.score { font-weight: 800; color: #a5b4fc; }

.card-quote { margin: .5rem 0 .6rem; color: #d1d5db; font-size: .95rem; }
.chip {
  display: inline-block; padding: .35rem .6rem; border-radius: 999px;
  background: rgba(97,110,235,0.15); color: #a5b4fc; font-weight: 700; font-size: .8rem;
}

/* FAQ (tema da seção WHAT) */
.faq {
  background: linear-gradient(to bottom right, #0f172a, #111827);
  color: #e5e7eb;
  padding: 0 2rem 3rem;
}
.faq .section-title { color: #fff; }
.faq .section-title .highlight { color: #616EEB; }
.faq .section-subtitle { color: #cbd5e1; }

.faq-list {
  margin-top: 1.5rem;
  display: grid;
  gap: .8rem;
}

/* details/summary nativos → leves e acessíveis */
.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(97,110,235,0.25);
  border-radius: 14px;
  padding: .5rem .75rem;
  transform: translateY(6px);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease, border-color .25s ease, box-shadow .25s ease;
}
.faq-item.visible { transform: translateY(0); opacity: 1; }
.faq-item[open] { border-color: rgba(97,110,235,0.5); box-shadow: 0 8px 22px rgba(0,0,0,.22); }

.faq-summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: .75rem;
  padding: .6rem .25rem;
}
.faq-summary::-webkit-details-marker { display: none; }

.faq-q {
  font-weight: 800; color: #fff; font-size: 1rem;
}
.faq-icon {
  width: 1.25rem; height: 1.25rem;
  border-radius: 50%;
  border: 2px solid #616EEB;
  position: relative;
  transition: transform .2s ease;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 10px; height: 2px; background: #616EEB; transform: translate(-50%,-50%);
}
.faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item[open] .faq-icon { transform: rotate(45deg); } /* vira “x” */

.faq-content {
  padding: 0 .25rem .75rem;
  color: #cbd5e1;
  font-size: .95rem;
}
.faq-content p { margin: .4rem 0; }
.faq-content ul { padding-left: 1rem; margin: .4rem 0; }
.faq-content li { margin: .25rem 0; }

/* FAQ - Card final (CTA) */
.faq-cta {
  background: #ffffff;
  color: #0f172a; /* texto escuro para contraste */
  border: 1px solid rgba(97,110,235,0.25); /* combina com a seção */
  border-radius: 16px;
  padding: 1rem;
  margin-top: .5rem;
  text-align: center;

  /* animação consistente com os itens do FAQ */
  transform: translateY(6px);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease, box-shadow .25s ease, border-color .25s ease;
}
.faq-cta.visible { transform: translateY(0); opacity: 1; }
.faq-cta:hover { box-shadow: 0 8px 22px rgba(0,0,0,.14); border-color: rgba(97,110,235,0.45); }

.faq-cta-title {
  margin: 0 0 .25rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0b1220;
}
.faq-cta-sub {
  margin: 0 0 .9rem;
  color: #334155;
  font-size: .95rem;
}

.faq-cta-btn {
  width: 80%;
  padding: .8rem 1rem;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  background: #616EEB;      /* destaca no tema da seção */
  color: #fff;
  cursor: pointer;
  transition: filter .2s ease, transform .2s ease;
}
.faq-cta-btn:hover { filter: brightness(1.05); transform: translateY(-1px); }
.faq-cta-btn:focus { outline: 2px solid #a5b4fc; outline-offset: 2px; }

/* Footer (mantém estilo claro como "Apoyo integral") */
.footer {
  background-color: #EFF0FD;
  color: #0f172a;
  padding: 2.5rem 2rem 10rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.footer-brand img {
  display: block;
  width: 160px; /* respeita width/height do HTML */
  height: auto;
}

/* Bloco Legal */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .5rem;
}
.footer-links a {
  color: #334155;
  text-decoration: none;
  font-weight: normal;
  font-size: 11px;
}
.footer-links a:hover {
  color: #616EEB;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-links a:focus {
  outline: 2px solid #a5b4fc;
  outline-offset: 2px;
  border-radius: 6px;
}

/* Barra inferior */
.footer-bottom {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}
.footer-copy {
  margin: 0;
  color: #475569;
  font-size: .9rem;
}

/* Sentinela minimalista (precisa ter altura) */
#fold-sentinel { display:block; height:1px; width:100%; }

/* Fixed CTA */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transform: translateY(110%);    /* fora da tela */
  opacity: 0;
  pointer-events: none;            /* não intercepta cliques quando oculto */
  transition: transform 1s cubic-bezier(.2,.8,.2,1), opacity .2s linear;
}

/* Estado visível: faz o slide-in */
.fixed-cta.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.fixed-cta-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-style: solid;
  border-width: 2px 2px 0 2px;
  border-color: rgba(97,110,235,1);
  border-radius: 16px 16px 0 0;
  background-color: rgba(16, 19, 38, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin: 0 auto;
  width: 95%;
  padding: 1rem 1rem 2.5rem;
}


.fixed-cta-title {
  text-align: center;
  color: #fff;
  font-size: 11px;
}

.fixed-cta button {
  width: 100%;
  display: flex;
  gap: .5rem;
  align-items: center;
  justify-content: center;
  height: 60px;
  margin-inline: auto;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  background: #616EEB;
  color: #fff;
  transition: filter .2s ease, transform .2s ease;
}
.fixed-cta button:hover { filter: brightness(1.05); transform: translateY(-1px); }

.fixed-cta button img {
  width: 18px;
  height: auto;
}

/* Desktop */
@media (min-width: 768px) {

    /* Support Services Section */
  .support-grid {
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .support-card { padding: 1.5rem; }

    .what { padding: 3rem 2rem 1rem; }
  .country-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }

  /* Deadlines 2026 */
  .deadlines { padding: 3rem 2rem 5rem; }
  .deadline-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }

  /* Method Section */
  .prep-grid {
    flex-direction: row;
    gap: 3rem;
  }
  .method-list {
    flex: 2;
    grid-template-columns: 1fr 1fr;
  }
  .stats-card {
    flex: 1;
    align-self: flex-start;
  }

    .panel .panel-grid {
    grid-template-columns: 1.1fr 1fr; /* texto | mídia */
    gap: 1.25rem;
    align-items: start;
  }

  .panel-text { padding-top: 1rem; text-align: left; }

  .panel--media-only .video-thumb,
  .panel--media-only iframe {
    max-width: 768px;
    width: 100%;          /* mantém responsivo até o cap */
    margin-left: auto;    /* centraliza */
    margin-right: auto;   /* centraliza */
    display: block;
  }

  /* Success Stories */
  .stories { padding: 3rem 2rem; }
  .story-feature { max-width: 1080px; grid-template-columns: 1.6fr 1fr; padding: 1.25rem 2rem; display: flex; justify-content: space-between; margin: 2rem auto 1rem; }
  .story-feature-left { width: 70%; margin: 0; }
  .story-feature-right { width: 30%; margin: 0; padding: 2rem; border-radius: 14px;
  border: 2px solid rgba(97,110,235,0.25);}
  .story-grid {max-width: 1080px; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; margin-inline: auto;}

    /* FAQ */
    .faq { padding: 3rem 2rem; }
    .faq-list { max-width: 1080px; margin-inline: auto; }
    .faq-cta { padding: 1.25rem; }

    /* Footer */
    .footer { margin-inline: auto; padding: 3rem 2rem 8rem; }
    .footer .container { max-width: 1080px; }
    .footer-grid {
      grid-template-columns: auto 1fr;   /* logo à esquerda, links à direita */
      justify-content: space-between;
      align-items: center;
    }
    .footer-col { justify-self: end; }

    /* Fixed CTA */

    .fixed-cta-box {
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      width: 95%;
      max-width: 1080px;
      padding: 1.5rem 2rem 1.5rem;
    }


    .fixed-cta-title {
      font-size: 20px;
    }

    .fixed-cta button {
      width: fit-content;
      display: flex;
      gap: .5rem;
      align-items: center;
      justify-content: center;
      padding-inline: 3rem;
      margin: 0;
      }
    }

@media (min-width: 1024px) {
  .country-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  .fixed-cta { transition: none; }
}