@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --gold: #D4AF37;
    --gold-light: #F4E4C1;
    --gold-dark: #B8941F;
    --white: #FAFAF9;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
    --gray-dark: #374151;
}

body {
    background: #000000;
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Force all textual content to white unless explicitly changed - ensures index/quiz/result show white text */
h1,h2,h3,h4,h5,h6,p,span,a,li,button,input,textarea,label,strong,em {
    color: var(--white) !important;
}

.ritual-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin: 0 auto;
}

.quiz-header-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ==================== HOME PAGE ==================== */
.home-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
}

.bg-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.bg-decoration-1 {
    top: 80px;
    left: 40px;
    width: 200px;
    height: 200px;
    background: #fbbf24;
}

.bg-decoration-2 {
    bottom: 80px;
    right: 40px;
    width: 250px;
    height: 250px;
    background: #f59e0b;
}

.home-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1024px;
    animation: fadeIn 0.8s ease-out;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, #f59e0b, #d97706);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
    margin-bottom: 2rem;
}

.main-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    background: linear-gradient(to right, #d97706, #f59e0b, #b45309);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-text {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: var(--gray-dark);
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-subtext {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--gray);
    max-width: 700px;
    /* reduzido para aproximar o botão do texto acima */
    margin: 0 auto 1.25rem;
    line-height: 1.8;
}

.hero-subtext span {
    font-weight: 600;
    color: #d97706;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(217, 119, 6, 0.2);
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 1.25rem;
}

