/* Promoções PB — Landing styles
   Palette: sunshine yellow + deep navy + warm white.
   Type:    Fraunces (display, occasional italic) + Manrope (UI/body).
*/
:root {
  --yellow:        #FFD400;
  --yellow-soft:   #FFF4B5;
  --yellow-tint:   #FFFBE6;
  --navy:          #002776;
  --navy-deep:     #001A52;
  --navy-soft:     #1E3A8A;
  --ink:           #0B1A3B;
  --ink-2:         rgba(11,26,59,0.72);
  --ink-3:         rgba(11,26,59,0.55);
  --ink-4:         rgba(11,26,59,0.16);
  --paper:         #FBFAF7;
  --paper-2:       #F2F1EC;
  --white:         #FFFFFF;
  --accent:        #E11D48;
  --green:         #1F8F5F;

  --shadow-sm: 0 1px 2px rgba(11,26,59,0.06), 0 1px 1px rgba(11,26,59,0.04);
  --shadow-md: 0 6px 20px rgba(11,26,59,0.08), 0 2px 6px rgba(11,26,59,0.05);
  --shadow-lg: 0 24px 60px rgba(11,26,59,0.16), 0 8px 24px rgba(11,26,59,0.08);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }
button { font: inherit; }

/* ===== Top utility bar ===== */
.util {
  background: var(--navy);
  color: var(--paper);
  font-size: 13px;
  font-weight: 500;
}
.util-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 9px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.util-left { display: flex; gap: 20px; align-items: center; opacity: 0.92; }
.util-item { display: inline-flex; align-items: center; gap: 7px; }
.util-item svg { opacity: 0.9; }
.util-right { display: flex; gap: 20px; align-items: center; }
.util-link { color: inherit; text-decoration: none; opacity: 0.85; transition: opacity .15s; }
.util-link:hover { opacity: 1; }
.util-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--yellow); color: var(--navy);
  padding: 4px 10px; border-radius: 999px;
  font-weight: 700; font-size: 11px; letter-spacing: 0.04em;
}

