:root {
      --primary: #0ea5e9;
      --primary-dark: #0284c7;
      --primary-glow: rgba(14, 165, 233, 0.25);
      --secondary: #0f172a;
      --accent: #22c55e;
      --accent-soft: rgba(34, 197, 94, 0.12);
      --text: #0f172a;
      --text-light: #64748b;
      --text-muted: #94a3b8;
      --bg: #ffffff;
      --bg-alt: #f8fafc;
      --border: #e2e8f0;
      --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
      --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
      color: var(--text);
      line-height: 1.6;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ----- HEADER ----- */
    .header {
      position: relative;
      z-index: 10;
      padding: 16px 24px;
      background: linear-gradient(160deg, #0f172a 0%, #020617 50%, #0c1222 100%);
    }
    .header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .header-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: inherit;
    }
    .header-logo {
      width: 36px;
      height: 36px;
      object-fit: contain;
    }
    .logo {
      font-weight: 700;
      font-size: 1.25rem;
      color: white;
      letter-spacing: -0.02em;
    }
    /* header-cta removido: CTA principal fica apenas no final da página */

    /* ----- HERO (full viewport) ----- */
    .hero {
      min-height: 100vh;
      min-height: 100dvh;
      background: linear-gradient(160deg, #0f172a 0%, #020617 50%, #0c1222 100%);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.06) 0%, transparent 40%);
      pointer-events: none;
    }
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }
    .hero-icon {
      position: absolute;
      filter: drop-shadow(0 6px 16px rgba(15, 23, 42, 0.6));
      pointer-events: none;
      animation: float 10s ease-in-out infinite;
    }
    .hero-icon--1 {
      width: 56px;
      top: 14%;
      left: 2%;
      opacity: 0.18;
      animation-duration: 9s;
      animation-delay: -1.5s;
    }
    .hero-icon--2 {
      width: 90px;
      top: 26%;
      right: 26%;
      opacity: 0.35;
      animation-duration: 12s;
      animation-delay: -3s;
    }
    .hero-icon--3 {
      width: 52px;
      bottom: 40%;
      left: 10%;
      opacity: 0.22;
      animation-duration: 8s;
      animation-delay: -0.7s;
      animation-direction: alternate;
    }
    .hero-icon--4 {
      width: 76px;
      bottom: 14%;
      right: 38%;
      opacity: 0.3;
      animation-duration: 11s;
      animation-delay: -4.2s;
    }
    .hero-icon--5 {
      width: 44px;
      top: 32%;
      left: 74%;
      opacity: 0.5;
      animation-duration: 7.5s;
      animation-delay: -2.1s;
      animation-direction: alternate-reverse;
    }
    .hero-icon--6 {
      width: 110px;
      top: 6%;
      right: 18%;
      opacity: 0.45;
      animation-duration: 13s;
      animation-delay: -5s;
    }
    .hero-icon--7 {
      width: 40px;
      bottom: 6%;
      right: 10%;
      opacity: 0.7;
      animation-duration: 9.5s;
      animation-delay: -1.2s;
    }
    .hero-icon--8 {
      width: 64px;
      top: 4%;
      left: 14%;
      opacity: 0.28;
      animation-duration: 10.5s;
      animation-delay: -2.7s;
    }
    .hero-icon--9 {
      width: 130px;
      bottom: 10%;
      left: 78%;
      opacity: 0.6;
      animation-duration: 14s;
      animation-delay: -6s;
    }
    @keyframes float {
      0% {
        transform: translateY(0) translateX(0) rotate(0deg);
      }
      25% {
        transform: translateY(-14px) translateX(6px) rotate(4deg);
      }
      50% {
        transform: translateY(0) translateX(0) rotate(-2deg);
      }
      75% {
        transform: translateY(14px) translateX(-6px) rotate(2deg);
      }
      100% {
        transform: translateY(0) translateX(0) rotate(0deg);
      }
    }
    .wave-separator {
      position: absolute;
      bottom: -1px;
      left: 0;
      right: 0;
      line-height: 0;
    }
    .wave-separator svg {
      display: block;
      width: 100%;
      height: auto;
    }
    .hero .container {
      position: relative;
      z-index: 1;
      padding-top: 96px;
      padding-bottom: 80px;
    }
    .hero-layout {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
    }
    .hero-text {
      flex: 1 1 380px;
      min-width: 0;
      text-align: left;
    }
    .hero-media {
      flex: 1 1 320px;
      display: flex;
      justify-content: center;
    }
    .hero-media img {
      max-width: 100%;
      max-height: 680px;
      border-radius: 24px;
      box-shadow: var(--shadow-lg);
      object-fit: cover;
    }
    @media (max-width: 900px) {
      .hero-layout {
        flex-direction: column-reverse;
      }
      .hero-text {
        text-align: left;
      }
    }
    .hero h1 {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 800;
      margin: 0 0 20px;
      letter-spacing: -0.03em;
      line-height: 1.15;
      max-width: 640px;
    }
    .hero .subheadline {
      font-size: clamp(1.1rem, 2.2vw, 1.35rem);
      color: #cbd5e1;
      margin: 0 0 12px;
      font-weight: 500;
    }
    .hero .highlight {
      color: var(--accent);
      font-weight: 700;
    }
    .hero .support-line {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin-bottom: 32px;
    }
    .cta-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--primary);
      color: white;
      border: none;
      padding: 18px 36px;
      font-size: 1.1rem;
      font-weight: 600;
      font-family: inherit;
      border-radius: 10px;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 14px var(--primary-glow);
    }
    .cta-button:hover {
      background: var(--primary-dark);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px var(--primary-glow);
    }
    .hero .no-card {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-top: 16px;
    }
    .hero .scroll-hint {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: var(--text-muted);
      font-size: 0.8rem;
      text-decoration: none;
      transition: color 0.2s;
    }
    .scroll-hint:hover {
      color: #cbd5e1;
    }
    html {
      scroll-behavior: smooth;
    }
    .scroll-hint svg {
      animation: bounce 2s infinite;
    }
    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(6px); }
    }

    /* ----- SECTIONS COMMON ----- */
    .section {
      padding: clamp(4rem, 10vw, 6rem) 0;
    }
    .section-alt {
      background: var(--bg-alt);
    }
    .section-title {
      text-align: center;
      font-size: clamp(1.75rem, 3.5vw, 2.25rem);
      font-weight: 800;
      margin: 0 0 12px;
      letter-spacing: -0.02em;
      color: var(--text);
    }
    .section-subtitle {
      text-align: center;
      color: var(--text-light);
      font-size: 1.1rem;
      max-width: 560px;
      margin: 0 auto 2.5rem;
    }

    /* ----- PROBLEM / SOLUTION LAYOUTS ----- */
    .section-layout {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 40px;
    }
    .section-layout--problem {
      gap: 80px;
      align-items: center;
    }
    .section-layout--solution {
      gap: 150px;
    }
    .section-text {
      flex: 1 1 320px;
      min-width: 0;
      max-width: 520px;
    }
    .section-media {
      flex: 1 1 320px;
      display: flex;
      justify-content: center;
    }
    .section-media img {
      max-width: 100%;
      border-radius: 18px;
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(15, 23, 42, 0.08);
      object-fit: cover;
    }
    @media (max-width: 900px) {
      .section-layout {
        flex-direction: column;
      }
      .section-media {
        order: -1;
      }
      .section-title,
      .section-subtitle {
        text-align: left;
      }
    }
    .problem-cards {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 2rem;
    }
    .problem-card {
      background: white;
      padding: 20px 22px;
      border-radius: 12px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .problem-card:hover {
      box-shadow: var(--shadow-lg);
      border-color: #fecaca;
      transform: translateY(-2px);
    }
    .problem-card .icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: #fef2f2;
      color: #dc2626;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      flex-shrink: 0;
    }
    .problem-content {
      flex: 1;
    }
    .problem-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      margin: 0 0 6px;
      color: var(--text);
    }
    .problem-card p {
      margin: 0;
      font-size: 0.95rem;
      color: var(--text-light);
      text-align: left;
    }

    /* ----- SOLUTION ----- */
    .solution-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-bottom: 3rem;
    }
    .solution-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      background: white;
      padding: 20px 22px;
      border-radius: 12px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }
    .solution-item .check {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      background: var(--accent-soft);
      color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-weight: bold;
    }
    .solution-item span {
      font-weight: 600;
      color: var(--text);
    }
    .flow-block {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      color: white;
      padding: 32px 36px;
      border-radius: 16px;
      text-align: center;
      max-width: 640px;
      margin: 0 auto;
    }
    .flow-block .flow-title {
      font-weight: 700;
      font-size: 1rem;
      color: #94a3b8;
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .flow-steps {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px 8px;
    }
    .flow-step {
      font-weight: 600;
      font-size: 0.95rem;
    }
    .flow-arrow {
      color: #64748b;
      font-size: 1.25rem;
    }
    .flow-block .result {
      margin-top: 16px;
      font-size: 0.9rem;
      color: #cbd5e1;
    }

    /* ----- SEGMENTOS ATENDIDOS (carrossel) ----- */
    .segments-section {
      position: relative;
      background: #020617;
      color: #e5e7eb;
      overflow: hidden;
    }
    .segments-section::before,
    .segments-section::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      height: 46px;
      pointer-events: none;
      z-index: 0;
    }
    .segments-section::before {
      top: -1px;
      background: linear-gradient(to bottom, #ffffff 0%, rgba(2, 6, 23, 0.7) 65%, #020617 100%);
    }
    .segments-section::after {
      bottom: -1px;
      background: linear-gradient(to top, #ffffff 0%, rgba(2, 6, 23, 0.7) 65%, #020617 100%);
    }
    .segments-section .container {
      position: relative;
      z-index: 1;
    }
    .segments-section .section-title {
      color: #f9fafb;
    }
    .segments-section .section-subtitle {
      color: #cbd5e1;
    }
    .segments-carousel {
      margin-top: 2.5rem;
      overflow: hidden;
    }
    .segments-track {
      display: flex;
      gap: 24px;
      animation: segments-scroll 28s linear infinite;
    }
    .segments-track:hover {
      animation-play-state: paused;
    }
    .segment-card {
      position: relative;
      flex: 0 0 32%;
      min-width: 260px;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .segment-card img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      display: block;
      transform: scale(1.03);
    }
    .segment-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(140deg, rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.4));
      pointer-events: none;
    }
    .segment-content {
      position: absolute;
      inset: auto 20px 18px 20px;
      color: #e2e8f0;
      text-align: left;
    }
    .segment-label {
      display: inline-flex;
      padding: 4px 10px;
      font-size: 0.75rem;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.85);
      border: 1px solid rgba(148, 163, 184, 0.7);
      margin-bottom: 8px;
    }
    .segment-title {
      font-size: 1rem;
      font-weight: 700;
      margin: 0 0 4px;
      color: #f9fafb;
    }
    .segment-text {
      font-size: 0.86rem;
      margin: 0;
      color: #cbd5e1;
    }
    @keyframes segments-scroll {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(-50%);
      }
    }
    @media (max-width: 900px) {
      .segment-card {
        flex: 0 0 80%;
      }
      .segment-card img {
        height: 220px;
      }
    }

    /* ----- HOW IT WORKS ----- */
    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 28px;
      margin-top: 2.5rem;
    }
    .steps-visual {
      margin-top: 2.5rem;
      text-align: center;
    }
    .steps-visual img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
    }
    .step {
      text-align: center;
      padding: 0 8px;
    }
    .step-number {
      width: 52px;
      height: 52px;
      margin: 0 auto 20px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      font-weight: 800;
      font-size: 1.25rem;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 20px var(--primary-glow);
    }
    .step h3 {
      font-size: 1.1rem;
      font-weight: 700;
      margin: 0 0 8px;
      color: var(--text);
    }
    .step p {
      margin: 0;
      font-size: 0.95rem;
      color: var(--text-light);
      text-align: center;
    }

    /* ----- PRICING / PLANO ----- */
    .pricing-layout {
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }
    .pricing-box {
      background: white;
      border: 2px solid var(--accent);
      border-radius: 20px;
      padding: 32px 32px 28px;
      text-align: left;
      max-width: 520px;
      margin: 0;
      box-shadow: 0 8px 30px rgba(34, 197, 94, 0.12);
    }
    .pricing-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(34, 197, 94, 0.08);
      color: #16a34a;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 10px;
    }
    .pricing-box h3 {
      font-size: 1.5rem;
      font-weight: 800;
      margin: 0 0 8px;
      color: var(--text);
    }
    .pricing-box .price-desc {
      color: var(--text-light);
      margin: 0 0 10px;
      font-size: 0.98rem;
    }
    .pricing-box .price-highlight {
      font-weight: 700;
      color: var(--accent);
      font-size: 1.05rem;
      margin-bottom: 18px;
    }
    .pricing-list {
      list-style: none;
      padding: 0;
      margin: 0 0 18px;
      font-size: 0.9rem;
      color: var(--text-light);
    }
    .pricing-list li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin-bottom: 6px;
    }
    .pricing-list li::before {
      content: "•";
      color: var(--accent);
      margin-top: 1px;
    }
    .plan-resources {
      margin-top: 20px;
      padding: 16px 18px;
      border-radius: 14px;
      background: #e6f2ff;
      border: 1px solid #a0c4e6;
    }
    .plan-resources-title {
      font-size: 0.9rem;
      font-weight: 600;
      color: #1f2937;
      margin: 0 0 10px;
    }
    .plan-resources-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 10px;
    }
    .plan-resources-item {
      font-size: 0.86rem;
      color: #1e293b;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 8px;
      padding: 8px 10px;
      border: 1px solid rgba(160, 196, 230, 0.6);
    }
    .pricing-box .reassurance {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-top: 10px;
    }
    .pricing-media {
      flex: 1 1 320px;
      display: flex;
      justify-content: center;
    }
    .pricing-media img {
      max-width: 100%;
      border-radius: 24px;
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(15, 23, 42, 0.08);
      object-fit: cover;
    }
    @media (max-width: 900px) {
      .pricing-layout {
        flex-direction: column;
      }
      .pricing-box {
        max-width: 100%;
      }
    }

    /* ----- O QUE VOCÊ PRECISA (cards Kiwify-style) ----- */
    .section-requirements {
      background: var(--bg);
    }
    .requirement-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 28px;
      margin-top: 2.5rem;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }
    .requirement-card {
      background: white;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .requirement-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }
    .requirement-card .card-image {
      width: 100%;
      height: auto;
      display: block;
      vertical-align: top;
    }
    .requirement-card .card-body {
      padding: 22px 20px;
    }
    .requirement-card h3 {
      font-size: 1.15rem;
      font-weight: 700;
      margin: 0 0 8px;
      color: var(--text);
    }
    .requirement-card p {
      margin: 0;
      font-size: 0.9rem;
      color: var(--text-light);
      line-height: 1.5;
    }
    @media (min-width: 1100px) {
      .requirement-cards {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1100px;
      }
    }
    @media (max-width: 900px) {
      .requirement-cards {
        grid-template-columns: 1fr;
        gap: 24px;
      }
    }

    /* ----- CTA FINAL ----- */
    .cta-final {
      position: relative;
      color: white;
      text-align: center;
      min-height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: clamp(6rem, 14vw, 9rem) 24px;
      background-color: #020617;
      background-image:
        linear-gradient(180deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.62) 40%, rgba(15, 23, 42, 0.72) 100%),
        url('/Img/CTA.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    .cta-final .section-title {
      color: white;
      margin-bottom: 12px;
    }
    .cta-final .section-subtitle {
      color: #cbd5e1;
      margin-bottom: 28px;
    }
    .cta-final .cta-button {
      box-shadow: 0 4px 14px var(--primary-glow);
    }

    /* ----- MODAL QUIZ ----- */
    .quiz-modal {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(6px);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 200;
      padding: 16px;
      overflow-y: auto;
    }
    .quiz-modal .modal-content,
    .quiz-modal__content {
      position: relative;
      background: white;
      padding: 28px 24px 32px;
      border-radius: 16px;
      width: 100%;
      max-width: 440px;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: var(--shadow-lg);
    }
    .quiz-modal__close {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 36px;
      height: 36px;
      border: none;
      background: transparent;
      color: var(--text-muted, #64748b);
      font-size: 1.75rem;
      line-height: 1;
      cursor: pointer;
      border-radius: 8px;
      transition: color 0.2s, background 0.2s;
    }
    .quiz-modal__close:hover {
      color: var(--text);
      background: var(--border);
    }
    .quiz-modal__progress {
      font-size: 0.875rem;
      color: var(--text-muted, #64748b);
      margin-bottom: 8px;
    }
    .quiz-modal .progress {
      height: 6px;
      background: var(--border);
      border-radius: 3px;
      margin-bottom: 24px;
      overflow: hidden;
    }
    .quiz-modal .progress-bar {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, var(--primary), var(--primary-dark));
      border-radius: 3px;
      transition: width 0.35s ease;
    }
    .quiz-modal__step {
      min-height: 120px;
    }
    .quiz-modal__progress-wrap {
      margin-bottom: 24px;
    }
    .quiz-intro__title {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 20px;
      line-height: 1.35;
    }
    .quiz-intro__text {
      font-size: 1.05rem;
      color: var(--text);
      line-height: 1.55;
      margin-top: 0;
      margin-bottom: 14px;
    }
    .quiz-intro__text:last-of-type {
      margin-bottom: 0;
    }
    .quiz-intro__highlight {
      font-size: 1rem;
      color: var(--text);
      line-height: 1.55;
      margin-bottom: 26px;
      margin-top: 20px;
      padding: 14px 16px;
      background: rgba(234, 88, 12, 0.08);
      border-radius: 10px;
      border-left: 4px solid #ea580c;
    }
    .quiz-intro__highlight strong {
      color: var(--text);
    }
    .quiz-intro__btn {
      width: 100%;
    }
    .quiz-modal .question {
      font-size: 1.15rem;
      font-weight: 600;
      margin-bottom: 20px;
      color: var(--text);
      line-height: 1.4;
    }
    .quiz-options {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .quiz-modal .option {
      padding: 14px 18px;
      border: 2px solid var(--border);
      border-radius: 12px;
      cursor: pointer;
      font-weight: 500;
      font-size: 0.95rem;
      text-align: left;
      transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    }
    .quiz-modal .option:hover {
      border-color: var(--primary);
      background: rgba(14, 165, 233, 0.06);
      box-shadow: 0 2px 8px rgba(14, 165, 233, 0.12);
    }
    .quiz-result__text {
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 8px;
    }
    .quiz-result__sub {
      font-size: 0.9rem;
      color: var(--text-muted, #64748b);
      margin-bottom: 24px;
    }
    .quiz-modal__step--result .cta-button {
      width: 100%;
    }

.quiz-question-wrap { margin-bottom: 1.5rem; }
.quiz-question-icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.quiz-result__form { display: flex; flex-direction: column; gap: 0.75rem; }
.quiz-result__label { font-size: 0.875rem; font-weight: 600; }
.quiz-result__input { padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: 8px; font-family: inherit; font-size: 1rem; }
.quiz-result__input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2); }
.quiz-result__submit { margin-top: 0.5rem; }
.quiz-result__error { color: #dc2626; font-size: 0.9rem; margin-bottom: 0.5rem; }
.quiz-result__success { text-align: center; padding: 1rem 0; }
.quiz-result__success-icon { font-size: 3rem; margin-bottom: 0.5rem; }
.quiz-result__success-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.25rem; }
.quiz-result__success-sub { color: var(--text-muted, #64748b); margin-bottom: 1rem; }
.quiz-result__success-btn { width: 100%; }

    @media (min-width: 480px) {
      .quiz-modal .modal-content,
      .quiz-modal__content {
        padding: 32px 28px 36px;
      }
      .quiz-modal .question {
        font-size: 1.25rem;
      }
    }

    /* ----- FOOTER ----- */
    .footer {
      background: #0f172a;
      color: #e2e8f0;
      padding: 0;
      border-top: none;
      margin-top: 4rem;
    }
    .footer__inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 48px 24px 24px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
      margin-bottom: 32px;
    }
    @media (min-width: 768px) {
      .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        gap: 40px;
      }
    }
    .footer-brand .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 8px;
    }
    .footer-brand .footer-logo img {
      width: 48px;
      height: 48px;
      object-fit: cover;
      border-radius: 50%;
    }
    .footer-brand .footer-logo-text {
      font-size: 1.5rem;
      font-weight: 800;
      color: white;
    }
    .footer-brand .footer-tagline {
      font-size: 0.9rem;
      color: #94a3b8;
      line-height: 1.5;
      margin-bottom: 16px;
      max-width: 260px;
    }
    .footer-cnpj {
      display: inline-block;
      padding: 8px 12px;
      font-size: 0.8rem;
      color: #cbd5e1;
      border: 1px solid rgba(14, 165, 233, 0.4);
      border-radius: 6px;
      background: rgba(15, 23, 42, 0.6);
    }
    .footer-col h4 {
      font-size: 0.95rem;
      font-weight: 700;
      color: white;
      margin: 0 0 12px;
      padding-bottom: 8px;
      border-bottom: 2px solid var(--primary);
      width: fit-content;
    }
    .footer-col ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-col li { margin-bottom: 8px; }
    .footer-col a {
      color: #94a3b8;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: white; }
    .footer-bottom {
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .footer-copy {
      font-size: 0.85rem;
      color: #64748b;
    }
    .footer-social {
      display: flex;
      gap: 12px;
    }
    .footer-social a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #94a3b8;
      transition: color 0.2s, border-color 0.2s;
    }
    .footer-social a:hover {
      color: white;
      border-color: var(--primary);
    }
    .footer-social svg { width: 18px; height: 18px; }