.cta-button {
    position: relative;
    background: linear-gradient(to right, #f59e0b, #d97706);
    color: white;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(245, 158, 11, 0.2);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: min(90%, 400px);
    height: 50px;
    justify-content: center;
    margin: 1rem auto;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(245, 158, 11, 0.5);
}

@keyframes pulseGreen {
    0% { 
        transform: scale(1);
        box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 8px 15px rgba(16, 185, 129, 0.3);
    }
    100% { 
        transform: scale(1);
        box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

.cta-subtext {
    font-size: 0.875rem;
    color: var(--gray);
    opacity: 0.9;
    text-align: center;
    margin-bottom: 3rem;
}

.icon-3d {
    width: 32px;
    height: 32px;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.feature-card:hover .icon-3d {
    transform: translateY(-2px);
}

.features-grid {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray);
}

/* ==================== QUIZ PAGE ==================== */
.quiz-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(217, 119, 6, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.quiz-header-content {
    max-width: 1024px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

.quiz-header-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.quiz-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
    font-size: 1.5rem;
}

.quiz-title {
    /* Aumentado para ser bem visível no cabeçalho; responsivo via clamp */
    font-size: clamp(1.75rem, 6vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    background: linear-gradient(to right, #d97706, #b45309);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.quiz-progress-text {
    font-size: 0.875rem;
    color: var(--gray);
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: #fef3c7;
    border-radius: 9999px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(to right, #f59e0b, #d97706);
    border-radius: 9999px;
    transition: width 0.5s ease;
}

.quiz-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 150px);
    padding: 2rem 1rem;
}

.question-container {
    width: 100%;
    max-width: 1024px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.question-image {
    position: relative;
    aspect-ratio: 1;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    /* limit size so quiz images are not too large */
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
}

.question-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.question-content {
    animation: slideIn 0.6s ease-out;
}

.question-text {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

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

.option-button {
    width: 100%;
    text-align: left;
    padding: 1.25rem;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.option-button:hover {
    border-color: #fbbf24;
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.2);
    transform: translateX(5px);
}

.option-button.selected {
    background: linear-gradient(to right, #f59e0b, #d97706);
    border-color: #d97706;
    color: white;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}

/* ==================== RESULT PAGE ==================== */
.result-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(217, 119, 6, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.result-header-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.result-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

/* Fundo preto apenas na página de resultados */
.result-page {
    background: #000000;
    color: var(--white);
}

/* Ajustes de contraste para títulos e seções na página de resultado */
.result-page .quiz-title,
.result-page .ritual-title,
.result-page .section-title,
.result-page .section-subtitle,
.result-page .result-description {
    color: var(--white);
}

/* Manter texto escuro dentro dos cards brancos */
.result-page .testimonial-card,
.result-page .benefit-card,
.result-page .pricing-card {
    color: var(--gray-dark);
}

/* Ajustar cabeçalho da página de resultado para ficar consistente sobre o fundo preto */
.result-page .result-header {
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.section {
    margin-bottom: 5rem;
    animation: fadeIn 0.8s ease-out;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.result-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, #f5b608, #f3ba00);
    color: rgb(0, 0, 0);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 10px 25px rgba(255, 166, 1, 0.3);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: var(--gray);
}

.result-image {
    max-width: 900px;
    margin: 0 auto 2rem;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(238, 174, 0, 0.2);
    position: relative;
}

.result-image img {
    width: 100%;
    height: auto;
    display: block;
}

.result-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    text-align: center;
}

.result-image-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.result-description {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: var(--gray);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.result-description span {
    font-weight: 600;
    color: #d97706;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: rgb(0, 0, 0);
    border: 2px solid rgba(217, 119, 6, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon .icon-3d {
    width: 48px;
    height: 48px;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.benefit-card:hover .icon-3d {
    transform: translateY(-2px);
    color: white;
    font-size: 1.75rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.benefit-description {
    color: var(--gray);
    line-height: 1.6;
}

.testimonials-section {
    background: linear-gradient(135deg, #fffbeb, white);
    border-radius: 1.5rem;
    /* reduzido o padding superior para aproximar os depoimentos do título */
    padding: 2rem 2rem;
}

/* Forçar textos importantes em cor escura na página de resultado */
.result-page .benefit-title {
    color: var(--gray-dark) !important;
}

.result-page .testimonials-section .section-subtitle {
    color: var(--gray-dark) !important;
}

/* Regras adicionais e mais específicas para garantir textos escuros onde necessário */
.result-page .benefits-grid .benefit-title,
.result-page .benefit-card .benefit-title {
    color: #111111 !important;
}

.result-page .testimonials-section > .section-header > .section-subtitle,
.result-page .testimonials-section .section-header .section-subtitle {
    color: #111111 !important;
}

/* Garantir que o título da seção de depoimentos fique escuro na página de resultado */
.result-page .testimonials-section .section-title {
    color: #111111 !important;
}

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

.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: #fbbf24;
    font-size: 1.25rem;
}

.social-proof {
    margin: 1.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-proof-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.social-proof:hover .social-proof-image {
    transform: scale(1.02);
}

.testimonial-text {
    color: var(--gray-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.author-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    flex-shrink: 0;
}

/* Testimonial layout adjustments */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    /* reduzido para diminuir o espaçamento antes do primeiro cartão */
    margin-top: 0.5rem;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 6px 20px rgba(16,24,40,0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.testimonial-header {
    width: 100%;
    margin-bottom: 1rem;
}

/* diminuir o espaçamento entre o título da seção e os depoimentos especificamente */
.testimonials-section .section-header {
    margin-bottom: 1rem;
}

.testimonial-header .stars {
    order: 2;
}

.testimonial-author {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.testimonial-author > div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.author-name {
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    color: #111827;
}

.author-role {
    font-size: 12px;
    line-height: 1;
    color: #6B7280;
    margin: 4px 0;
}

/* Posicionar as estrelas alinhadas abaixo da coluna de texto (nome/cargo),
   deslocando-as à direita na largura do avatar + gap. Mantém alinhamento
   natural em telas pequenas. */
.testimonial-header .stars {
    align-self: flex-start;
    margin-left: calc(56px + 0.75rem);
}

@media (max-width: 520px) {
    .testimonial-header .stars {
        margin-left: 0;
    }
}

.stars {
    color: #f59e0b;
    font-size: 12px;
    line-height: 1;
    letter-spacing: -0.5px;
}

.testimonial-text {
    margin-top: 0.5rem;
    /* maior legibilidade dos depoimentos */
    font-size: 1rem; /* 16px */
    line-height: 1.65;
    white-space: pre-line;
    color: var(--gray-dark);
}

@media (max-width: 520px) {
    .testimonial-text {
        font-size: 0.95rem; /* ligeiramente menor em telas pequenas */
        line-height: 1.5;
    }
}



.author-name {
    font-weight: 600;
    color: var(--gray-dark);
}

.author-role {
    font-size: 0.875rem;
    color: var(--gray);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgb(255, 255, 255);
    border: 2px solid rgba(217, 119, 6, 0.2);
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #d97706;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
    color: var(--gray);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-icon {
    transition: transform 0.3s ease;
    font-size: 0.875rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.pricing-section {
    position: relative;
}

.pricing-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fef3c7, #fffbeb);
    border-radius: 1.5rem;
    filter: blur(100px);
    opacity: 0.5;
}

.pricing-card {
    position: relative;
    background: white;
    border: 4px solid #fbbf24;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.limited-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, #ef4444, #dc2626);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
    margin-bottom: 1rem;
}

.pricing-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.old-price {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--gray-light);
    text-decoration: line-through;
}

.new-price {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 800;
    background: linear-gradient(to right, #d97706, #b45309);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-details {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.savings {
    color: #059669;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.features-list {
    max-width: 500px;
    margin: 0 auto 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

.feature-text {
    color: var(--gray-dark);
    font-weight: 500;
}

.buy-button {
    width: min(100%, 400px);
    background: linear-gradient(to right, #10b981, #059669);
    color: white;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 2rem auto 1rem;
    animation: pulseGreen 2s infinite;
}

.buy-button:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.4);
}

.security-text {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray);
}

.final-cta {
    text-align: center;
    padding: 3rem 1rem;
}

.footer {
    border-top: 2px solid rgba(217, 119, 6, 0.2);
    padding: 3rem 1rem 2rem;
}

.footer-content {
    text-align: center;
}

.footer-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

.security-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.security-item {
    text-align: center;
}

.security-icon-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.security-icon-bg {
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    filter: blur(30px);
    opacity: 0.4;
}

.security-icon-main {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.security-icon-main:hover {
    transform: scale(1.05);
}

.security-badge {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.security-label {
    font-weight: 600;
    color: var(--gray-dark);
}

.security-sublabel {
    font-size: 0.875rem;
    color: var(--gray);
}

.copyright {
    color: var(--gray);
    font-size: 0.875rem;
}

/* Responsive */
@media (min-width: 768px) {
    .question-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Make question image use one column and remain compact on wide screens */
@media (min-width: 1024px) {
    .question-image {
        max-width: 480px;
    }
}

@media (max-width: 480px) {
    .question-image {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .security-icons {
        gap: 2rem;
    }
    
    .security-icon-main {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 1.25rem 2rem;
    }
    
    .option-button {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* ==================== DARK THEME OVERRIDES ==================== */
/* Make cards and common containers dark and ensure text is white for legibility */
.benefit-card,
.testimonial-card,
.pricing-card,
.feature-card,
.faq-item,
.pricing-card,
.final-cta,
.home-content,
.question-container,
.question-image {
    /* make these transparent so the page background (black) shows through */
    background: transparent !important;
    color: var(--white) !important;
    border-color: rgba(255,255,255,0.04) !important;
    box-shadow: none !important;
}

/* Header areas should be fully black */
.result-header,
.quiz-header {
    background: #000000 !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    color: var(--white) !important;
}

/* Ensure section titles/subtitles are white */
.section-title,
.section-subtitle,
.result-description,
.benefit-description,
.feature-text,
.faq-question,
.faq-answer,
.quiz-title,
.ritual-title {
    color: var(--white) !important;
}

/* Adjust card-specific text colors */
.testimonial-text,
.author-name,
.author-role,
.price-details,
.security-text,
.feature-text {
    color: var(--white) !important;
}

/* Make option buttons darker to match theme */
.option-button,
.faq-item,
.faq-question {
    background: #071021;
    color: var(--white);
    border-color: rgba(255,255,255,0.04);
}

/* Avatars: slightly lighter so initials are visible */
.author-avatar-placeholder {
    background: #1f2937;
    color: #f3f4f6;
}

/* Keep CTA and buy buttons as-is but ensure their text remains white */
.cta-button,
.buy-button {
    color: #fff !important;
}

/* Small tweak: reduce excessive light backgrounds inside cards */
.social-proof,
.result-image-overlay {
    background: transparent !important;
}

@media (max-width: 520px) {
    /* Slight adjustments for mobile readability */
    .benefit-card,
    .testimonial-card,
    .feature-card {
        padding: 0.85rem;
    }
}

/* Specific adjustments requested by usuário:
   - Benefits section text should be white
   - Testimonial texts should be black (and cards remain light so text is visible)
 */
.benefit-title,
.benefit-description,
.feature-text {
    /* by default these were set to white for dark backgrounds; keep this, but
       when benefit-card is white we override below */
    color: var(--white) !important;
}

.testimonial-card {
    background: #ffffff !important; /* keep card light so black text is readable */
    color: #111827 !important;
    box-shadow: 0 6px 20px rgba(16,24,40,0.05) !important;
}

.testimonial-text {
    color: #111827 !important;
}

.author-name,
.author-role {
    color: #374151 !important;
}

.stars .star {
    color: #f59e0b !important;
}

/* Make benefit cards white so icons and text inside are readable */
.benefit-card {
    background: #ffffff !important;
    color: var(--gray-dark) !important;
    border: 1px solid rgba(217, 119, 6, 0.08) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06) !important;
}

.benefit-card .benefit-title,
.benefit-card .benefit-description {
    color: var(--gray-dark) !important;
}

.energy-alert-section {
  background: linear-gradient(to bottom right, rgb(0, 0, 0), #e08003);
  padding: 60px 20px;
  text-align: center;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 850px;
  box-shadow: 0 4px 18px rgba(255, 255, 255, 0.08);
}

.energy-alert-section .section-text {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 18px;
}

.energy-alert-section .emphasis {
  font-weight: 700;
  font-size: 20px;
  color: #f5e6e6;
}

.energy-alert-section span {
  font-weight: 600;
  color: #fffdfd;
}
