  :root{
    --blue: #1d4f91;
    --blue-deep: #143a6e;
    --magenta: #e80070;
    --purple: #6d2077;
    --ink: #1c2b38;
    --muted: #6b7280;
    --line: #e3e8f2;
    --bg: #ffffff;
  }
  *{ box-sizing: border-box; }
  body{
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--ink);
    background: var(--bg);
  }

  /* NAV */
  nav{
    display: flex;
    align-items: stretch;
    padding: 0;
    background: #fff;
    border-bottom: 1px solid rgba(29,79,145,.3);
  }
  .brand{
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 40px 18px 48px;
  }
  .brand img{
    height: 42px;
    width: auto;
    display: block;
  }

  .nav-links{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: 32px;
    padding: 18px 48px;
    background: linear-gradient(180deg, rgba(29,79,145,.16), rgba(29,79,145,.05));
    border-left: 1px solid rgba(29,79,145,.3);
  }
  .nav-links a{
    color: var(--ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
  }
  .nav-links a:hover{ color: var(--blue); }
  .nav-cta{
    position: relative;
    margin-left: 16px;
    background: var(--magenta);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-cta::before{
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 22px;
    background: rgba(29,79,145,.3);
  }

  .nav-toggle{
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(29,79,145,.3);
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
  }
  .nav-toggle span{
    position: relative;
    display: block;
    width: 18px;
    height: 2px;
    background: var(--blue-deep);
  }
  .nav-toggle span::before,
  .nav-toggle span::after{
    content: '';
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: var(--blue-deep);
  }
  .nav-toggle span::before{ top: -6px; }
  .nav-toggle span::after{ top: 6px; }

  /* HERO */
  .hero{
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
    padding: 72px 48px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--magenta);
    font-weight: 500;
    margin-bottom: 18px;
  }
  .eyebrow::before{
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--magenta);
  }
  h1{
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 42px;
    line-height: 1.28;
    color: var(--blue-deep);
    margin: 0 0 20px;
  }
  h1 em{ font-style: italic; color: var(--magenta); }
  .hero p{
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 460px;
    margin: 0 0 32px;
    font-weight: 300;
  }
  .hero-ctas{
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
  }
  .btn-primary{
    background: var(--blue);
    color: #fff;
    padding: 13px 26px;
    border-radius: 6px;
    font-size: 14.5px;
    font-weight: 500;
    text-decoration: none;
  }
  .btn-secondary{
    border: 1px solid var(--line);
    color: var(--blue-deep);
    padding: 13px 26px;
    border-radius: 6px;
    font-size: 14.5px;
    font-weight: 500;
    text-decoration: none;
  }
  .stats{
    display: flex;
    gap: 36px;
  }
  .stat b{
    display: block;
    font-family: 'Lora', serif;
    font-size: 24px;
    color: var(--blue-deep);
  }
  .stat span{
    font-size: 12.5px;
    color: var(--muted);
  }

  .hero-visual{
    background: linear-gradient(160deg, #f6f8fc, #eef2fa);
    border-radius: 16px;
    border: 1px solid var(--line);
    height: 340px;
    overflow: hidden;
  }
  .hero-carousel{
    position: relative;
    width: 100%;
    height: 100%;
  }
  .hero-carousel img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
  }
  .hero-carousel img.active{
    opacity: 1;
  }
  @media (prefers-reduced-motion: reduce){
    .hero-carousel img{ transition: none; }
  }

  section{
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 48px;
  }

  /* TINTA AZUL PADRAO (faixas/seções de destaque) */
  .tint-band{
    background: linear-gradient(180deg, rgba(29,79,145,.16), rgba(29,79,145,.05));
  }

  /* TRUST BAR */
  .trust-bar{
    background: linear-gradient(180deg, rgba(29,79,145,.16), rgba(29,79,145,.05));
    border-top: 1px solid rgba(29,79,145,.3);
    border-bottom: 1px solid var(--line);
  }
  .trust-bar > div{
    max-width: 1200px;
    margin: 0 auto;
    padding: 22px 48px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  .trust-item{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--muted);
  }
  .trust-item svg{ flex-shrink: 0; }

  /* SECTION HEADER */
  .section-head{
    text-align: center;
    max-width: 620px;
    margin: 0 auto 48px;
  }
  .section-eyebrow{
    font-size: 12.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--magenta);
    font-weight: 500;
    margin-bottom: 10px;
  }
  .section-head h2{
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 30px;
    color: var(--blue-deep);
    margin: 0 0 12px;
  }
  .section-head p{
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
  }

  /* PILARES */
  .pillars{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .pillar-card{
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 28px 24px;
  }
  .pillar-icon{
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
  }
  .pillar-card h3{
    font-size: 17px;
    font-weight: 500;
    color: var(--ink);
    margin: 0 0 8px;
  }
  .pillar-card p{
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
  }

  /* PRODUTOS */
  .products-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px;
  }
  .product-card{
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 26px 22px;
  }
  .product-tag{
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
  }
  .product-card h3{
    font-size: 16.5px;
    font-weight: 500;
    color: var(--blue-deep);
    margin: 0 0 8px;
  }
  .product-card p{
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 14px;
    font-weight: 300;
  }
  .product-card a{
    font-size: 13px;
    font-weight: 500;
    color: var(--blue);
    text-decoration: none;
  }
  .see-all{
    text-align: center;
  }
  .see-all a{
    font-size: 14px;
    font-weight: 500;
    color: var(--blue-deep);
    text-decoration: none;
    border-bottom: 1px solid var(--blue-deep);
    padding-bottom: 2px;
  }

  /* PLANOS */
  .plans-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 36px;
  }
  .plan-card{
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 32px 28px;
  }
  .plan-card.featured{
    border: 2px solid var(--blue);
    position: relative;
  }
  .plan-badge{
    position: absolute;
    top: -12px;
    left: 28px;
    background: var(--blue);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
  }
  .plan-card h3{
    font-family: 'Lora', serif;
    font-size: 21px;
    color: var(--blue-deep);
    margin: 0 0 10px;
  }
  .plan-card ul{
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
  }
  .plan-card li{
    font-size: 13.5px;
    color: var(--muted);
    padding: 6px 0 6px 22px;
    position: relative;
    font-weight: 300;
  }
  .plan-card li::before{
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--magenta);
  }
  .plan-card a{
    font-size: 13.5px;
    font-weight: 500;
    color: var(--blue);
    text-decoration: none;
  }
  .plan-card a.btn-primary{
    color: #fff;
  }

  /* PLANOS — layout empilhado (Pós-pago em cima, Pré-pago embaixo) */
  .plan-block{
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 32px 28px;
    margin-bottom: 24px;
  }
  .plan-block.featured{
    border: 2px solid var(--blue);
  }
  .plan-head{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
  }
  .plan-head .plan-badge{
    position: static;
    top: auto;
    left: auto;
  }
  .plan-head h2{
    font-family: 'Lora', serif;
    font-size: 22px;
    color: var(--blue-deep);
    margin: 0;
  }
  .plan-sub{
    font-size: 13.5px;
    color: var(--muted);
    font-weight: 300;
    margin: 0 0 20px;
  }
  .plan-body{
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 32px;
    margin-bottom: 22px;
  }
  .plan-body ul{
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .plan-body li{
    font-size: 13.5px;
    color: var(--muted);
    padding: 6px 0 6px 22px;
    position: relative;
    font-weight: 300;
  }
  .plan-body li::before{
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--magenta);
  }
  .side-note-col{
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: fit-content;
  }
  .side-note{
    background: #f6f8fc;
    border-radius: 10px;
    padding: 18px;
    font-size: 13px;
    color: var(--muted);
    font-weight: 300;
    height: fit-content;
  }
  .side-note b{
    display: block;
    color: var(--blue-deep);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .6px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .access-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    background: linear-gradient(180deg, rgba(29,79,145,.1), rgba(29,79,145,.03));
    border: 1px solid rgba(29,79,145,.25);
    border-radius: 10px;
    padding: 18px 22px;
    margin: 24px 0 28px;
  }
  .access-box .txt{
    font-size: 13.5px;
    color: var(--ink);
    font-weight: 300;
  }
  .access-box .txt b{
    display: block;
    color: var(--blue-deep);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
  }

  .steps-label,
  .table-label{
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    color: var(--magenta);
    font-weight: 600;
    margin: 24px 0 12px;
  }
  .plan-steps{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 8px;
  }
  .plan-step{
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px 6px;
    text-align: center;
  }
  .plan-step .icon{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
  }
  .plan-step .icon.icon-blue{ background: var(--blue); }
  .plan-step .icon.icon-green{ background: #1a9e6b; }
  .plan-step .icon.icon-amber{ background: #c98a12; }
  .plan-step .icon.icon-magenta{ background: var(--magenta); }
  .plan-step .n{
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--muted);
    font-weight: 400;
  }
  .plan-step .t{
    font-size: 11px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
  }

  .plan-table{
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
  }
  .plan-table .cap{
    padding: 7px 10px;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--muted);
    font-weight: 600;
    background: #f6f8fc;
    border-bottom: 1px solid var(--line);
  }
  .plan-table table{
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
  }
  .plan-table th, .plan-table td{
    padding: 7px 6px;
    text-align: center;
    border-bottom: 1px solid var(--line);
    font-weight: 300;
  }
  .plan-table th:first-child, .plan-table td:first-child{
    text-align: left;
  }
  .plan-table thead th{
    background: var(--blue-deep);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
  }
  .plan-table tbody tr:last-child td{ border-bottom: none; }
  .plan-table td.feature{ color: var(--muted); }
  .plan-table td.check{ color: var(--magenta); font-weight: 700; }
  .plan-table tfoot td{
    background: #f6f8fc;
    font-weight: 600;
    color: var(--blue-deep);
  }

  @media (max-width: 900px){
    .plan-steps{ grid-template-columns: 1fr 1fr; }
    .plan-body{ grid-template-columns: 1fr; }
    .access-box{ flex-direction: column; align-items: flex-start; }
  }

  /* CTA FINAL */
  .cta-final{
    background: var(--blue-deep);
    padding: 56px 48px;
    text-align: center;
  }
  .cta-final h2{
    font-family: 'Lora', serif;
    color: #fff;
    font-size: 26px;
    margin: 0 0 14px;
  }
  .cta-final p{
    color: #b8c6dc;
    font-size: 15px;
    margin: 0 0 28px;
    font-weight: 300;
  }
  .cta-final .btn-primary{
    background: var(--magenta);
  }

  /* FOOTER */
  footer{
    background: #10233d;
    color: #b8c6dc;
    padding: 56px 48px 24px;
  }
  .footer-grid{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-grid h4{
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
    margin: 0 0 16px;
  }
  .footer-grid p, .footer-grid a{
    font-size: 13.5px;
    color: #b8c6dc;
    line-height: 1.9;
    text-decoration: none;
    display: block;
  }
  .footer-grid a:hover{ color: #fff; }
  .footer-grid a.footer-social-link{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
  }
  .footer-grid a.footer-social-link svg,
  .footer-grid a.footer-social-link img{
    flex-shrink: 0;
  }
  .footer-bottom{
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    font-size: 12px;
    color: #7d8fa8;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }

  @media (max-width: 900px){
    .hero{ grid-template-columns: 1fr; }
    .pillars, .products-grid, .plans-grid{ grid-template-columns: 1fr; }
    .footer-grid{ grid-template-columns: 1fr; }

    nav{ flex-wrap: wrap; align-items: center; }
    .nav-toggle{ display: flex; margin: 0 20px 0 auto; }

    .nav-links{
      display: none;
      flex: none;
      width: 100%;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      padding: 8px 24px 20px;
      border-left: none;
      border-top: 1px solid rgba(29,79,145,.3);
    }
    .nav-links.open{ display: flex; }
    .nav-links a:not(.nav-cta){
      width: 100%;
      padding: 12px 0;
      border-bottom: 1px solid rgba(29,79,145,.15);
    }
    .nav-cta{
      margin: 16px 0 4px;
    }
    .nav-cta::before{ display: none; }
  }

  /* PAGE HEADER (páginas internas) */
  .page-header{
    background: linear-gradient(180deg, rgba(29,79,145,.16), rgba(29,79,145,.05));
    border-bottom: 1px solid rgba(29,79,145,.3);
    padding: 44px 48px 40px;
  }
  .page-header-inner{
    max-width: 1200px;
    margin: 0 auto;
  }
  .breadcrumb{
    font-size: 12.5px;
    color: var(--muted);
    margin-bottom: 14px;
  }
  .breadcrumb a{ color: var(--muted); text-decoration: none; }
  .breadcrumb span{ color: var(--blue-deep); }
  .page-header h1{
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 32px;
    color: var(--blue-deep);
    margin: 0 0 10px;
    max-width: 640px;
  }
  .page-header p{
    color: var(--muted);
    font-size: 15px;
    max-width: 560px;
    margin: 0;
    font-weight: 300;
  }

  /* QUEM SOMOS */
  .about-grid{
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .about-grid p{
    font-size: 15px;
    line-height: 1.85;
    color: var(--ink);
    margin: 0 0 18px;
    font-weight: 300;
  }
  .fact-card{
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 26px;
  }
  .fact-card h4{
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--magenta);
    font-weight: 500;
    margin: 0 0 18px;
  }
  .fact-row{
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 13.5px;
  }
  .fact-row:last-child{ border-bottom: none; }
  .fact-row span:first-child{ color: var(--muted); }
  .fact-row span:last-child{ color: var(--blue-deep); font-weight: 500; }

  .timeline{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
  }
  .timeline-item{
    text-align: center;
    padding-top: 28px;
    position: relative;
  }
  .timeline-item::before{
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--magenta);
  }
  .timeline-item b{
    display: block;
    font-family: 'Lora', serif;
    font-size: 19px;
    color: var(--blue-deep);
    margin-bottom: 6px;
  }
  .timeline-item span{
    font-size: 13px;
    color: var(--muted);
  }

  /* PRODUTOS (página completa) */
  .products-grid-4{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
  }
  .product-card.compact{ padding: 22px 20px; }
  .product-card.compact h3{ font-size: 15px; }
  .product-card.compact p{ font-size: 13px; min-height: 78px; }

  .pefin-banner{
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    background: linear-gradient(135deg, #fbeaf0, #f6f8fc);
    border: 1px solid #f4c9db;
    border-radius: 14px;
    padding: 30px 32px;
  }
  .pefin-banner .icon-circle{
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .pefin-banner h3{
    font-family: 'Lora', serif;
    font-size: 19px;
    color: var(--blue-deep);
    margin: 0 0 6px;
  }
  .pefin-banner p{
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    font-weight: 300;
  }

  @media (max-width: 900px){
    .products-grid-4{ grid-template-columns: 1fr 1fr; }
    .pefin-banner{ grid-template-columns: 1fr; text-align: center; }
    .pefin-banner .icon-circle{ margin: 0 auto; }
  }

  /* CONTATO */
  .contact-grid{
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: start;
  }
  .contact-info-card{
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 20px;
  }
  .contact-info-card h4{
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--magenta);
    font-weight: 500;
    margin: 0 0 16px;
  }
  .contact-row{
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 13.5px;
    color: var(--ink);
    line-height: 1.6;
  }
  .contact-row:last-child{ margin-bottom: 0; }
  .contact-row svg{ flex-shrink: 0; margin-top: 2px; }
  .social-row{ display: flex; gap: 10px; margin-top: 4px; }
  .social-row a{
    width: 36px; height: 36px;
    border-radius: 8px;
    background: #f6f8fc;
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
  }

  .contact-form{
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 32px;
  }
  .form-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
  .form-field{ display: flex; flex-direction: column; gap: 6px; }
  .form-field.full{ grid-column: 1 / -1; }
  .form-field label{
    font-size: 12.5px;
    color: var(--muted);
    font-weight: 500;
  }
  .form-field input, .form-field select, .form-field textarea{
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 10px 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--ink);
  }
  .form-field textarea{ resize: vertical; min-height: 90px; }
  .form-submit{
    background: var(--magenta);
    color: #fff;
    border: none;
    padding: 13px 28px;
    border-radius: 6px;
    font-size: 14.5px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
  }
  .form-note{
    font-size: 12px;
    color: var(--muted);
    margin-top: 10px;
  }

  @media (max-width: 900px){
    .contact-grid{ grid-template-columns: 1fr; }
    .form-row{ grid-template-columns: 1fr; }
  }
