

  :root {
    --blue: #003399; --blue-light: #0044cc;
    --black: #212121; --gray: #4A4A4A; --gray-light: #8a8a8a;
    --white: #FFFFFF; --off-white: #f5f6fa;
    --gold: #c9a84c; --gold-light: #e8c97a;
    --border: rgba(0,51,153,0.12);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--black); overflow-x: hidden; line-height: 1.6; }

  /* ── NAVBAR ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 0 24px;
    height: 68px; min-height: 68px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    gap: 16px;
    overflow: visible;
    box-sizing: border-box;
  }
  .nav-logo {
    display: flex; align-items: center;
    flex: 0 0 auto;
    overflow: visible;
    height: 48px;
  }
  .nav-logo img {
    height: 48px; width: auto; max-width: 150px;
    display: block; object-fit: contain;
    transform: none;
  }
  .nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--blue); color: var(--white);
    padding: 10px 18px; border-radius: 4px;
    font-size: .82rem; font-weight: 600; text-decoration: none;
    white-space: nowrap;
    flex: 0 0 auto;
    transition: background .25s;
  }
  .nav-cta:hover { background: var(--blue-light); }
  @media (max-width: 768px) {
    nav { padding: 0 16px; height: 60px; min-height: 60px; gap: 12px; }
    .nav-logo img { height: 36px; max-width: 120px; }
    .nav-cta { padding: 8px 12px; font-size: .75rem; }
    .nav-cta svg { display: none; }
  }

  /* ── BREADCRUMB ── */
  .breadcrumb-section {
    background: #f5f5f7; border-bottom: 1px solid rgba(0,0,0,.07);
    margin-top: 68px;
  }
  .breadcrumb {
    max-width: 1000px; margin: 0 auto; padding: 14px 5%;
    display: flex; align-items: center; gap: 8px;
    font-size: .88rem; font-family: 'DM Sans', sans-serif;
  }
  .breadcrumb a { color: var(--blue); font-weight: 600; text-decoration: none; }
  .breadcrumb a:hover { text-decoration: underline; }
  .breadcrumb .separator { color: #aaa; }
  .breadcrumb .current { color: #2b2b2b; font-weight: 500; }
  @media (max-width: 600px) {
    .breadcrumb-section { margin-top: 60px; }
    .breadcrumb { font-size: .8rem; padding: 10px 4%; }
  }
  /* ── PAGE HERO ── */
  .page-hero {
    background: var(--black);
    min-height: 520px; display: flex; align-items: center; justify-content: center;
    padding: 110px 5% 110px;
    position: relative; overflow: hidden;
  }
  .page-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(0,51,153,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(0,51,153,.07) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .page-hero-glow {
    position: absolute; top: -80px; right: -80px;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,51,153,.32) 0%, transparent 70%);
    pointer-events: none;
  }
  .page-hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; text-align: center; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.3);
    color: var(--gold-light); padding: 7px 16px; border-radius: 50px;
    font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
    margin-bottom: 28px;
  }
  .hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
  .page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900;
    color: var(--white); line-height: 1.1; margin-bottom: 28px;
  }
  .page-hero h1 span { color: var(--gold); }
  .page-hero .hero-sub {
    font-size: 1.15rem; color: rgba(255,255,255,.78);
    max-width: 720px; margin: 0 auto 44px; line-height: 1.75;
  }
  .hero-micro { font-size: .78rem; color: rgba(255,255,255,.38); margin-top: 14px; }
  @media (max-width: 600px) {
    .page-hero { min-height: auto; padding: 80px 5% 90px; }
    .page-hero h1 { font-size: clamp(1.9rem, 6vw, 2.6rem); }
    .page-hero .hero-sub { font-size: 1rem; }
  }

  /* ── BUTTONS ── */
  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--blue); color: var(--white);
    padding: 15px 30px; border-radius: 6px;
    font-size: .97rem; font-weight: 700; text-decoration: none;
    transition: all .25s; border: 2px solid var(--blue);
  }
  .btn-primary:hover { background: transparent; color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,51,153,.4); }
  .btn-gold {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold); color: var(--black);
    padding: 15px 30px; border-radius: 6px;
    font-size: .97rem; font-weight: 700; text-decoration: none;
    transition: all .25s; border: 2px solid var(--gold);
  }
  .btn-gold:hover { background: transparent; color: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,.4); }
  .btn-primary svg, .btn-gold svg { width: 18px; height: 18px; flex-shrink: 0; }

  /* ── SECTIONS ── */
  section { padding: 90px 5%; }
  .container { max-width: 1000px; margin: 0 auto; }
  .section-label { font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 900; color: #2b2b2b; line-height: 1.2; margin-bottom: 16px; }
  .divider { width: 48px; height: 3px; background: var(--gold); margin: 14px 0 24px; border-radius: 2px; }
  .body-text { font-size: .97rem; color: #4A4A4A; line-height: 1.85; margin-bottom: 20px; }
  .section-cta { margin-top: 36px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

  /* ── BULLET LIST ── */
  .bullet-list { list-style: none; margin: 24px 0; display: grid; gap: 12px; }
  .bullet-list li { display: flex; align-items: flex-start; gap: 12px; font-size: .93rem; color: var(--gray); }
  .bullet-list li::before {
    content: ''; width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
    background: var(--blue); border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 11px; background-repeat: no-repeat; background-position: center;
  }

  /* ── STEP LIST ── */
  .step-list { display: grid; gap: 16px; margin: 24px 0; }
  .step-item { background: var(--white); border-radius: 12px; padding: 22px 24px; border-left: 4px solid var(--blue); display: flex; gap: 16px; align-items: flex-start; }
  .step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.1rem; flex-shrink: 0; }
  .step-content strong { display: block; color: #2b2b2b; margin-bottom: 4px; font-size: .95rem; }
  .step-content p { font-size: .87rem; color: var(--gray); line-height: 1.6; margin: 0; }

  /* ── HIGHLIGHT BOX ── */
  .highlight-box { background: var(--black); border-radius: 16px; padding: 44px; position: relative; overflow: hidden; }
  .highlight-box::before { content: ''; position: absolute; top: -50px; right: -50px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(0,51,153,.4) 0%, transparent 70%); pointer-events: none; }
  .highlight-box h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 14px; position: relative; z-index: 1; }
  .highlight-box p { font-size: .92rem; color: rgba(255,255,255,.72); line-height: 1.7; margin-bottom: 20px; position: relative; z-index: 1; }
  .highlight-box .stat-row { display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 28px; position: relative; z-index: 1; }
  .highlight-box .stat .n { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--gold); }
  .highlight-box .stat .l { font-size: .75rem; color: rgba(255,255,255,.55); }
  .highlight-box .btn-primary { position: relative; z-index: 1; }

  /* ── COMPARE TABLE ── */
  .compare-table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: .9rem; border-radius: 10px; overflow: hidden; }
  .compare-table th { background: var(--blue); color: var(--white); padding: 14px 18px; text-align: left; font-weight: 600; }
  .compare-table td { padding: 13px 18px; border-bottom: 1px solid var(--border); color: var(--gray); }
  .compare-table tr:last-child td { border-bottom: none; }
  .compare-table tr:nth-child(even) td { background: var(--off-white); }
  .compare-table .check { color: #16a34a; font-weight: 700; }
  .compare-table .cross { color: #dc2626; font-weight: 700; }

  /* ── DEPOIMENTOS ── */
  .dep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
  .dep-card { background: var(--off-white); border: 1px solid var(--border); border-radius: 14px; padding: 28px 24px; }
  .dep-quote { font-family: 'Playfair Display', serif; font-size: 3rem; line-height: 1; color: var(--blue); opacity: .3; margin-bottom: -4px; }
  .dep-stars { color: var(--gold); font-size: .85rem; margin-bottom: 10px; }
  .dep-text { font-size: .9rem; color: var(--gray); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
  .dep-name { font-size: .85rem; font-weight: 700; color: var(--black); }
  .dep-role { font-size: .75rem; color: var(--gray-light); }

  /* ── FAQ ── */
  .faq-section { background: var(--off-white); }
  .faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 24px; cursor: pointer; transition: border-color .3s; margin-bottom: 12px; }
  .faq-item:hover { border-color: var(--blue); }
  .faq-q { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; font-size: .93rem; font-weight: 700; color: #2b2b2b; }
  .faq-q .icon { flex-shrink: 0; width: 24px; height: 24px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: .7rem; transition: transform .3s; }
  .faq-a { font-size: .87rem; color: var(--gray); line-height: 1.6; margin-top: 12px; display: none; }
  .faq-item.open .faq-a { display: block; }
  .faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--gold); }

  /* ── RELATED LINKS ── */
  .related-section { background: var(--black); }
  .related-section .section-title { color: var(--white); }
  .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
  .related-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 24px; text-decoration: none; transition: all .3s; display: flex; flex-direction: column; gap: 8px; }
  .related-card:hover { border-color: rgba(0,51,153,.5); transform: translateY(-4px); background: rgba(0,51,153,.12); }
  .related-card .rc-label { font-weight: 700; color: var(--white); font-size: .9rem; }
  .related-card .rc-desc { font-size: .8rem; color: rgba(255,255,255,.55); line-height: 1.5; flex: 1; }
  .related-card .rc-arrow { color: var(--gold); font-size: 1.1rem; align-self: flex-end; }

  /* ── CTA BANNER ── */
  .cta-banner { background: linear-gradient(135deg, var(--blue) 0%, #001a66 100%); padding: 90px 5%; text-align: center; position: relative; overflow: hidden; }
  .cta-banner::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 300px; background: radial-gradient(ellipse, rgba(201,168,76,.15) 0%, transparent 70%); }
  .cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; color: var(--white); margin-bottom: 10px; position: relative; z-index: 2; }
  .cta-banner p { font-size: .95rem; color: rgba(255,255,255,.68); margin-bottom: 32px; position: relative; z-index: 2; }
  .cta-banner .btn-gold { position: relative; z-index: 2; }
  .cta-trust { font-size: .75rem; color: rgba(255,255,255,.38); margin-top: 14px; position: relative; z-index: 2; }

  /* ── FOOTER ── */
  footer { background: #111; padding: 60px 5% 32px; border-top: 1px solid rgba(255,255,255,.06); }
  .footer-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 28px; }
  .footer-brand .brand { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 900; color: var(--white); }
  .footer-brand .tagline { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
  .footer-brand p { font-size: .82rem; color: rgba(255,255,255,.45); max-width: 300px; margin-top: 14px; line-height: 1.6; }
  .footer-contact a { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.75); text-decoration: none; font-size: .9rem; font-weight: 500; padding: 10px 20px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 8px; transition: all .25s; }
  .footer-contact a:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
  .footer-bottom { max-width: 1000px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
  .footer-bottom p { font-size: .74rem; color: rgba(255,255,255,.28); }
  .footer-credit { max-width: 1000px; margin: 18px auto 0; text-align: center; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.04); }
  .footer-credit p { font-size: .7rem; color: rgba(255,255,255,.16); letter-spacing: .06em; }
  .footer-credit span { color: rgba(255,255,255,.3); font-weight: 600; letter-spacing: .08em; }

  /* ── WA FLOAT ── */
  .wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
  .wa-btn { width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,.5); animation: wa-pulse 2s infinite; transition: transform .2s; }
  .wa-btn:hover {  }
  .wa-btn svg { width: 30px; height: 30px; }
  @keyframes wa-pulse { 0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); } 50% { box-shadow: 0 4px 40px rgba(37,211,102,.9); } }

  /* ── REVEAL ── */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.visible { opacity: 1; transform: none; }

  /* ── RESPONSIVE ── */
  @media (max-width: 960px) {
    .dep-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    section { padding: 64px 5%; }
    nav { padding: 6px 4%; min-height: 76px; }
    .nav-logo { width: 180px; height: 54px; }
    .nav-logo img { height: 54px;  }
    .nav-cta { padding: 9px 14px; font-size: .78rem; }
    .breadcrumb { margin-top: 60px; }
    .page-hero { padding: 60px 5% 70px; }
    .dep-grid, .related-grid { grid-template-columns: 1fr; }
    .highlight-box { padding: 28px 22px; }
    .highlight-box .stat-row { gap: 20px; }
    .compare-table { font-size: .82rem; }
    .compare-table th, .compare-table td { padding: 10px 12px; }
    .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  }


  /* ── TOPNAV SMALL LINKS ── */
  .topnav-links {
    display: flex; gap: 4px; flex-wrap: nowrap; overflow-x: auto;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
    padding: 0 5%; background: #001a66; border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .topnav-links::-webkit-scrollbar { display: none; }
  .nav-cta-small {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 8px 12px; font-size: .75rem; font-weight: 600;
    color: rgba(255,255,255,.65); text-decoration: none;
    white-space: nowrap; transition: color .2s;
    border-right: 1px solid rgba(255,255,255,.08);
    flex-shrink: 0;
  }
  .nav-cta-small:hover { color: #fff; background: rgba(255,255,255,.07); }

  /* ── RELATED CARD ICON ── */
  .rc-icon { font-size: 1.4rem; margin-bottom: 4px; }
.topnav-links .nav-cta-small.is-active {
  color: #fff;
  background: rgba(255,255,255,.09);
}
.topnav-links .nav-cta-small.is-active::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}
.topnav-links .nav-cta-small {
  position: relative;
}
@media (max-width: 768px) {
  .btn-primary,
  .btn-gold {
    width: 100%;
    justify-content: center;
  }
  .section-cta {
    gap: 12px;
  }
  .cta-banner {
    padding: 40px 20px;
  }
  .cta-banner .btn-gold {
    width: 100%;
  }
}