:root {
      --orange: #ff7a00;
      --orange-dark: #e96400;
      --orange-light: #fff0df;
      --dark: #171717;
      --gray: #5f6368;
      --soft-gray: #f6f7f9;
      --white: #ffffff;
      --green: #25d366;
      --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
      --radius: 24px;
      --max: 1180px;
    }

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

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--white);
      color: var(--dark);
      line-height: 1.5;
      overflow-x: hidden;
    }

    html {
      scroll-behavior: smooth;
    }

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

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

    .container {
      width: min(92%, var(--max));
      margin: auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .nav {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      font-size: 20px;
      letter-spacing: -0.5px;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--orange), #ffb000);
      display: grid;
      place-items: center;
      color: var(--white);
      font-size: 22px;
      box-shadow: 0 10px 28px rgba(255, 122, 0, 0.32);
    }

    .nav-links {
      display: flex;
      gap: 24px;
      align-items: center;
      font-size: 14px;
      color: #333;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 0;
      cursor: pointer;
      font-weight: 800;
      border-radius: 999px;
      padding: 15px 24px;
      transition: 0.25s ease;
      font-size: 15px;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      color: var(--white);
      box-shadow: 0 14px 30px rgba(255, 122, 0, 0.32);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(255, 122, 0, 0.42);
    }

    .btn-secondary {
      background: var(--white);
      color: var(--dark);
      border: 1px solid rgba(0, 0, 0, 0.09);
      box-shadow: 0 10px 25px rgba(0,0,0,.06);
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
    }

    .hero {
      position: relative;
      min-height: calc(100vh - 76px);
      display: grid;
      align-items: center;
      background:
        radial-gradient(circle at 85% 10%, rgba(255, 122, 0, .22), transparent 34%),
        radial-gradient(circle at 20% 90%, rgba(255, 122, 0, .13), transparent 34%),
        linear-gradient(180deg, #fffaf4 0%, #ffffff 100%);
      overflow: hidden;
      padding: 70px 0 40px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 50px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--orange-light);
      color: var(--orange-dark);
      border: 1px solid rgba(255, 122, 0, .2);
      padding: 9px 14px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 800;
      margin-bottom: 18px;
    }

    h1 {
      font-size: clamp(40px, 6vw, 74px);
      line-height: .95;
      letter-spacing: -2.8px;
      margin-bottom: 24px;
      max-width: 790px;
    }

    .orange-text {
      color: var(--orange);
    }

    .hero p {
      font-size: 21px;
      color: #3d3d3d;
      max-width: 630px;
      margin-bottom: 28px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }

    .trust-line {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      color: #333;
      font-size: 14px;
      font-weight: 700;
    }

    .trust-pill {
      background: var(--white);
      border: 1px solid rgba(0,0,0,.07);
      padding: 10px 13px;
      border-radius: 999px;
      box-shadow: 0 8px 18px rgba(0,0,0,.05);
    }

    .phone-stage {
      position: relative;
      min-height: 600px;
      display: grid;
      place-items: center;
    }

    .blob {
      position: absolute;
      width: 450px;
      height: 450px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--orange), #ffc15c);
      filter: blur(1px);
      opacity: .92;
      z-index: 0;
    }

    .phone {
      width: 310px;
      border-radius: 42px;
      background: #111;
      padding: 12px;
      position: relative;
      z-index: 2;
      box-shadow: var(--shadow);
      transform: rotate(-3deg);
    }

    .phone-screen {
      background: #fff;
      border-radius: 32px;
      overflow: hidden;
      min-height: 570px;
      border: 1px solid rgba(255,255,255,.2);
    }

    .app-header {
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      color: white;
      padding: 24px 20px;
    }

    .app-header strong {
      display: block;
      font-size: 20px;
      margin-bottom: 5px;
    }

    .app-header span {
      font-size: 13px;
      opacity: .9;
    }

    .food-list {
      padding: 16px;
      display: grid;
      gap: 13px;
    }

    .food-card {
      display: grid;
      grid-template-columns: 70px 1fr;
      gap: 12px;
      padding: 12px;
      border-radius: 18px;
      background: #fafafa;
      border: 1px solid rgba(0,0,0,.05);
    }

    .food-img {
      width: 70px;
      height: 70px;
      border-radius: 16px;
      background: linear-gradient(135deg, #ffd19d, #ff7a00);
      display: grid;
      place-items: center;
      font-size: 30px;
    }

    .food-card h4 {
      font-size: 14px;
      margin-bottom: 4px;
    }

    .food-card p {
      font-size: 11px;
      color: var(--gray);
      margin-bottom: 6px;
    }

    .price {
      color: var(--orange-dark);
      font-weight: 900;
      font-size: 14px;
    }

    .floating-order {
      position: absolute;
      right: 0;
      top: 75px;
      z-index: 4;
      width: 250px;
      background: var(--white);
      padding: 18px;
      border-radius: 22px;
      box-shadow: var(--shadow);
      animation: float 4s ease-in-out infinite;
    }

    .floating-order strong {
      display: block;
      font-size: 16px;
      margin-bottom: 6px;
    }

    .floating-order span {
      color: var(--gray);
      font-size: 13px;
    }

    .floating-money {
      position: absolute;
      left: 0;
      bottom: 85px;
      z-index: 4;
      width: 240px;
      background: #111;
      color: var(--white);
      padding: 18px;
      border-radius: 22px;
      box-shadow: var(--shadow);
      animation: float 4.5s ease-in-out infinite reverse;
    }

    .floating-money strong {
      display: block;
      font-size: 22px;
      color: #82ff9e;
      margin-bottom: 3px;
    }

    .floating-money span {
      font-size: 13px;
      opacity: .85;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    section {
      padding: 90px 0;
    }

    .section-title {
      text-align: center;
      max-width: 820px;
      margin: 0 auto 48px;
    }

    .section-title h2 {
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1.05;
      letter-spacing: -1.8px;
      margin-bottom: 16px;
    }

    .section-title p {
      font-size: 18px;
      color: var(--gray);
    }

    .pain-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
    }

    .pain-card, .benefit-card, .diff-card, .testimonial, .faq-item {
      background: var(--white);
      border: 1px solid rgba(0,0,0,.07);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: 0 12px 32px rgba(0,0,0,.06);
      transition: .25s ease;
    }

    .pain-card:hover, .benefit-card:hover, .diff-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(0,0,0,.1);
    }

    .icon {
      width: 52px;
      height: 52px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: var(--orange-light);
      font-size: 26px;
      margin-bottom: 16px;
    }

    .pain-card h3, .benefit-card h3, .diff-card h3 {
      font-size: 18px;
      margin-bottom: 8px;
    }

    .pain-card p, .benefit-card p, .diff-card p {
      color: var(--gray);
      font-size: 14px;
    }

    .loss-section {
      background: #111;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .loss-section::before {
      content: "";
      position: absolute;
      width: 520px;
      height: 520px;
      background: rgba(255,122,0,.24);
      border-radius: 50%;
      top: -250px;
      right: -160px;
      filter: blur(4px);
    }

    .loss-grid {
      position: relative;
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 40px;
      align-items: center;
    }

    .loss-copy h2 {
      font-size: clamp(34px, 4vw, 58px);
      line-height: 1.05;
      letter-spacing: -1.8px;
      margin-bottom: 18px;
    }

    .loss-copy p {
      color: rgba(255,255,255,.75);
      font-size: 19px;
      margin-bottom: 26px;
    }

    .calculator {
      background: var(--white);
      color: var(--dark);
      border-radius: 32px;
      padding: 34px;
      box-shadow: var(--shadow);
    }

    .calc-row {
      margin-bottom: 22px;
    }

    .calc-row label {
      display: flex;
      justify-content: space-between;
      font-weight: 800;
      margin-bottom: 10px;
      gap: 16px;
    }

    input[type="range"] {
      width: 100%;
      accent-color: var(--orange);
    }

    .result-box {
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      color: white;
      padding: 24px;
      border-radius: 24px;
      text-align: center;
      margin-top: 12px;
    }

    .result-box span {
      display: block;
      font-size: 13px;
      opacity: .9;
      margin-bottom: 8px;
    }

    .result-box strong {
      font-size: clamp(34px, 5vw, 54px);
      line-height: 1;
      display: block;
    }

    .benefits {
      background: var(--soft-gray);
    }

    .benefit-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .steps-wrap {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      position: relative;
    }

    .step {
      background: var(--white);
      border: 1px solid rgba(0,0,0,.07);
      border-radius: 24px;
      padding: 26px 18px;
      text-align: center;
      box-shadow: 0 12px 30px rgba(0,0,0,.06);
    }

    .step-number {
      width: 42px;
      height: 42px;
      margin: 0 auto 14px;
      border-radius: 50%;
      background: var(--orange);
      color: white;
      display: grid;
      place-items: center;
      font-weight: 900;
    }

    .step h3 {
      font-size: 17px;
      margin-bottom: 7px;
    }

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

    .compare {
      background: #fffaf4;
    }

    .compare-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .compare-card {
      border-radius: 32px;
      padding: 34px;
      box-shadow: var(--shadow);
      background: white;
    }

    .compare-card.before {
      border: 1px solid rgba(220,0,0,.14);
    }

    .compare-card.after {
      border: 2px solid rgba(255,122,0,.35);
    }

    .compare-card h3 {
      font-size: 28px;
      margin-bottom: 20px;
    }

    .compare-list {
      display: grid;
      gap: 13px;
      list-style: none;
    }

    .compare-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: #333;
    }

    .diff-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .proof {
      background: var(--soft-gray);
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .stars {
      color: var(--orange);
      font-size: 20px;
      margin-bottom: 14px;
    }

    .testimonial p {
      color: #333;
      margin-bottom: 18px;
      font-size: 15px;
    }

    .person {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--orange), #ffb000);
      display: grid;
      place-items: center;
      color: white;
      font-weight: 900;
    }

    .person strong {
      display: block;
    }

    .person span {
      color: var(--gray);
      font-size: 13px;
    }

    .offer {
      background: linear-gradient(135deg, #111, #252525);
      color: white;
    }

    .offer-card {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 34px;
      padding: 44px;
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 34px;
      align-items: center;
      box-shadow: var(--shadow);
    }

    .offer-card h2 {
      font-size: clamp(34px, 4vw, 58px);
      line-height: 1.05;
      letter-spacing: -1.8px;
      margin-bottom: 15px;
    }

    .offer-card p {
      color: rgba(255,255,255,.75);
      font-size: 18px;
      margin-bottom: 24px;
    }

    .check-list {
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .check-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-weight: 700;
    }

    .price-box {
      background: white;
      color: var(--dark);
      border-radius: 28px;
      padding: 30px;
      text-align: center;
    }

    .price-box small {
      display: block;
      color: var(--gray);
      font-weight: 800;
      margin-bottom: 10px;
    }

    .price-box strong {
      display: block;
      font-size: 42px;
      color: var(--orange-dark);
      margin-bottom: 8px;
    }

    .price-box p {
      color: var(--gray);
      font-size: 14px;
      margin-bottom: 20px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .faq-item h3 {
      font-size: 18px;
      margin-bottom: 9px;
    }

    .faq-item p {
      color: var(--gray);
      font-size: 15px;
    }

    .final-cta {
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      color: white;
      text-align: center;
      padding: 80px 0;
    }

    .final-cta h2 {
      font-size: clamp(36px, 5vw, 64px);
      line-height: 1.02;
      letter-spacing: -2px;
      margin-bottom: 18px;
    }

    .final-cta p {
      font-size: 20px;
      opacity: .92;
      margin-bottom: 28px;
    }

    .final-cta .btn {
      background: white;
      color: var(--orange-dark);
      box-shadow: 0 18px 34px rgba(0,0,0,.18);
    }

    .footer {
      background: #111;
      color: rgba(255,255,255,.75);
      padding: 34px 0;
      font-size: 14px;
    }

    .footer .container {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .whatsapp-float {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 1001;
      background: var(--green);
      color: white;
      width: 62px;
      height: 62px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 30px;
      box-shadow: 0 14px 35px rgba(37, 211, 102, .42);
      transition: .25s ease;
    }

    .whatsapp-float:hover {
      transform: translateY(-4px) scale(1.04);
    }

    .mobile-only {
      display: none;
    }

    @media (max-width: 1000px) {
      .hero-grid, .loss-grid, .offer-card {
        grid-template-columns: 1fr;
      }

      .phone-stage {
        min-height: 560px;
      }

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

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

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

    @media (max-width: 720px) {
      .nav-links {
        display: none;
      }

      .nav {
        height: 68px;
      }

      .hero {
        padding-top: 42px;
      }

      h1 {
        letter-spacing: -1.6px;
      }

      .hero p {
        font-size: 18px;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .phone-stage {
        min-height: 500px;
      }

      .blob {
        width: 330px;
        height: 330px;
      }

      .phone {
        width: 265px;
      }

      .phone-screen {
        min-height: 500px;
      }

      .floating-order, .floating-money {
        display: none;
      }

      section {
        padding: 64px 0;
      }

      .pain-grid, .benefit-grid, .diff-grid, .testimonial-grid, .steps-wrap, .compare-grid, .faq-grid {
        grid-template-columns: 1fr;
      }

      .calculator, .offer-card, .compare-card {
        padding: 24px;
      }

      .footer .container {
        display: block;
        text-align: center;
      }

      .whatsapp-float {
        width: 56px;
        height: 56px;
      }
    }

/* ===== Eyebrow escuro (secao calculadora) ===== */
.eyebrow-dark { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.18); }
.calc-note { color: var(--gray); font-size: 13px; margin-top: 14px; text-align: center; }

/* ===== Credito de rodape (padrao Inside Out) ===== */
.footer-credit a { color: var(--orange); font-weight: 700; }

/* ===== Modal de captura de lead (padrao SkyFit) ===== */
.lead-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(17,17,17,.62); backdrop-filter: blur(4px); display: grid; place-items: center; padding: 18px; }
.lead-overlay[hidden] { display: none; }
.lead-modal { position: relative; width: min(440px, 100%); background: var(--white); border-radius: 28px; padding: 34px 30px 28px; box-shadow: var(--shadow); animation: leadPop .28s ease; }
@keyframes leadPop { from { transform: translateY(16px) scale(.97); opacity: 0; } to { transform: none; opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .lead-modal { animation: none; } }
.lead-modal h3 { font-size: 26px; letter-spacing: -0.8px; margin-bottom: 6px; }
.lead-modal > p { color: var(--gray); font-size: 15px; margin-bottom: 20px; }
.lead-close { position: absolute; top: 14px; right: 18px; border: 0; background: none; font-size: 28px; line-height: 1; color: var(--gray); cursor: pointer; }
.lead-field { margin-bottom: 14px; }
.lead-field label { display: block; font-size: 13px; font-weight: 800; margin-bottom: 6px; }
.lead-field input, .lead-field select { width: 100%; padding: 13px 15px; border-radius: 14px; border: 1px solid rgba(0,0,0,.14); font-size: 15px; font-family: inherit; background: #fff; }
.lead-field input:focus, .lead-field select:focus { outline: 2px solid var(--orange); outline-offset: 1px; border-color: var(--orange); }
.lead-erro { color: #c62828; font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.lead-submit { width: 100%; margin-top: 4px; }
.lead-submit[disabled] { opacity: .6; cursor: wait; }
.lead-privacidade { font-size: 11px; color: var(--gray); text-align: center; margin-top: 12px; }