/* =========================================================
   Phoenix Vistos — Site completo (desktop-first)
   Mantém paleta e tipografia do link-in-bio.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #1B2744;
  --navy-deep:   #141D34;
  --beige:       #F2E8D9;
  --beige-2:     #E8DECE;
  --beige-card:  #FAF5EE;
  --red-dark:    #7B1A2A;
  --red-dark-h:  #6A1523;
  --red-accent:  #BE3A2A;
  --gold:        #C9922A;
  --gold-soft:   rgba(201,146,42,0.12);
  --border:      #DDD5C8;
  --border-soft: #EAE2D4;
  --text-muted:  #8A8A8A;
  --text-body:   #4A4758;
  --text-dark:   #2A2D3A;
  --whatsapp:    #25D366;
  --whatsapp-dk: #1FA855;
  --white:       #FFFFFF;

  --container:   1200px;
  --container-narrow: 880px;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 10px rgba(27,39,68,0.06);
  --shadow:    0 8px 32px rgba(27,39,68,0.10);
  --shadow-lg: 0 20px 60px rgba(27,39,68,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--beige);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── LAYOUT ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--container-narrow); }

.section        { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--wide  { padding: 112px 0; }

@media (min-width: 768px) {
  .container { padding: 0 40px; }
  .section        { padding: 96px 0; }
  .section--tight { padding: 64px 0; }
  .section--wide  { padding: 140px 0; }
}

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(36px, 5vw, 60px); }
h2 { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.2; }
h3 { font-size: clamp(20px, 2vw, 26px); line-height: 1.3; }
h4 { font-size: 18px; line-height: 1.4; }

p { font-size: 16px; color: var(--text-body); }
@media (min-width: 768px) { p { font-size: 17px; } }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red-accent);
  margin-bottom: 16px;
}
.eyebrow--light { color: var(--gold); }

.lead {
  font-size: 19px;
  color: var(--text-body);
  line-height: 1.55;
  max-width: 640px;
}
@media (min-width: 768px) { .lead { font-size: 21px; } }

.text-center { text-align: center; }
.mx-auto     { margin-left: auto; margin-right: auto; }

/* ── HEADER / NAV ────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(242,232,217,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--navy);
  letter-spacing: 0.02em;
}
.nav-brand img { width: 36px; height: auto; }
.nav-links {
  display: none;
  align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-dark);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--red-accent); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

@media (min-width: 968px) {
  .nav-links { display: flex; }
}

/* ── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red-dark); color: var(--white);
  border-color: var(--red-dark);
}
.btn-primary:hover {
  background: var(--red-dark-h); border-color: var(--red-dark-h);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(123,26,42,0.25);
}
.btn-secondary {
  background: transparent; color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-ghost {
  background: var(--beige-card); color: var(--navy);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--white); border-color: var(--navy); }
.btn-whatsapp {
  background: var(--whatsapp); color: var(--white);
  border-color: var(--whatsapp);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dk); border-color: var(--whatsapp-dk);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37,211,102,0.30);
}
.btn-lg { padding: 18px 34px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-block { display: flex; width: 100%; }

.wa-icon {
  width: 18px; height: 18px; flex-shrink: 0;
  fill: currentColor;
}

/* ── HERO ───────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 72px;
  background: linear-gradient(180deg, var(--beige) 0%, var(--beige-2) 100%);
  overflow: hidden;
}
.hero--dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
}
.hero--dark h1 { color: var(--white); }
.hero--dark .lead { color: rgba(255,255,255,0.78); }

.hero-grid {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 968px) {
  .hero { padding: 112px 0 96px; }
  .hero-grid { grid-template-columns: 1.2fr 0.8fr; gap: 72px; }
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 700; line-height: 1.08; letter-spacing: -0.02em;
  color: var(--navy); margin-bottom: 22px;
}
.hero--dark .hero-headline { color: var(--white); }
.hero-headline em { font-style: italic; color: var(--red-accent); }
.hero-headline .accent { color: var(--red-accent); }

.hero-sub {
  font-size: 18px; color: var(--text-body);
  line-height: 1.6; max-width: 560px;
  margin-bottom: 32px;
}
.hero--dark .hero-sub { color: rgba(255,255,255,0.78); }
@media (min-width: 768px) { .hero-sub { font-size: 20px; } }

.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-meta {
  display: flex; flex-wrap: wrap; gap: 20px;
  font-size: 13px; font-weight: 500; color: var(--text-muted);
}
.hero--dark .hero-meta { color: rgba(255,255,255,0.55); }
.hero-meta-item { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta-item::before { content: '•'; color: var(--red-accent); }
.hero-meta-item:first-child::before { content: none; }

.hero-visual {
  display: none;
}
@media (min-width: 968px) {
  .hero-visual {
    display: block;
    background: var(--beige-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow);
  }
}

/* Hero-visual em tema escuro (mentoria, eua, portugal, espanha) */
.hero--dark .hero-visual {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  color: var(--white);
}
.hero--dark .hero-visual h3 { color: var(--white); }
.hero--dark .hero-visual p  { color: rgba(255,255,255,0.78); }
.hero--dark .hero-visual .check-list li {
  color: rgba(255,255,255,0.88);
  border-bottom-color: rgba(255,255,255,0.08);
}
.hero--dark .hero-visual .check-list li::before {
  background-color: rgba(37,211,102,0.20);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 6l3 3 5-6' stroke='%234ED693' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>");
}