/* ===== Main nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,250,247,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--ink-4);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--navy);
  display: grid; place-items: center;
  color: var(--yellow);
  position: relative;
  flex: 0 0 auto;
}
.brand-text { line-height: 1; }
.brand-name {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: 22px; letter-spacing: -0.01em; color: var(--ink);
}
.brand-tag { font-size: 11px; color: var(--ink-3); margin-top: 3px; font-weight: 500; letter-spacing: 0.02em; }

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-link {
  color: var(--ink); text-decoration: none;
  font-size: 14px; font-weight: 600;
  padding: 8px 4px;
  position: relative;
  transition: color .15s;
}
.nav-link:hover { color: var(--navy); }
.nav-link::after {
  content: ''; position: absolute; left: 4px; right: 4px; bottom: 0;
  height: 2px; background: var(--yellow);
  transform: scaleX(0); transform-origin: left; transition: transform .2s;
}
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--paper);
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  transition: transform .15s, background .15s, box-shadow .15s;
  box-shadow: var(--shadow-sm);
}
.nav-cta:hover { background: var(--navy-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.nav-cta-wa { background: var(--green); }
.nav-cta-wa:hover { background: #176f48; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 64px 24px 80px;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 88% -200px, var(--yellow-soft), transparent 60%),
    radial-gradient(900px 500px at -10% 100%, rgba(0,39,118,0.06), transparent 70%),
    var(--paper);
}
.hero-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 56px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy);
}
.eyebrow-line { width: 28px; height: 2px; background: var(--navy); }
.h1 {
  font-size: clamp(46px, 5.5vw, 76px);
  line-height: 0.98;
  margin-top: 22px;
  text-wrap: balance;
}
.h1 em { font-style: italic; font-weight: 500; color: var(--navy); }
.h1 .mark {
  background: linear-gradient(180deg, transparent 65%, var(--yellow) 65%, var(--yellow) 96%, transparent 96%);
  padding: 0 6px; margin: 0 -6px;
}
.hero-lede {
  font-size: 18px; line-height: 1.55;
  color: var(--ink-2);
  max-width: 520px;
  margin-top: 24px;
}
.hero-ctas { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-size: 15px; font-weight: 700;
  text-decoration: none; cursor: pointer; border: 0;
  transition: transform .15s, background .15s, box-shadow .15s;
}
.btn-primary { background: var(--navy); color: var(--paper); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--ink-4); }
.btn-ghost:hover { border-color: var(--navy); background: var(--white); }
.btn-yellow { background: var(--yellow); color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-yellow:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); background: #FFDE33; }

.hero-trust {
  margin-top: 40px;
  display: flex; gap: 32px; align-items: center; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px dashed var(--ink-4);
}
.hero-trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink-2); font-weight: 600; }
.hero-trust-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--yellow-soft); color: var(--navy);
  display: grid; place-items: center;
  flex: 0 0 auto;
}

.hero-art {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-lg);
}
.hero-art-img {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,39,118,0.0) 30%, rgba(0,39,118,0.6) 100%),
    repeating-linear-gradient(135deg, #003999 0 24px, #002776 24px 48px);
}
.hero-art-stripes {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(255,212,0,0.85) 0 70px, transparent 71px),
    radial-gradient(circle at 80% 18%, transparent 90px, rgba(255,212,0,0.18) 91px, transparent 140px);
}
.hero-art-label {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  background: rgba(251,250,247,0.96);
  padding: 10px 18px; border-radius: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px; color: var(--ink); font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-art-overlay {
  position: absolute; left: 24px; right: 24px; bottom: 24px;
  display: flex; gap: 12px; align-items: flex-end; justify-content: space-between;
  color: var(--paper);
}
.hero-art-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.35;
  max-width: 280px;
}
.hero-art-card {
  background: var(--paper);
  color: var(--ink);
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 12px; font-weight: 600;
  display: grid; gap: 4px;
  min-width: 130px;
  box-shadow: var(--shadow-md);
}
.hero-art-card-big { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 600; color: var(--navy); line-height: 1; }
.hero-art-card-sub { color: var(--ink-3); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; }

/* ===== Trust strip ===== */
.strip {
  background: var(--navy);
  color: var(--paper);
}
.strip-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 28px 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  align-items: center;
}
.strip-item { display: flex; gap: 14px; align-items: center; }
.strip-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,212,0,0.15); color: var(--yellow);
  display: grid; place-items: center; flex: 0 0 auto;
}
.strip-text { line-height: 1.3; }
.strip-title { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 600; }
.strip-sub { font-size: 12px; opacity: 0.7; margin-top: 2px; }

/* ===== Section scaffolding ===== */
.section { padding: 96px 24px; }
.section-narrow { padding: 80px 24px; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 32px;
  margin-bottom: 48px;
}
.section-head-left { max-width: 640px; }
.section-h2 {
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.02;
  text-wrap: balance;
}
.section-h2 em { font-style: italic; color: var(--navy); font-weight: 500; }
.section-sub {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.5;
  margin-top: 16px;
  max-width: 560px;
}
.section-head-right { display: flex; gap: 12px; align-items: center; }

/* ===== Branch grid ===== */
.branches { background: var(--paper); }
.branch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.branch-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-4);
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s, border-color .25s;
}
.branch-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy);
}
.branch-card:hover .branch-cta-arrow { transform: translateX(4px); }
.branch-card:hover .branch-img-overlay {
  background: linear-gradient(180deg, rgba(0,26,82,0.15) 0%, rgba(0,26,82,0.0) 25%, rgba(0,26,82,0.55) 65%, rgba(0,26,82,0.9) 100%);
}

