  :root{
    --navy-dark:#1A387F;
    --navy:#12224d;
    --navy-light:#1e3a7a;
    --blue-grad-start:#0a0f24;
    --blue-grad-end:#1c3f8f;
    --green:#12b886;
    --green-dark:#0ea271;
    --yellow:#ffd93d;
    --red:#ef4444;
    --text-dark:#12172b;
    --text-gray:#5b6478;
    --bg-light:#f4f6f9;
    --bg-white:#ffffff;
    --border-light:#e4e8f0;
  }

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

  html{scroll-behavior:smooth;}

  body{
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
    color:var(--text-dark);
    background:var(--bg-white);
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
  }

  img{max-width:100%;display:block;}

  a{text-decoration:none;color:inherit;}

  .container{
    width:100%;
    max-width:1180px;
    margin:0 auto;
    padding:0 20px;
  }

  h1,h2,h3{
    font-weight:800;
    line-height:1.2;
    letter-spacing:-0.01em;
  }

  /* ---------- PLACEHOLDER IMAGES ---------- */
  .img-placeholder{
    background:repeating-linear-gradient(45deg,#dfe4ee,#dfe4ee 10px,#eceff5 10px,#eceff5 20px);
    border:1px dashed #9aa5bd;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#5b6478;
    font-size:13px;
    font-weight:700;
    text-align:center;
    border-radius:8px;
    width:100%;
  }

  /* ---------- TOP BAR ---------- */
  .topbar{
    background:#050814;
    color:#ffffff;
    text-align:center;
    font-size:11px;
    font-weight:600;
    padding:10px 14px;
    letter-spacing:0.01em;
  }

  /* ---------- HERO ---------- */
  .hero{
    background:linear-gradient(160deg,var(--blue-grad-start) 0%, var(--navy) 45%, var(--blue-grad-end) 100%);
    color:#ffffff;
    padding:36px 0 48px;
  }

  .hero-inner{
    display:flex;
    flex-direction:column;
    gap:24px;
  }

  .hero-content{
    display:contents;
  }

  .hero-heading-block{
    order:1;
    text-align:center;
  }

  .hero-image-wrap{
    order:2;
  }

  .hero-lead-block{
    order:3;
    text-align:center;
  }

  .hero-cta-block{
    order:4;
    text-align:center;
  }

  .badges{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:8px;
  }

  .badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.14);
    padding:8px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
    color:#e9edf7;
    white-space:nowrap;
  }

  .badge.highlight{color:#ffffff;}
  .badge.highlight-green{
    color:var(--yellow);
    background:rgba(18,184,134,0.18);
    border:1px solid rgba(18,184,134,0.45);
  }

  .hero h1{
    font-size:29px;
    text-wrap:balance;
    color:#ffffff;
  }

  .hero h1 .accent{
    color:var(--yellow);
    text-decoration:underline;
    text-decoration-color:var(--green);
    text-decoration-thickness:3px;
    text-underline-offset:6px;
  }

  .hero p.lead{
    font-size:16px;
    color:#c7cee3;
    max-width:560px;
    margin-left:auto;
    margin-right:auto;
  }

  .btn-primary{
    display:inline-block;
    background:var(--green);
    color:#ffffff;
    font-weight:800;
    font-size:16px;
    padding:16px 26px;
    border-radius:10px;
    text-align:center;
    border:none;
    cursor:pointer;
    box-shadow:0 8px 20px rgba(18,184,134,0.35);
  }

  .btn-primary:hover{background:var(--green-dark);}

  .btn-outline{
    display:inline-block;
    background:transparent;
    color:var(--text-dark);
    font-weight:800;
    font-size:15px;
    padding:14px 24px;
    border-radius:10px;
    text-align:center;
    border:2px solid var(--text-dark);
    cursor:pointer;
    width:100%;
  }

  .micro-text{
    font-size:12px;
    color:#aeb6cc;
    margin-top:10px;
  }

  .hero-image-wrap{
    width:100%;
  }

  .hero-image{
    display:block;
    width:100%;
    height:auto;
    border-radius:16px;
    box-shadow:0 30px 60px -20px rgba(15,23,42,0.35);
  }

  /* ---------- SECTION GENERIC ---------- */
  section{
    padding:52px 0;
  }

  .section-light{background:var(--bg-white);}
  .section-gray{background:var(--bg-light);}
  .section-navy{background:var(--navy-dark);color:#fff;}
  .section-soft-blue{background:#1A387F;color:#fff;}
  .section-soft-blue .section-title{color:#ffffff;}
  .section-soft-blue .section-subtitle{color:#a9b2cb;}

  .section-title{
    font-size:26px;
    text-align:center;
    margin-bottom:14px;
  }

  .section-badge{
    display:block;
    width:fit-content;
    margin:0 auto 18px;
    background:#eef2ff;
    color:var(--navy);
    border:1px solid #c7d2f0;
    font-size:12px;
    font-weight:800;
    letter-spacing:0.4px;
    padding:7px 16px;
    border-radius:999px;
  }

  .text-blue-accent{color:#2b57d1;}

  /* ---------- BONUS ---------- */
  .bonus-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
    margin-top:8px;
  }

  .bonus-card{
    background:#fff;
    border:1px solid var(--border-light);
    border-radius:16px;
    padding:20px;
    box-shadow:0 4px 18px rgba(20,40,100,0.06);
  }

  .bonus-card .bonus-image{
    display:block;
    width:100%;
    height:auto;
    border-radius:10px;
    margin-bottom:16px;
  }

  .bonus-card .bonus-tag{
    display:inline-block;
    background:#eef2ff;
    color:var(--navy);
    font-size:12px;
    font-weight:800;
    padding:5px 12px;
    border-radius:999px;
    margin-bottom:10px;
  }

  .bonus-card h3{
    font-size:18px;
    margin-bottom:8px;
  }

  .bonus-card p{
    font-size:14px;
    color:var(--text-gray);
    line-height:1.55;
  }

  .section-navy .section-title{color:#ffffff;}

  .section-subtitle{
    font-size:15px;
    color:var(--text-gray);
    text-align:center;
    max-width:640px;
    margin:0 auto 32px;
  }

  .section-navy .section-subtitle{color:#a9b2cb;}

  /* ---------- PROBLEM CARDS ---------- */
  .cards-3{
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
  }

  .problem-card{
    background:#fff;
    border:1px solid var(--border-light);
    border-radius:16px;
    padding:26px 24px;
    box-shadow:0 4px 18px rgba(20,40,100,0.06);
    transition:transform 0.2s ease, box-shadow 0.2s ease;
  }

  .problem-card:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 30px rgba(20,40,100,0.12);
  }

  .problem-card .icon{
    width:52px;height:52px;
    background:linear-gradient(135deg,#fff1e8,#ffe0d0);
    border-radius:14px;
    display:flex;align-items:center;justify-content:center;
    font-size:24px;
    margin-bottom:18px;
  }

  .problem-card h3{
    font-size:17px;
    margin-bottom:8px;
  }

  .problem-card p{
    font-size:14px;
    color:var(--text-gray);
    line-height:1.55;
  }

  /* ---------- STEPS ---------- */
  .steps-3{
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
  }

  .step-card{
    background:#ffffff;
    border-radius:10px;
    padding:26px 22px;
    text-align:center;
    box-shadow:0 1px 4px rgba(0,0,0,0.06);
  }

  .step-number{
    width:44px;height:44px;
    border-radius:50%;
    background:#dcf7ec;
    color:var(--green-dark);
    font-weight:800;
    font-size:18px;
    display:flex;align-items:center;justify-content:center;
    margin:0 auto 14px;
  }

  .step-card h3{
    font-size:16px;
    margin-bottom:8px;
  }

  .step-card p{
    font-size:14px;
    color:var(--text-gray);
  }

  /* ---------- PRICING ---------- */
  .pricing-wrap{
    display:flex;
    flex-direction:column;
    gap:24px;
    align-items:center;
  }

  .price-card{
    background:#ffffff;
    border:1px solid var(--border-light);
    border-radius:14px;
    padding:28px 24px;
    width:100%;
    max-width:420px;
    display:flex;
    flex-direction:column;
  }

  .price-card.featured{
    border:2px solid var(--navy-light);
    box-shadow:0 20px 40px rgba(20,40,100,0.14);
    position:relative;
  }

  .upgrade-hint{
    text-align:center;
    font-size:12px;
    font-weight:700;
    color:var(--text-gray);
    margin-top:12px;
  }

  .upgrade-hint-desktop{display:none;}

  .featured-badge{
    position:absolute;
    top:-14px;left:50%;
    transform:translateX(-50%);
    background:var(--navy);
    color:#fff;
    font-size:11px;
    font-weight:800;
    padding:6px 14px;
    border-radius:999px;
    white-space:nowrap;
  }

  .price-card .plan-name{
    font-size:19px;
    font-weight:800;
    margin-top:6px;
  }

  .price-card .plan-desc{
    font-size:11px;
    font-weight:700;
    color:var(--green-dark);
    letter-spacing:0.03em;
    margin-bottom:14px;
  }

  .price-card .plan-image{
    margin:14px 0;
  }

  .price-card .plan-image .img-placeholder{
    aspect-ratio:4/3;
  }

  .plan-image-photo{
    display:block;
    width:100%;
    aspect-ratio:1122/1402;
    object-fit:cover;
    border-radius:8px;
  }

  .price-value{
    font-size:15px;
    color:var(--text-gray);
    margin-bottom:16px;
  }

  .price-value strong{
    font-size:38px;
    color:var(--text-dark);
    font-weight:800;
  }

  .price-list{
    list-style:none;
    margin-bottom:22px;
    flex:1;
  }

  .price-list li{
    display:flex;
    gap:8px;
    font-size:14px;
    color:var(--text-dark);
    padding:6px 0;
  }

  .price-list li .check{color:var(--green-dark);font-weight:800;}
  .price-list li.unavailable{color:#9aa2b5;}
  .price-list li .cross{font-size:12px;opacity:0.75;}

  /* ---------- CAROUSEL ---------- */
  .carousel{
    width:100%;
    position:relative;
  }

  .carousel-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:40px;
    height:40px;
    border-radius:50%;
    border:none;
    background:rgba(255,255,255,0.92);
    color:#0f172a;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 8px 20px rgba(0,0,0,0.3);
    z-index:3;
    transition:background 0.2s ease, transform 0.2s ease;
  }

  .carousel-arrow:hover{
    background:#fff;
    transform:translateY(-50%) scale(1.08);
  }

  .carousel-arrow svg{
    width:20px;
    height:20px;
  }

  .carousel-arrow-prev{ left:2px; }
  .carousel-arrow-next{ right:2px; }

  .carousel-track{
    display:flex;
    gap:14px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    padding:4px calc(50% - 110px);
    scroll-padding:0 calc(50% - 110px);
  }

  .carousel:has(.testimonial-slide) .carousel-track{
    padding:4px calc(50% - 90px);
    scroll-padding:0 calc(50% - 90px);
  }

  .carousel-track::-webkit-scrollbar{
    display:none;
    height:0;
  }

  .carousel-slide{
    flex:0 0 auto;
    scroll-snap-align:center;
    opacity:0.45;
    transform:scale(0.86);
    transition:transform 0.35s ease, opacity 0.35s ease;
  }

  .carousel-slide.active{
    opacity:1;
    transform:scale(1);
    z-index:2;
  }

  .carousel-slide.active .img-placeholder,
  .carousel-slide.active .carousel-slide-photo{
    box-shadow:0 22px 45px -10px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.15);
  }

  .carousel-slide .img-placeholder{
    width:220px;
    aspect-ratio:340/460;
  }

  .carousel-slide-photo{
    display:block;
    width:220px;
    aspect-ratio:2/3;
    object-fit:cover;
    border-radius:8px;
  }

  .testimonial-slide .img-placeholder{
    width:180px;
    aspect-ratio:270/580;
  }

  .testimonial-slide .carousel-slide-photo,
  .testimonial-slide-photo{
    width:180px;
    aspect-ratio:800/1421;
  }

  .carousel-dots{
    display:flex;
    justify-content:center;
    gap:8px;
    margin-top:18px;
  }

  .carousel-dots .dot{
    width:8px;height:8px;
    border-radius:50%;
    background:rgba(255,255,255,0.25);
    border:none;
    padding:0;
    cursor:pointer;
    transition:background 0.2s ease, transform 0.2s ease;
  }

  .carousel-dots .dot.active{
    background:var(--green);
    transform:scale(1.2);
  }

  .section-light .carousel-dots .dot{
    background:rgba(20,23,43,0.18);
  }

  /* ---------- BEFORE / AFTER ---------- */
  .reality-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
    margin-bottom:36px;
  }

  .ba-wrap{
    display:flex;
    flex-direction:column;
    gap:18px;
  }

  .ba-card{
    border-radius:12px;
    padding:22px;
  }

  .ba-card.before{
    background:#fff;
    border:1px solid #fbdcd6;
  }

  .ba-card.after{
    background:#eafaf3;
    border:1px solid #c9f0dd;
  }

  .ba-title{
    font-size:14px;
    font-weight:800;
    text-align:center;
    margin-bottom:16px;
    letter-spacing:0.04em;
  }

  .ba-card.before .ba-title{color:var(--red);}
  .ba-card.after .ba-title{color:var(--green-dark);}

  .ba-card ul{
    list-style:none;
  }

  .ba-card li{
    display:flex;
    gap:10px;
    align-items:flex-start;
    font-size:14px;
    padding:8px 0;
  }

  .ba-card.before li .mark{color:var(--red);font-weight:800;}
  .ba-card.after li .mark{
    color:#fff;
    background:var(--green);
    width:18px;height:18px;
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    font-size:11px;
    flex-shrink:0;
    margin-top:2px;
  }

  /* ---------- FOR YOU IF ---------- */
  .foryou-card{
    background:var(--bg-light);
    border-radius:12px;
    padding:28px 24px;
    max-width:680px;
    margin:0 auto;
  }

  .foryou-card ul{list-style:none;}

  .foryou-card li{
    display:flex;
    gap:10px;
    align-items:flex-start;
    font-size:15px;
    padding:9px 0;
  }

  .foryou-card li .mark{color:var(--green-dark);font-weight:800;}

  /* ---------- GUARANTEE ---------- */
  .guarantee-card{
    background:#ffffff;
    border-radius:14px;
    padding:24px;
    display:flex;
    flex-direction:row;
    gap:18px;
    align-items:center;
    text-align:left;
    max-width:640px;
    margin:0 auto;
    box-shadow:0 4px 18px rgba(0,0,0,0.05);
  }

  .guarantee-badge{
    flex-shrink:0;
    width:84px;
  }

  .guarantee-badge .img-placeholder{
    aspect-ratio:1/1;
    font-size:10px;
    padding:4px;
  }

  .guarantee-badge-photo{
    display:block;
    width:100%;
    aspect-ratio:1/1;
    object-fit:contain;
  }

  .guarantee-text h3{
    font-size:17px;
    margin-bottom:8px;
    color:var(--text-dark);
  }

  .guarantee-text p{
    font-size:14px;
    color:var(--text-gray);
  }

  /* ---------- FAQ ---------- */
  .faq-list{
    display:flex;
    flex-direction:column;
    gap:12px;
    max-width:760px;
    margin:0 auto;
  }

  .faq-item{
    border:1px solid var(--border-light);
    border-radius:10px;
    overflow:hidden;
  }

  .faq-item[open]{
    border-color:#c7cede;
  }

  .faq-question{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 18px;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
    background:#fff;
    list-style:none;
  }

  .faq-question::-webkit-details-marker{display:none;}

  .faq-question .plus{
    font-size:18px;
    color:var(--text-gray);
    flex-shrink:0;
    margin-left:12px;
    transition:transform 0.2s ease;
  }

  .faq-item[open] .faq-question .plus{
    transform:rotate(45deg);
  }

  .faq-answer{
    padding:0 18px 18px;
    font-size:14px;
    color:var(--text-gray);
    background:var(--bg-light);
    margin:0;
    padding-top:14px;
  }

  /* ---------- FINAL CTA ---------- */
  .final-cta{
    background:linear-gradient(160deg,var(--blue-grad-end) 0%, var(--navy) 55%, var(--blue-grad-start) 100%);
    color:#fff;
    text-align:center;
    padding:56px 0;
  }

  .final-cta h2{
    font-size:26px;
    color:#fff;
    margin-bottom:16px;
  }

  .final-cta p{
    font-size:15px;
    color:#c7cee3;
    max-width:560px;
    margin:0 auto 26px;
  }

  .final-cta .micro-text{
    margin-top:14px;
  }

  /* ================= DESKTOP ================= */
  @media (min-width:960px){
    .carousel-track{
      padding-left:calc(50% - 140px);
      padding-right:calc(50% - 140px);
      scroll-padding:0 calc(50% - 140px);
    }
    .carousel:has(.testimonial-slide) .carousel-track{
      padding-left:calc(50% - 105px);
      padding-right:calc(50% - 105px);
      scroll-padding:0 calc(50% - 105px);
    }
    .carousel-slide .img-placeholder{width:280px;}
    .testimonial-slide .img-placeholder{width:210px;}
    .carousel-slide-photo{width:280px;}

    .hero-inner{
      flex-direction:row;
      align-items:center;
      justify-content:space-between;
      gap:50px;
    }
    .hero-content{
      display:flex;
      flex-direction:column;
      flex:1;
      max-width:560px;
      gap:20px;
    }
    .hero-image-wrap{flex:1;max-width:520px;}
    .hero-heading-block,
    .hero-lead-block,
    .hero-cta-block{text-align:left;}
    .hero .badges{
      display:flex;
      flex-wrap:wrap;
      justify-content:flex-start;
    }
    .hero .badge{
      width:auto;
      white-space:nowrap;
      font-size:12px;
      padding:7px 12px;
    }
    .hero p.lead{margin-left:0;margin-right:0;}
    .hero h1{font-size:46px;}
    .hero p.lead{font-size:17px;}

    .cards-3, .steps-3{
      grid-template-columns:repeat(3,1fr);
    }

    .reality-grid{
      grid-template-columns:repeat(2,1fr);
    }

    .bonus-grid{
      grid-template-columns:repeat(3,1fr);
    }

    .section-title{font-size:32px;}

    .pricing-wrap{
      flex-direction:row;
      align-items:stretch;
      justify-content:center;
    }

    .price-card{margin-top:14px;}
    .price-card.featured{margin-top:0;}

    .upgrade-hint-mobile{display:none;}
    .upgrade-hint-desktop{display:block;}

    .ba-wrap{
      flex-direction:row;
    }
    .ba-card{flex:1;}

    .final-cta h2{font-size:34px;}
  }

  /* ---------- UPSELL MODAL ---------- */
  .modal-overlay{
    position:fixed;
    inset:0;
    background:rgba(10,17,40,0.65);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    z-index:1000;
    opacity:0;
    visibility:hidden;
    transition:opacity 0.25s ease;
  }

  .modal-overlay.open{
    opacity:1;
    visibility:visible;
  }

  .modal-card{
    position:relative;
    width:100%;
    max-width:360px;
    background:var(--bg-white);
    border-radius:20px;
    padding:32px 28px 28px;
    text-align:center;
    box-shadow:0 30px 70px rgba(0,0,0,0.35);
    transform:translateY(12px) scale(0.97);
    transition:transform 0.25s ease;
  }

  .modal-overlay.open .modal-card{
    transform:translateY(0) scale(1);
  }

  .modal-close{
    position:absolute;
    top:14px;
    right:14px;
    width:28px;
    height:28px;
    border-radius:50%;
    border:none;
    background:var(--bg-light);
    color:var(--text-gray);
    font-size:13px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .modal-badge{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:#e6f7ef;
    color:var(--green-dark);
    font-size:12px;
    font-weight:800;
    letter-spacing:0.2px;
    padding:7px 14px;
    border-radius:20px;
    margin-bottom:18px;
  }

  .modal-title{
    font-size:20px;
    font-weight:800;
    color:var(--text-dark);
    line-height:1.35;
    margin-bottom:14px;
  }

  .modal-text{
    font-size:14px;
    color:var(--text-gray);
    line-height:1.6;
    margin-bottom:22px;
    text-align:left;
  }

  .modal-text strong{color:var(--text-dark);}

  .modal-price{
    background:#f2faf6;
    border:1px solid #d9f0e6;
    border-radius:14px;
    padding:14px;
    margin-bottom:22px;
  }

  .modal-price-old{
    display:block;
    text-decoration:line-through;
    color:#9aa2b5;
    font-size:14px;
    margin-bottom:4px;
  }

  .modal-price-new{
    font-size:20px;
    font-weight:700;
    color:var(--green-dark);
  }

  .modal-price-new strong{
    font-size:38px;
  }

  .modal-btn-accept{
    display:block;
    width:100%;
    background:var(--green);
    color:#fff;
    font-weight:700;
    font-size:15px;
    padding:16px;
    border-radius:12px;
    text-decoration:none;
    margin-bottom:12px;
    transition:background 0.2s ease;
  }

  .modal-btn-accept:hover{background:var(--green-dark);}

  .modal-card .price-list{
    background:var(--bg-light);
    border-radius:12px;
    padding:6px 14px;
  }

  .modal-btn-decline{
    display:block;
    width:100%;
    background:none;
    color:var(--text-gray);
    font-weight:600;
    font-size:13px;
    padding:8px;
    border:none;
    text-align:center;
    text-decoration:underline;
    text-underline-offset:3px;
  }

  @keyframes pulse-soft{
    0%, 100%{
      transform:scale(1);
      box-shadow:0 0 0 0 var(--pulse-color);
    }
    50%{
      transform:scale(1.03);
      box-shadow:0 0 0 10px transparent;
    }
  }

  #upsell-accept,
  #cta-completo{
    animation:pulse-soft 2.2s ease-in-out infinite;
  }

  #upsell-accept{ --pulse-color: rgba(18,184,134,0.4); }
  #cta-completo{ --pulse-color: rgba(18,184,134,0.45); }