/* ── CREDENTIAL BAR ─────────────────────────────── */
.cred-bar {
  padding: 32px 0;
  background: var(--navy);
  color: var(--white);
}
.cred-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
@media (min-width: 768px) {
  .cred-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
}
.cred-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700; color: var(--gold);
  line-height: 1; margin-bottom: 6px;
}
.cred-label {
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  line-height: 1.4;
}

/* ── SECTION HEADER ─────────────────────────────── */
.section-head {
  text-align: center; max-width: 760px;
  margin: 0 auto 56px;
}
.section-head.is-left { text-align: left; margin-left: 0; }
.section-head h2 { margin-bottom: 18px; }
.section-head .lead { margin: 0 auto; }
.section-head.is-left .lead { margin: 0; }

.section-divider {
  width: 48px; height: 3px;
  background: var(--red-accent);
  border-radius: 3px;
  margin: 0 auto 28px;
}
.section-head.is-left .section-divider { margin-left: 0; }

/* ── GRID HELPERS ───────────────────────────────── */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── CARD PATTERNS ──────────────────────────────── */
.card {
  background: var(--beige-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(190,58,42,0.2);
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold-soft);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
  color: var(--red-dark);
}
.card h3 { margin-bottom: 12px; }
.card p  { font-size: 15px; line-height: 1.65; }

/* Session card (mentoria) */
.session-card {
  position: relative;
  background: var(--beige-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.session-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.session-num {
  position: absolute; top: -18px; left: 32px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--red-dark); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  box-shadow: 0 6px 18px rgba(123,26,42,0.28);
}
.session-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--red-accent); margin-bottom: 8px;
}
.session-card h3 {
  font-size: 22px; margin-bottom: 14px;
}
.session-card p { font-size: 15px; line-height: 1.7; }

/* Session-card em fundo navy (seção "As 4 sessões" na mentoria) */
.bg-navy .session-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
}
.bg-navy .session-card h3 { color: var(--white); }
.bg-navy .session-card p { color: rgba(255,255,255,0.78); }
.bg-navy .session-card .session-label { color: var(--gold); }
.bg-navy .session-card .session-num {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 6px 18px rgba(201,146,42,0.35);
}

/* Bloco "Você sai com:" no rodapé do session-card */
.session-footer-meta {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.session-footer-meta strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
  font-weight: 700;
}
.bg-navy .session-footer-meta {
  border-top-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
}
.bg-navy .session-footer-meta strong {
  color: var(--white);
}

/* Profile card (para quem é) */
.profile-card {
  background: var(--beige-card);
  border-left: 4px solid var(--red-accent);
  border-radius: var(--radius-sm);
  padding: 26px 28px;
  margin-bottom: 18px;
}
.profile-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 17px;
  color: var(--navy); margin-bottom: 8px;
  line-height: 1.3;
}
.profile-card p { font-size: 15px; color: var(--text-body); }