.branch-img {
  position: relative; aspect-ratio: 16 / 9;
  background: var(--navy);
  overflow: hidden;
}
.branch-img-bg {
  position: absolute; inset: 0;
}
.branch-img-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.branch-card:hover .branch-img-photo { transform: scale(1.04); }
.branch-img-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,26,82,0.10) 0%, rgba(0,26,82,0.0) 30%, rgba(0,26,82,0.45) 70%, rgba(0,26,82,0.85) 100%);
  transition: background .25s;
  pointer-events: none;
}
.branch-img-label {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  background: rgba(251,250,247,0.94);
  padding: 8px 14px; border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11.5px; color: var(--ink); font-weight: 600;
}
.branch-img-tag {
  position: absolute; right: 18px; top: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(251,250,247,0.95);
  color: var(--ink);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.branch-img-tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(31,143,95,0.22);
}
.branch-img-num {
  position: absolute; left: 22px; top: 18px;
  font-family: 'Fraunces', serif;
  font-size: 80px; font-weight: 600;
  color: rgba(255,212,0,0.95);
  line-height: 1;
  letter-spacing: -0.03em;
}
.branch-img-city-strip {
  position: absolute; left: 22px; right: 22px; bottom: 18px;
  color: var(--paper);
  display: flex; justify-content: space-between; align-items: flex-end;
}
.branch-img-city {
  font-family: 'Fraunces', serif;
  font-size: 40px; font-weight: 600; line-height: 0.95; letter-spacing: -0.02em;
}
.branch-img-state {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  background: var(--yellow); color: var(--navy);
  padding: 5px 10px; border-radius: 6px;
}

.branch-body { padding: 28px 30px 30px; display: flex; flex-direction: column; gap: 18px; flex: 1; }

.branch-meta { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.branch-meta-row {
  display: grid; grid-template-columns: 28px 1fr; gap: 14px;
  font-size: 14px; align-items: flex-start;
  padding-top: 12px;
  border-top: 1px dashed var(--ink-4);
}
.branch-meta-row:first-child { padding-top: 0; border-top: 0; }
.branch-meta-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--yellow-tint); color: var(--navy);
  display: grid; place-items: center; flex: 0 0 auto;
}
.branch-meta-key {
  font-size: 10.5px; font-weight: 700; color: var(--ink-3);
  text-transform: uppercase; letter-spacing: 0.12em;
}
.branch-meta-val { font-size: 14.5px; font-weight: 600; color: var(--ink); margin-top: 2px; }
.branch-meta-sub { font-size: 12.5px; color: var(--ink-3); margin-top: 1px; font-weight: 500; }

.branch-foot {
  margin-top: auto; padding-top: 18px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--ink-4);
}
.branch-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 15px; color: var(--navy);
}
.branch-cta-arrow {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--yellow); color: var(--navy);
  transition: transform .2s;
  font-size: 14px;
}
.branch-quick { display: flex; gap: 8px; }
.branch-quick-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--ink-4); background: var(--white); color: var(--navy);
  display: grid; place-items: center; cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.branch-quick-btn:hover { background: var(--navy); border-color: var(--navy); color: var(--yellow); }

/* ===== Map context ===== */
.map-context {
  background: var(--paper-2);
  margin-top: 56px;
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center;
}
.map-context-left h3 {
  font-size: 28px; line-height: 1.1;
  margin-bottom: 12px;
}
.map-context-left p { font-size: 15px; color: var(--ink-2); line-height: 1.55; }
.map-context-left .map-meta {
  margin-top: 22px; display: flex; gap: 22px;
}
.map-meta-item .v { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 600; color: var(--navy); line-height: 1; }
.map-meta-item .l { font-size: 11px; font-weight: 700; color: var(--ink-3); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }

.map-svg-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--ink-4);
  position: relative;
  overflow: hidden;
}
.map-svg-wrap svg { width: 100%; height: auto; display: block; }

