/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #F5EFE6;
    color: #4A342E;
    line-height: 1.6;
    min-height: 100vh;
    font-family: "Libertinus Math", system-ui;
    margin-top: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Tipografia */
h1, h2, h3 {
    /* font-family: 'Georgia', serif; */
    color: #4b2813;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.3rem;
}

/* === PÁGINA INICIAL === */

/* Hero Section */
.hero {
    text-align: center;
    padding: 1rem 0;
    margin-bottom: 3rem;
    margin-left: -20px;
    margin-right: -20px;
}

.hero-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-banner:hover {
    transform: translateY(-3px);
}

.banner-image {
    max-width: 95%;
    height: auto;
    max-height: 1500px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(74, 52, 46, 0.2);
    transition: box-shadow 0.3s ease;
}

.hero-banner:hover .banner-image {
    box-shadow: 0 20px 50px rgba(74, 52, 46, 0.3);
}

/* Produtos Section */
.produtos {
    margin-bottom: 3rem;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.produto-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(74, 52, 46, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: -20px;
}

.produto-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(74, 52, 46, 0.15);
}

.produto-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

.produto-image {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.produto-item:hover .produto-image {
    transform: scale(1.05);
}

.produto-item h3 {
    color: #4b2813;
    margin-bottom: 1rem;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 2rem 0;
}

.cta-button {
    color: white;
    border: none;
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 5px 9px 20px #3f2210;

  
    margin-top: -40px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(203, 161, 53, 0.4);
}

.urgency-note {
    margin-top: 1rem;
    font-weight: bold;
    color: #e1410f;
    font-size: 1.1rem;
}

/* === PÁGINA DO QUIZ === */

/* Quiz Header */
.quiz-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(74, 52, 46, 0.1);
}

.quiz-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #E8DCC6;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #CBA135 0%, #B8941F 100%);
    width: 33.33%;
    transition: width 0.5s ease;
    border-radius: 4px;
}

.progress-text {
    font-weight: bold;
    color: #CBA135;
}

/* Quiz Container */
.quiz-container {
    margin-bottom: 2rem;
}

.question-card {
    display: none;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(74, 52, 46, 0.1);
    animation: slideIn 0.5s ease;
}

.question-card.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.question-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.question-card h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #4A342E;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #F5EFE6;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.option:hover {
    background: #E8DCC6;
    transform: translateX(5px);
}

.option input[type="radio"] {
    margin-right: 1rem;
    transform: scale(1.2);
}

.option input[type="radio"]:checked + .option-text {
    font-weight: bold;
    color: #CBA135;
}

.option:has(input[type="radio"]:checked) {
    border-color: #CBA135;
    background: #FFF8E1;
}

.option-text {
    font-size: 1.1rem;
}

/* Quiz Navigation */
.quiz-navigation {
    text-align: center;
    margin-bottom: 2rem;
}

.quiz-btn {
    background: linear-gradient(135deg, #CBA135 0%, #B8941F 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(203, 161, 53, 0.3);
}

.quiz-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

.quiz-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(203, 161, 53, 0.4);
}

/* Quiz Result */
.quiz-result {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(74, 52, 46, 0.1);
}

.result-failed h2 {
    color: #CBA135;
    margin-bottom: 1rem;
}

/* === PÁGINA DE PARABÉNS === */

.congratulations {
    text-align: center;
    padding: 2rem 0;
}

.congratulations-content {
    max-width: 800px;
    margin: 0 auto;
}

.congratulations-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #CBA135;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Banner de Parabéns */
.parabens-banner {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.parabens-banner:hover {
    transform: translateY(-3px);
}

.parabens-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(74, 52, 46, 0.2);
    transition: box-shadow 0.3s ease;
}

.parabens-banner:hover .parabens-image {
    box-shadow: 0 20px 50px rgba(74, 52, 46, 0.3);
}

.congratulations-text {
    margin: 2rem 0;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Kit Preview */
.kit-preview {
    margin: 2rem 0;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(74, 52, 46, 0.1);
}

.kit-preview-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.preview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.preview-icon {
    background: #F5EFE6;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-image {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    border-radius: 5px;
}

.preview-item span {
    font-weight: bold;
    color: #CBA135;
}

/* Checkout Section */
.checkout-section {
    margin: 3rem 0;
}

.preview-container {
    max-width: 700px; /* aumentei um pouco a largura para vídeos horizontais */
    margin: 0 auto;
    position: relative;
    cursor: pointer;
    padding: 0px 35px;
  }
  
  .video-wrapper {
    position: relative;
    border: 4px solid rgb(148, 87, 51);
    border-radius: 20px;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  }
  
  .video-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  
  .fake-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(30, 58, 138, 0.3);
  }
  
  .progress-fill {
    height: 100%;
    width: 37.6%;
    background: #3b82f6;
    transition: width 0.3s ease;
  }
  
  .overlay-som {
    position: absolute;
    inset: 0;
    background-color: rgba(37, 100, 235, 0.315);
    /* backdrop-filter: blur(2px); */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
  }
  
  .overlay-content {
    text-align: center;
    animation: pulse 2s infinite;
  }
  
  .overlay-text {
    font-size: 18px;
    font-weight: bold;
    color: #e0f2fe;
    margin-bottom: 12px;
  }
  
  .overlay-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #3b82f6;
    color: white;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
  }
  
  .overlay-button:hover {
    transform: scale(1.05);
  }
  
  @keyframes pulse {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.7;
    }
  }

.checkout-button {
    background: linear-gradient(135deg, #CBA135 0%, #B8941F 100%);
    color: white;
    border: none;
    padding: 1.5rem 4rem;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(203, 161, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 10px 30px rgba(203, 161, 53, 0.4); }
    to { box-shadow: 0 15px 40px rgba(203, 161, 53, 0.6); }
}

.checkout-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(203, 161, 53, 0.5);
}



/* === RESPONSIVIDADE === */

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .banner-image {
        max-height: 1100px;
        max-width: 90%;
    }
    
    .hero {
        margin-left: -10px;
        margin-right: -10px;
        margin-bottom: 0px;
    }
    
    .produto-icon {
        height: 100px;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
        padding: 0px 20px;
    }
    
    .congratulations-title {
        font-size: 2rem;
    }
    
    .parabens-image {
        max-height: 350px;
    }
    
    .checkout-button {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
    }
    

    
    .kit-preview-items {
        gap: 1rem;
    }
    
    .preview-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .question-card {
        padding: 1.5rem;
    }
    
    .option {
        padding: 0.8rem;
    }
    
    .cta-button,
    .checkout-button {
        width: 100%;
        max-width: 300px;
    }
    
    .hero {
        padding: 1rem 0;
    }
    
    .banner-image {
        max-height: 900px;
        max-width: 85%;
    }
    
    .parabens-image {
        max-height: 300px;
    }
    
    .hero {
        margin-left: -10px;
        margin-right: -10px;
    }
} 