/* ── LISTS ──────────────────────────────────────── */
.check-list {
  list-style: none; padding: 0;
}
.check-list li {
  position: relative;
  padding: 10px 0 10px 34px;
  font-size: 16px; color: var(--text-body);
  line-height: 1.55;
  border-bottom: 1px solid var(--border-soft);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '';
  position: absolute; left: 0; top: 14px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(42,122,59,0.12);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 6l3 3 5-6' stroke='%23237A3B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

.x-list {
  list-style: none; padding: 0;
}
.x-list li {
  position: relative;
  padding: 10px 0 10px 34px;
  font-size: 16px; color: var(--text-body);
  line-height: 1.55;
  border-bottom: 1px solid var(--border-soft);
}
.x-list li:last-child { border-bottom: none; }
.x-list li::before {
  content: '×';
  position: absolute; left: 0; top: 6px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(190,58,42,0.10);
  color: var(--red-accent);
  font-size: 18px; font-weight: 700; line-height: 22px;
  text-align: center;
}

/* Faz / Não Faz */
.twin-lists {
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .twin-lists { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
.twin-card {
  background: var(--beige-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.twin-card h3 { margin-bottom: 6px; }
.twin-card .twin-label {
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--red-accent); margin-bottom: 8px;
}
.twin-card.is-no .twin-label { color: var(--text-muted); }

/* ── DELIVERABLES BLOCKS ────────────────────────── */
.deliverable-block {
  margin-bottom: 40px;
}
.deliverable-block:last-child { margin-bottom: 0; }
.deliverable-block h3 {
  display: flex; align-items: center; gap: 14px;
  font-size: 22px; margin-bottom: 20px;
}
.deliverable-block h3::before {
  content: ''; width: 36px; height: 3px;
  background: var(--red-accent); border-radius: 2px;
}
.deliverable-item {
  background: var(--beige-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  margin-bottom: 12px;
}
.deliverable-item strong {
  display: block;
  color: var(--navy); font-weight: 700; font-size: 16px;
  margin-bottom: 4px;
}
.deliverable-item span {
  display: block; font-size: 14px; color: var(--text-body); line-height: 1.55;
}

/* ── QUOTE / PULL BLOCK ─────────────────────────── */
.pull-quote {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  overflow: hidden;
}
.pull-quote::before {
  content: '"';
  position: absolute;
  top: -12px; left: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 120px; line-height: 1; color: var(--red-accent);
  opacity: 0.4;
}
.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35; color: var(--white);
  max-width: 720px; margin: 0 auto;
  font-weight: 600;
}
.pull-quote strong { color: var(--gold); font-style: italic; font-weight: 700; }
@media (min-width: 768px) {
  .pull-quote { padding: 64px 48px; }
}

/* ── INVESTMENT / PRICING ───────────────────────── */
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
}
.price-card.is-featured {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white); border-color: var(--navy);
  box-shadow: var(--shadow-lg);
}
.price-card.is-featured h3 { color: var(--white); }
.price-card.is-featured p  { color: rgba(255,255,255,0.78); }

.price-tag {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 6px;
}
.price-currency {
  font-size: 18px; font-weight: 600; color: var(--gold);
}
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 700; color: var(--navy);
  line-height: 1;
}
.price-card.is-featured .price-amount { color: var(--white); }
.price-period {
  font-size: 14px; color: var(--text-muted);
  margin-bottom: 18px;
}
.price-card.is-featured .price-period { color: rgba(255,255,255,0.6); }

.price-stripe {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-soft); color: var(--gold);
  padding: 6px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 20px;
}
.price-card.is-featured .price-stripe {
  background: rgba(201,146,42,0.18);
  color: var(--gold);
}

.price-divider {
  height: 1px; background: var(--border-soft);
  margin: 22px 0;
}
.price-card.is-featured .price-divider { background: rgba(255,255,255,0.12); }

.price-meta {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.6;
  padding-top: 18px; margin-top: 18px;
  border-top: 1px solid var(--border-soft);
}
.price-card.is-featured .price-meta {
  color: rgba(255,255,255,0.55);
  border-top-color: rgba(255,255,255,0.12);
}