/* ===== How it works ===== */
.how { background: var(--white); border-top: 1px solid var(--ink-4); border-bottom: 1px solid var(--ink-4); }
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.how-step {
  padding: 32px; border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--ink-4);
  position: relative;
}
.how-step-num {
  position: absolute; top: 24px; right: 28px;
  font-family: 'Fraunces', serif; font-size: 52px; font-weight: 600;
  color: var(--yellow); line-height: 1;
}
.how-step-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--navy); color: var(--yellow);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.how-step h4 { font-size: 22px; margin-bottom: 8px; }
.how-step p { font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }

/* ===== FAQ ===== */
.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: flex-start; }
.faq-aside { position: sticky; top: 92px; }
.faq-aside h3 { font-size: 32px; line-height: 1.08; margin-bottom: 14px; }
.faq-aside p { font-size: 15px; color: var(--ink-2); line-height: 1.55; margin-bottom: 22px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--ink-4); }
.faq-item:last-child { border-bottom: 1px solid var(--ink-4); }
.faq-q {
  width: 100%; text-align: left;
  background: transparent; border: 0;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-family: 'Fraunces', serif; font-size: 19px; font-weight: 600;
  color: var(--ink);
}
.faq-q-mark {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--yellow-tint); color: var(--navy);
  display: grid; place-items: center;
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: 16px; transition: transform .2s, background .15s;
  flex: 0 0 auto;
}
.faq-item.open .faq-q-mark { transform: rotate(45deg); background: var(--navy); color: var(--yellow); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
  font-size: 15px; color: var(--ink-2); line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 320px; padding-bottom: 22px; }

/* ===== CTA banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--paper);
  border-radius: var(--radius-xl);
  padding: 56px;
  display: grid; grid-template-columns: 1.4fr auto; gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; right: -50px; top: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: var(--yellow); opacity: 0.16;
}
.cta-banner::after {
  content: '';
  position: absolute; right: 80px; bottom: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--yellow); opacity: 0.08;
}
.cta-banner h3 { font-size: 36px; line-height: 1.05; margin-bottom: 10px; max-width: 540px; }
.cta-banner p { font-size: 16px; opacity: 0.85; max-width: 480px; }
.cta-banner-actions { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }

/* ===== Footer ===== */
.footer { background: var(--navy-deep); color: var(--paper); }
.footer-inner { max-width: 1240px; margin: 0 auto; padding: 56px 24px 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand-name { color: var(--paper); }
.footer-brand .brand-tag { color: rgba(251,250,247,0.55); }
.footer-brand .brand-mark { background: var(--yellow); color: var(--navy); }
.footer-about { font-size: 14px; line-height: 1.6; color: rgba(251,250,247,0.7); margin-top: 16px; max-width: 320px; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-social {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(251,250,247,0.08); color: var(--paper);
  display: grid; place-items: center;
  text-decoration: none; transition: background .15s;
}
.footer-social:hover { background: var(--yellow); color: var(--navy); }

.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--yellow); margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(251,250,247,0.75); text-decoration: none; font-size: 14px; transition: color .15s; }
.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
  margin-top: 48px; padding-top: 22px;
  border-top: 1px solid rgba(251,250,247,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: rgba(251,250,247,0.55);
}
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { color: inherit; text-decoration: none; }
.footer-bottom-links a:hover { color: var(--yellow); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-inner, .branch-grid, .map-context, .how-grid, .faq-grid, .cta-banner, .footer-grid, .strip-inner {
    grid-template-columns: 1fr;
  }
  .strip-inner { gap: 18px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .hero-art { aspect-ratio: 16/10; }
  .faq-aside { position: static; }
  .cta-banner { padding: 40px 28px; }
}
@media (max-width: 720px) {
  .util-right { display: none; }
  .nav-links { display: none; }
  .section { padding: 64px 18px; }
  .hero { padding: 40px 18px 56px; }
  .branch-img-num { font-size: 56px; }
  .branch-img-city { font-size: 32px; }
  .footer-grid { gap: 32px; }
}
