:root {
        --primary: #72a932;
        --secondary: #b0da58;
        --dark: #121212;
        --darker: #000000;
        --light: #f8f9fa;
        --accent: #72a932;
      }

      * {
        box-sizing: border-box;
      }

      body {
        background-color: var(--dark);
        color: var(--light);
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.5;
        padding: 0;
        margin: 0;
        min-height: 100vh;
      }

      .quiz-container {
        background-color: var(--darker);
        border-radius: 0;
        box-shadow: none;
        overflow: hidden;
        max-width: 100%;
        margin: 0 auto;
        border: none;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
      }

      .quiz-header {
        background: linear-gradient(135deg, #004909, #00352b);
        padding: 1.5rem 1rem;
        text-align: center;
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
      }

      .quiz-header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><path d="M30,5 C40,5 50,15 50,25 C50,35 40,45 30,45 C20,45 10,35 10,25 C10,15 20,5 30,5 Z" fill="none" stroke="white" stroke-width="0.5" opacity="0.2"/></svg>');
        background-size: 60px 60px;
        opacity: 0.3;
      }

      .quiz-header h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
      }

      .quiz-header p {
        font-size: 0.9rem;
        margin-bottom: 0;
      }

      .progress-container {
        height: 6px;
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 3px;
        margin: 1rem 0 0;
        overflow: hidden;
      }

      .progress-bar {
        height: 100%;
        background: linear-gradient(to right, var(--primary), var(--secondary));
        transition: width 0.4s ease;
      }

      .quiz-body {
        flex: 1;
        overflow-y: auto;
        padding-bottom: 1rem;
      }

      .question-container {
        display: none;
        padding: 1.5rem 1rem;
      }

      .question-container.active {
        display: block;
        animation: fadeIn 0.5s ease;
      }

      .question {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: var(--secondary);
        line-height: 1.4;
      }

      .options {
        margin-bottom: 1.5rem;
      }

      .option {
        padding: 1rem;
        margin-bottom: 0.8rem;
        border: 1px solid #333;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        background-color: rgba(255, 255, 255, 0.05);
        display: flex;
        align-items: flex-start;
      }

      .option:hover {
        border-color: var(--secondary);
        background-color: rgba(176, 218, 88, 0.1);
      }

      .option.selected {
        border-color: var(--primary);
        background-color: rgba(114, 169, 50, 0.15);
        box-shadow: 0 0 10px rgba(114, 169, 50, 0.2);
      }

      .option-emoji {
        font-size: 1.5rem;
        margin-right: 12px;
        width: 30px;
        text-align: center;
        flex-shrink: 0;
        margin-top: 2px;
      }

      .option-text {
        flex: 1;
      }

      .result-container {
        padding: 1.5rem 1rem;
        animation: fadeIn 0.8s ease;
      }

      .result-icon {
        font-size: 3rem;
        color: var(--primary);
        margin-bottom: 1rem;
      }

      .product-card {
        background: #000;
        border-radius: 10px;
        border: 1px solid rgba(114, 169, 50, 0.3);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        margin-bottom: 1.5rem;
      }

      .product-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(to right, var(--primary), var(--secondary));
      }

      .guarantee-badge {
        position: absolute;
        top: -10px;
        right: 15px;
        background: var(--primary);
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: bold;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      }

      .payment-form {
        background-color: rgba(30, 30, 30, 0.8);
        border-radius: 10px;
        padding: 1.5rem;
        border: 1px solid rgba(114, 169, 50, 0.3);
        margin-bottom: 1.5rem;
      }

      .pix-result {
        background-color: rgba(30, 30, 30, 0.8);
        border-radius: 10px;
        padding: 1.5rem;
        border: 1px solid rgba(114, 169, 50, 0.3);
        margin-bottom: 1.5rem;
        text-align: center;
      }

      .download-screen {
        background-color: rgba(30, 30, 30, 0.8);
        border-radius: 10px;
        padding: 1.5rem;
        border: 1px solid rgba(114, 169, 50, 0.3);
        margin-bottom: 1.5rem;
        animation: fadeIn 0.8s ease;
      }

      .download-item {
        border: 1px solid rgba(114, 169, 50, 0.3);
        transition: all 0.3s ease;
      }

      .download-item:hover {
        border-color: var(--primary);
        background: rgba(114, 169, 50, 0.1) !important;
      }

      .qr-code {
        max-width: 250px;
        margin: 0 auto 1.5rem;
        border: 2px solid var(--primary);
        border-radius: 10px;
        padding: 10px;
        background: white;
      }

      .pix-code {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 1rem;
        margin-bottom: 1rem;
        word-break: break-all;
        font-family: monospace;
        font-size: 0.9rem;
      }

      .calango-icon {
        font-size: 1.5rem;
        margin-right: 8px;
      }

      .calango-master {
        color: var(--primary);
      }

      .calango-evolving {
        color: var(--secondary);
      }

      .calango-stuck {
        color: #888;
      }

      .btn-primary {
        background: linear-gradient(to right, var(--primary), var(--secondary));
        border: none;
        font-weight: 600;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
      }

      .btn-primary:hover {
        background: linear-gradient(to right, var(--secondary), var(--primary));
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(114, 169, 50, 0.4);
      }

      .btn-outline-light:hover {
        border-color: var(--primary);
        color: var(--primary);
      }

      /* Botão Comprar Agora especial */
      .btn-buy-now {
        background: linear-gradient(to right, #22c55e, #16a34a);
        border: none;
        font-weight: bold;
        padding: 1.2rem 2rem;
        font-size: 1.3rem;
        border-radius: 12px;
        animation: pulse-glow 2s infinite;
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
        transition: all 0.3s ease;
        color: white !important;
      }

      .btn-buy-now:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 0 30px rgba(34, 197, 94, 0.7);
        animation: none;
        color: white !important;
      }

      .urgency-badge {
        background: linear-gradient(to right, #ff8800, #ff0000);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: bold;
        display: inline-block;
        animation: pulse 2s infinite;
        margin: 15px 0;
      }

      .discount-tag {
        background: var(--primary);
        color: white;
        padding: 4px 8px;
        border-radius: 5px;
        font-size: 0.75rem;
        font-weight: bold;
        margin-left: 8px;
      }

      .timer {
        font-size: 1rem;
        font-weight: bold;
        color: var(--secondary);
        text-align: center;
        margin: 10px 0;
      }

      .bonus-box {
        background: rgba(114, 169, 50, 0.1);
        border: 1px dashed var(--secondary);
        border-radius: 8px;
        padding: 12px;
        margin: 12px 0;
      }

      .upsell-box {
        background: rgba(30, 30, 30, 0.8);
        border: 2px dashed rgb(255, 166, 0);
        border-radius: 8px;
        padding: 15px;
        margin: 10px 0;
        transition: all 0.3s ease;
      }

      .upsell-box:hover {
        border-color: var(--secondary);
        background: rgba(114, 169, 50, 0.1);
      }

      .upsell-box.selected {
        border-color: var(--primary);
        background: rgba(114, 169, 50, 0.15);
      }

      .navigation-buttons {
        display: flex;
        justify-content: space-between;
        padding: 1rem;
        background: rgba(0, 0, 0, 0.3);
        position: sticky;
        bottom: 0;
        left: 0;
        right: 0;
        border-top: 1px solid #333;
      }

      .testimonials .row {
        margin: 0 -0.5rem;
      }

      .testimonials .col-md-4 {
        padding: 0 0.5rem;
        margin-bottom: 1rem;
      }

      /* WhatsApp Style */
      .whatsapp-container {
        background: #0d1418;
        border-radius: 10px;
        overflow: hidden;
        margin: 1.5rem 0;
        border: 1px solid #2a3942;
        position: relative;
      }

      .whatsapp-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url("https://i.pinimg.com/736x/87/93/b7/8793b7f3009c87baf350de82a5f72423.jpg");
        background-size: cover;
        opacity: 0.1;
        z-index: 1;
      }

      .whatsapp-content {
        position: relative;
        z-index: 2;
      }

      .whatsapp-header {
        background: #1f2c33;
        padding: 1rem;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #2a3942;
      }

      .whatsapp-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #00a884;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        margin-right: 12px;
      }

      .whatsapp-contact {
        flex: 1;
      }

      .whatsapp-contact-name {
        font-weight: bold;
        color: white;
      }

      .whatsapp-contact-status {
        font-size: 0.8rem;
        color: #8696a0;
      }

      .whatsapp-messages {
        padding: 1rem;
        min-height: 300px;
        max-height: 400px;
        overflow-y: auto;
        background: transparent;
      }

      .message {
        margin-bottom: 1rem;
        display: flex;
        animation: fadeInMessage 0.3s ease;
      }

      .message.received {
        justify-content: flex-start;
      }

      .message.sent {
        justify-content: flex-end;
      }

      .message-bubble {
        max-width: 70%;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        position: relative;
        word-wrap: break-word;
      }

      .message.received .message-bubble {
        background: #1f2c33;
        color: #e9edef;
        border-top-left-radius: 2px;
      }

      .message.sent .message-bubble {
        background: #005c4b;
        color: #e9edef;
        border-top-right-radius: 2px;
      }

      .message-time {
        font-size: 0.7rem;
        color: #8696a0;
        text-align: right;
        margin-top: 4px;
      }

      .message.sent .message-time {
        color: #99beb7;
      }

      .whatsapp-typing {
        display: flex;
        align-items: center;
        padding: 0.5rem 1rem;
        background: #1f2c33;
        border-top: 1px solid #2a3942;
      }

      .conversation-note {
        text-align: center;
        margin-top: 1rem;
        color: #b0da58;
        font-weight: 500;
      }

      /* Rodapé de mídia */
      .media-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin: 2rem 0 1rem;
        padding: 1rem;
      }

      .media-text {
        color: #e9edef;
        font-size: 1rem;
        text-align: center;
        margin-bottom: 1rem;
      }

      .media-badges {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        flex-wrap: wrap;
      }

      .media-badge {
        color: white;
        font-weight: bold;
        padding: 0.5rem 1rem;
        border-radius: 5px;
        font-size: 1.1rem;
        text-align: center;
        min-width: 60px;
      }

      .badge-g1 {
        background: #dc2626;
      }

      .badge-r7 {
        background: #2563eb;
      }

      .badge-uol {
        background: #ea580c;
      }

      .badge-epoca {
        background: #991b1b;
      }

      /* Preços mais claros */
      .price-text {
        color: #e9edef !important;
      }

      .installment-text {
        color: #b0da58 !important;
      }

      /* Listas sem bolinhas */
      .benefits-list {
        list-style: none !important;
        padding-left: 0 !important;
      }

      .benefits-list li {
        padding-left: 0 !important;
        margin-bottom: 0.8rem;
      }

      /* FAQ Accordion */
      .faq-accordion .accordion-item {
        background: #1e1e1e;
        border: 1px solid #333;
        margin-bottom: 10px;
        border-radius: 8px;
        overflow: hidden;
      }

      .faq-accordion .accordion-button {
        background: #1e1e1e;
        color: #e9edef;
        font-weight: 600;
        border: none;
        box-shadow: none;
      }

      .faq-accordion .accordion-button:not(.collapsed) {
        background: rgba(114, 169, 50, 0.1);
        color: var(--secondary);
      }

      .faq-accordion .accordion-body {
        background: #1a1a1a;
        color: #cccccc;
      }

      /* Estilos para validação */
      .is-invalid {
        border-color: #dc3545 !important;
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
      }

      .invalid-feedback {
        display: block;
        width: 100%;
        margin-top: 0.25rem;
        font-size: 0.875em;
        color: #dc3545;
      }

      .loading-spinner {
        display: inline-block;
        width: 1rem;
        height: 1rem;
        border: 2px solid transparent;
        border-top: 2px solid currentColor;
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
        margin-right: 0.5rem;
      }

      .payment-status {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin: 30px 0;
        padding: 20px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
      }
      /* SPINNER AZUL */
      .loaderspinner {
        width: 50px;
        height: 50px;
        position: relative;
        transform: rotate(45deg);
        animation: cube-rotate 2s infinite linear;
        flex-shrink: 0;
      }

      .loaderspinner div {
        position: absolute;
        width: 25px;
        height: 25px;
        background-color: #4fc3f7; /* Azul claro */
        animation: cube-scale 2s infinite ease-in-out;
        border-radius: 4px;
        box-shadow: 0 0 10px rgba(79, 195, 247, 0.5);
      }

      .loaderspinner div:nth-child(1) {
        top: 0;
        left: 0;
      }

      .loaderspinner div:nth-child(2) {
        top: 0;
        right: 0;
        animation-delay: 0.2s;
      }

      .loaderspinner div:nth-child(3) {
        bottom: 0;
        right: 0;
        animation-delay: 0.4s;
      }

      .loaderspinner div:nth-child(4) {
        bottom: 0;
        left: 0;
        animation-delay: 0.6s;
      }

      @keyframes cube-rotate {
        0% {
          transform: rotate(45deg);
        }
        100% {
          transform: rotate(405deg);
        }
      }

      @keyframes cube-scale {
        0%,
        100% {
          transform: scale(0.5);
          opacity: 0.7;
        }
        50% {
          transform: scale(1);
          opacity: 1;
        }
      }

      .loading-text {
        font-size: 1.3rem;
        font-weight: 600;
        color: white;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes fadeInMessage {
        from {
          opacity: 0;
          transform: translateY(10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes pulse {
        0% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.05);
        }
        100% {
          transform: scale(1);
        }
      }

      @keyframes pulse-glow {
        0% {
          box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
          transform: scale(1);
        }
        50% {
          box-shadow: 0 0 30px rgba(34, 197, 94, 0.8);
          transform: scale(1.02);
        }
        100% {
          box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
          transform: scale(1);
        }
      }

      @keyframes spin {
        0% {
          transform: rotate(0deg);
        }
        100% {
          transform: rotate(360deg);
        }
      }

      /* Melhorias para mobile */
      .form-control {
        padding: 0.75rem;
        font-size: 1rem;
      }

      h2 {
        font-size: 1.3rem;
      }

      h3 {
        font-size: 1.2rem;
      }

      h4 {
        font-size: 1.1rem;
      }

      .lead {
        font-size: 1rem;
      }

      .sales-section {
        margin-top: 2rem;
      }

      .text-center-mobile {
        text-align: center;
      }

      .purchase-counter {
        color: #b0da58 !important;
        font-weight: 600;
      }

      /* Ajustes para telas maiores */
      @media (min-width: 768px) {
        .quiz-container {
          max-width: 800px;
          margin: 1rem auto;
          border-radius: 15px;
          border: 1px solid rgba(114, 169, 50, 0.3);
          min-height: auto;
        }

        .quiz-header {
          padding: 2rem;
        }

        .quiz-header h1 {
          font-size: 1.8rem;
        }

        .question-container,
        .result-container {
          padding: 2rem;
        }

        .download-screen {
          padding: 2rem;
        }

        .navigation-buttons {
          position: static;
          border-top: none;
          background: transparent;
        }

        .media-footer {
          gap: 2rem;
        }

        .media-badge {
          font-size: 1.3rem;
          padding: 0.75rem 1.5rem;
        }
      }