/* ── TABLE ──────────────────────────────────────── */
.plain-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--beige-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 15px;
}
.plain-table th,
.plain-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}
.plain-table th {
  background: var(--beige-2);
  font-weight: 700; color: var(--navy);
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px;
}
.plain-table tr:last-child td { border-bottom: none; }
.plain-table td:last-child { font-weight: 700; color: var(--navy); white-space: nowrap; }

/* ── FAQ ────────────────────────────────────────── */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--beige-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: rgba(190,58,42,0.3); }
.faq-item summary {
  list-style: none;
  padding: 22px 24px;
  font-weight: 700; color: var(--navy);
  font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--red-accent); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 400;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; transform: rotate(180deg); }
.faq-item div {
  padding: 0 24px 22px;
  font-size: 15px; color: var(--text-body); line-height: 1.7;
}

/* ── STEP LIST (como trabalhamos) ───────────────── */
.steps {
  counter-reset: step;
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
.step {
  position: relative;
  background: var(--beige-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 40px; font-weight: 700;
  color: var(--red-accent); line-height: 1;
  margin-bottom: 14px;
  opacity: 0.85;
}
.step h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--navy);
  margin-bottom: 10px;
}
.step p { font-size: 15px; line-height: 1.65; }

/* ── COUNTRY SELECTOR ───────────────────────────── */
.country-select {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .country-select { grid-template-columns: repeat(3, 1fr); }
}
.country-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  text-decoration: none; color: inherit;
}
.country-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(190,58,42,0.25);
}
.country-card img {
  width: 54px; height: 36px; border-radius: 6px;
  object-fit: cover; margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.country-card h3 {
  font-size: 22px; margin-bottom: 6px;
}
.country-card .country-sub {
  font-size: 14px; color: var(--text-muted); margin-bottom: 18px;
  line-height: 1.5;
}
.country-card .country-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--red-accent);
  letter-spacing: 0.3px;
  transition: gap 0.2s;
}
.country-card:hover .country-cta { gap: 10px; }

/* ── PATH CHOOSER (turismo/estudante) ───────────── */
.path-chooser {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .path-chooser { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.path-card {
  display: flex; flex-direction: column;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}
.path-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.path-card .path-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.path-card h3 {
  font-size: 28px; color: var(--white); margin-bottom: 10px;
}
.path-card p {
  color: rgba(255,255,255,0.72); font-size: 15px; line-height: 1.55;
  margin-bottom: 24px; flex: 1;
}
.path-card .path-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--gold);
  letter-spacing: 0.3px;
}

/* ── FINAL CTA ──────────────────────────────────── */
.final-cta {
  background: linear-gradient(135deg, var(--red-dark) 0%, #5A1320 100%);
  color: var(--white);
  text-align: center;
  padding: 88px 24px;
  border-radius: var(--radius-lg);
}
.final-cta h2 { color: var(--white); margin-bottom: 18px; }
.final-cta p  { color: rgba(255,255,255,0.82); font-size: 18px; max-width: 620px; margin: 0 auto 32px; }
.final-cta .btn-whatsapp {
  background: var(--white); color: var(--red-dark);
  border-color: var(--white);
}
.final-cta .btn-whatsapp:hover {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
}

/* ── FOOTER ─────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
  margin-top: 0;
}
.footer-grid {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 48px;
  }
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 24px; color: var(--white);
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 14px; font-style: italic;
  color: rgba(255,255,255,0.5); max-width: 360px;
  line-height: 1.5;
}
.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px; font-weight: 700;
  color: var(--gold); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px; color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px; color: rgba(255,255,255,0.4);
  text-align: center;
  letter-spacing: 0.3px;
}

/* ── NOTICE BANNER ──────────────────────────────── */
.notice {
  background: var(--gold-soft);
  border: 1px solid rgba(201,146,42,0.25);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 14px; color: var(--text-body);
  line-height: 1.55;
}
.notice strong { color: var(--navy); }

/* ── UTILITY ────────────────────────────────────── */
.mt-0  { margin-top: 0 !important; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.bg-navy  { background: var(--navy); color: var(--white); }
.bg-navy  h2, .bg-navy h3 { color: var(--white); }
.bg-navy  p { color: rgba(255,255,255,0.78); }
.bg-beige { background: var(--beige); }
.bg-white { background: var(--white); }

/* ── FOCUS ──────────────────────────────────────── */
.btn:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--red-accent);
  outline-offset: 3px;
  border-radius: 999px;
}

/* ── CHOICE GRID (home — 4 caminhos) ─────────────── */
.choice-grid {
  display: grid; gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .choice-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
}
@media (min-width: 1024px) {
  .choice-grid { grid-template-columns: repeat(4, 1fr); }
}

.choice-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 30px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  text-decoration: none; color: inherit;
  height: 100%;
}
.choice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(190,58,42,0.25);
}
.choice-card .choice-flag {
  width: 52px; height: 36px; border-radius: 6px;
  object-fit: cover; margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.choice-card .choice-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold-soft);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.choice-card .choice-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--red-accent);
  margin-bottom: 10px;
}
.choice-card h3 {
  font-size: 24px; line-height: 1.2; margin-bottom: 10px;
}
.choice-card p {
  font-size: 14px; color: var(--text-body); line-height: 1.55;
  margin-bottom: 22px; flex: 1;
}
.choice-card .choice-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--red-accent);
  letter-spacing: 0.3px;
  transition: gap 0.2s;
}
.choice-card:hover .choice-cta { gap: 10px; }

.choice-card--featured {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white); border-color: var(--navy);
  box-shadow: var(--shadow);
}
.choice-card--featured h3 { color: var(--white); }
.choice-card--featured p  { color: rgba(255,255,255,0.78); }
.choice-card--featured .choice-label { color: var(--gold); }
.choice-card--featured .choice-cta { color: var(--gold); }
.choice-card--featured .choice-icon {
  background: rgba(201,146,42,0.18);
  color: var(--gold);
}
.choice-card--featured::before {
  content: 'Premium';
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.choice-card { position: relative; }

/* ── SERVICE HUB (página EUA — accordion ricos) ──── */
.service-group {
  margin-bottom: 56px;
}
.service-group:last-child { margin-bottom: 0; }
.service-group-head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.service-group-head h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--navy); margin: 0;
}
.service-group-head .group-line {
  flex: 1; height: 1px; background: var(--border);
}

.service-hub-grid {
  display: grid; gap: 16px;
}

.service-hub-card {
  background: var(--beige-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-hub-card[open] {
  border-color: rgba(190,58,42,0.3);
  box-shadow: var(--shadow-sm);
}
.service-hub-card.is-featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  border-color: var(--navy);
}
.service-hub-card.is-featured summary {
  color: var(--white);
}
.service-hub-card summary {
  list-style: none;
  padding: 22px 26px;
  cursor: pointer;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 18px;
  font-weight: 600;
}
.service-hub-card summary::-webkit-details-marker { display: none; }
.service-hub-card .svc-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-soft); color: var(--red-dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.service-hub-card.is-featured .svc-icon {
  background: rgba(201,146,42,0.18); color: var(--gold);
}
.service-hub-card .svc-title {
  display: flex; flex-direction: column; gap: 2px;
}
.service-hub-card .svc-title strong {
  font-size: 17px; font-weight: 700; color: var(--navy);
  line-height: 1.3;
}
.service-hub-card.is-featured .svc-title strong { color: var(--white); }
.service-hub-card .svc-title span {
  font-size: 13px; font-weight: 500;
  color: var(--text-muted); line-height: 1.4;
}
.service-hub-card.is-featured .svc-title span { color: rgba(255,255,255,0.65); }
.service-hub-card .svc-toggle {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--red-accent); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 400;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.service-hub-card[open] .svc-toggle { transform: rotate(45deg); }
.service-hub-card.is-featured .svc-toggle {
  background: var(--gold); color: var(--navy);
}

.svc-body {
  padding: 0 26px 28px;
  border-top: 1px solid var(--border-soft);
  margin-top: -2px;
}
.service-hub-card.is-featured .svc-body {
  border-top-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.82);
}
.svc-body > * { margin-top: 20px; }
.svc-body > *:first-child { margin-top: 22px; }
.svc-body h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--red-accent);
  margin-bottom: 10px;
}
.service-hub-card.is-featured .svc-body h4 { color: var(--gold); }
.svc-body p { font-size: 15px; line-height: 1.65; }
.svc-body .check-list li,
.svc-body .x-list li { font-size: 15px; padding: 8px 0 8px 32px; }
.svc-body .check-list li::before { top: 12px; }
.svc-body .x-list li::before { top: 4px; }
.svc-body .svc-price-line {
  display: inline-flex; align-items: baseline; gap: 8px;
  background: var(--gold-soft);
  border: 1px solid rgba(201,146,42,0.25);
  padding: 10px 16px; border-radius: 999px;
  font-weight: 700;
}
.svc-body .svc-price-line strong { color: var(--navy); font-size: 18px; }
.svc-body .svc-price-line span { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.service-hub-card.is-featured .svc-body .svc-price-line {
  background: rgba(201,146,42,0.15);
  border-color: rgba(201,146,42,0.35);
}
.service-hub-card.is-featured .svc-body .svc-price-line strong { color: var(--white); }
.service-hub-card.is-featured .svc-body .svc-price-line span { color: rgba(255,255,255,0.7); }

.svc-cta-row {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding-top: 4px;
}

/* ── COMPACT SERVICE CARD (Portugal/Espanha) ─────── */
.compact-grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .compact-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (min-width: 1024px) {
  .compact-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.compact-card {
  display: flex; flex-direction: column;
  background: var(--beige-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.compact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(190,58,42,0.2);
}
.compact-card .compact-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold-soft); color: var(--red-dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 14px;
}
.compact-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
  line-height: 1.3;
}
.compact-card p {
  font-size: 14px; color: var(--text-body); line-height: 1.6;
  margin-bottom: 20px; flex: 1;
}
.compact-card .compact-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700;
  color: var(--whatsapp-dk); letter-spacing: 0.3px;
  transition: gap 0.2s;
}
.compact-card:hover .compact-cta { gap: 12px; }
.compact-card .compact-cta svg {
  width: 14px; height: 14px; fill: currentColor;
}

/* ── DISCLAIMER ──────────────────────────────────── */
.disclaimer {
  background: rgba(27,39,68,0.04);
  border: 1px dashed rgba(27,39,68,0.18);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 13px; color: var(--text-body);
  line-height: 1.6;
}
.disclaimer strong { color: var(--navy); }

/* ── BREADCRUMB ──────────────────────────────────── */
.breadcrumb {
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.breadcrumb a {
  color: var(--text-muted);
  border-bottom: 1px dotted transparent;
  transition: color 0.2s, border-color 0.2s;
}
.breadcrumb a:hover {
  color: var(--red-accent);
  border-bottom-color: var(--red-accent);
}
.breadcrumb-sep { margin: 0 10px; color: var(--border); }
.hero--dark .breadcrumb { color: rgba(255,255,255,0.5); }
.hero--dark .breadcrumb a { color: rgba(255,255,255,0.7); }
.hero--dark .breadcrumb a:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ── COUNTRY HERO BADGE (PT/ES) ──────────────────── */
.country-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.08);
  padding: 10px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.country-badge img {
  width: 28px; height: 20px; border-radius: 3px;
  object-fit: cover;
}
.country-badge span {
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
}

/* ── ABOUT / SOBRE ──────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px; display: block;
}
.about-headline {
  font-family: var(--ff-serif);
  font-size: clamp(26px, 3.5vw, 38px);
  color: #fff; line-height: 1.25;
  margin-bottom: 36px;
}
.about-headline em { color: var(--gold); font-style: normal; }
.about-stats {
  display: flex; gap: 36px;
}
.about-stat-num {
  display: block;
  font-family: var(--ff-serif); font-size: 52px;
  color: var(--gold); line-height: 1; margin-bottom: 6px;
}
.about-stat-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.8px;
  color: rgba(255,255,255,0.5); text-transform: uppercase;
  line-height: 1.4;
}
.about-story {
  font-size: 16px; color: rgba(255,255,255,0.78);
  line-height: 1.8; margin-bottom: 20px;
}
.about-story:last-of-type { margin-bottom: 0; }
.about-badges {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 28px;
}
.about-badges span {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.3px;
  color: rgba(255,255,255,0.65);
}
/* condensed variant (EUA / PT / ES pages) */
.about-split--light .about-headline { color: var(--navy); }
.about-split--light .about-stat-num { color: var(--gold); }
.about-split--light .about-stat-label { color: var(--text-muted); }
.about-split--light .about-story { color: var(--text-body); }
.about-split--light .about-badges span {
  background: var(--beige);
  border-color: var(--border);
  color: var(--navy);
}
@media (max-width: 820px) {
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { gap: 24px; }
}

/* ── FOUNDER CARDS ──────────────────────────────── */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 52px;
  padding-top: 52px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.founder-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.founder-card__name {
  font-family: var(--ff-serif);
  font-size: 22px; color: #fff; font-weight: 700;
  margin-bottom: 4px; line-height: 1.2;
}
.founder-card__role {
  font-size: 11px; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px; display: block;
}
.founder-card__bio {
  font-size: 14px; color: rgba(255,255,255,0.65);
  line-height: 1.75; margin-bottom: 20px;
}
.founder-card__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.founder-card__tags span {
  font-size: 11px; font-weight: 600; letter-spacing: 0.3px;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px; padding: 4px 12px;
}
/* light variant */
.founders-grid--light {
  border-top-color: var(--border-soft);
}
.founder-card--light {
  background: var(--white);
  border-color: var(--border);
}
.founder-card--light .founder-card__name { color: var(--navy); }
.founder-card--light .founder-card__bio { color: var(--text-body); }
.founder-card--light .founder-card__tags span {
  color: var(--navy);
  background: var(--beige);
  border-color: var(--border);
}
@media (max-width: 700px) {
  .founders-grid { grid-template-columns: 1fr; }
}

/* ── NEWS CARDS ─────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 52px;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.news-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.news-outlet {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--beige);
  border-radius: 999px;
  padding: 4px 12px;
  border: 1px solid var(--border);
}
.news-date {
  font-size: 11px;
  color: var(--text-muted);
}
.news-headline {
  font-family: var(--ff-serif);
  font-size: 17px;
  color: var(--navy);
  line-height: 1.38;
  margin-bottom: 12px;
  font-weight: 700;
}
.news-excerpt {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 22px;
}
.news-link {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color .15s;
}
.news-link:hover { color: var(--navy); }
@media (max-width: 700px) {
  .news-grid { grid-template-columns: 1fr; }
}

/* ── DEPOIMENTOS ─────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.testimonial-mark {
  font-family: var(--ff-serif);
  font-size: 48px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 12px;
}
.testimonial-text {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin-bottom: 24px;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.testimonial-context {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
  letter-spacing: 0.3px;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── STICKY MOBILE WA ────────────────────────────── */
.sticky-wa {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--whatsapp);
  z-index: 999;
  padding: 14px 20px;
  text-align: center;
}
.sticky-wa a {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.sticky-wa .wa-icon { width: 20px; height: 20px; fill: #fff; }
@media (max-width: 768px) {
  .sticky-wa { display: block; }
  body { padding-bottom: 60px; }
}

/* ── RESPONSIVE TWEAKS ──────────────────────────── */
@media (max-width: 480px) {
  .hero { padding: 56px 0 48px; }
  .section { padding: 56px 0; }
  .session-card { padding: 34px 24px 28px; }
  .price-card { padding: 32px 24px; }
  .final-cta { padding: 64px 20px; }
  .pull-quote { padding: 40px 24px; }
  .pull-quote::before { font-size: 90px; left: 16px; }
  .btn { padding: 13px 22px; font-size: 14px; }
  .btn-lg { padding: 15px 28px; font-size: 15px; }
  .service-hub-card summary { padding: 18px 20px; gap: 14px; grid-template-columns: 38px 1fr auto; }
  .service-hub-card .svc-icon { width: 38px; height: 38px; font-size: 18px; }
  .svc-body { padding: 0 20px 22px; }
  .choice-card { padding: 30px 24px 26px; }
}
