/* GENERAL */
body {
    background: #fafafa;
    font-family: "Inter", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Merriweather, serif;
}

input:user-invalid {
    border-color: red;
}

.section-padding {
    padding: 6rem 0;
}

.hero {
    background: url("/images/hero-noel.webp");
    padding: 5rem 1.5rem;
    color: white;
    text-align: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4), color-mix(in srgb, #000000 90%, transparent 10%) );
}

.hero > *:not(.hero-overlay) {
    position: relative;
    z-index: 2;
}

.hero-title {
    margin: auto;
    font-weight: 900;
    font-family: 'Inter';
    letter-spacing: 1.1px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-subtitle {
    width: 100%;
    margin: auto;
}

@media (min-width: 768px) {

    .hero {
        background-position-x: 0;
    }

    .hero-title, .hero-subtitle {
        width: 50%;
    }

}


.btn-xmas {
    background: linear-gradient(180deg, #c92b2b 0%, #cc0000 100%);
    border: none;
    box-shadow: 0 6px 14px rgba(214, 0, 0, 0.4);
    transition: all 0.3s ease;
    color: white;
    font-weight: bold;
    border-radius: 15px;
}

.btn-xmas-green {
    background: linear-gradient(180deg, #1ecc4b 0%, #0f8a2c 100%);
    border: none;
    box-shadow: 0 6px 15px rgba(0, 128, 0, 0.45);
    transition: all 0.3s ease;
    color: white;
    font-weight: bold;
    border-radius: 15px;
}

.btn-xmas:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 59, 47, 0.45);
    color: white;
}

.btn-xmas-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 128, 0, 0.65);
    color: white;
}

.video-placeholder {
    background: #e4e4e4;
    height: 220px;
    border-radius: 12px;
}

/* Step icons */
.step-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 22px;
}

.step-wrapper {
    text-align: center;
}

.step-label {
    font-weight: 700;
    font-size: 0.95rem;
    color: #b20000; /* vermelho natalino elegante */
    margin-bottom: 6px;
}

.step-circle {
    width: 74px;
    height: 74px;
    background: #fff;
    border-radius: 50%;
    border: 3px solid rgba(255, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.step-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #444;
}

@media (max-width: 576px) {
    .step-circle {
        width: 62px;
        height: 62px;
        font-size: 1.6rem;
    }

    .step-label {
        font-size: 0.85rem;
    }
}



/* Testimonials */
.reaction-box {
    background: #eaeaea;
    height: 180px;
    border-radius: 20px;
}

/* Charity */
.charity-img {
    background: #eaeaea;
    height: 180px;
    border-radius: 20px;
}

footer {
    padding: 2rem 0;
    margin-top: 3rem;
    background: #f0f0f0;
}


.christmas-timer {
    background: linear-gradient(90deg, #B80000, #D90000, #B80000);
    color: #fff;
    z-index: 1080;
    border-bottom: 3px solid gold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    animation: glowPulse 2s infinite ease-in-out;
}

.timer-inner {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    font-size: 1.1rem;
}

.timer-title {
    color: #FFD700;
    text-shadow: 0 0 6px rgba(255,215,0,0.9);
    font-weight: 700;
    letter-spacing: 1px;
}

.timer-countdown {
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 6px rgba(255,255,255,0.7);
    border-left: 2px solid rgba(255,255,255,0.3);
    padding-left: 10px;
    margin-left: 10px;
}

.timer-icon {
    font-size: 1.4rem;
    animation: santaShake 1s infinite;
}

/* Animação para urgência */
@keyframes glowPulse {
    0% {
        box-shadow: 0 0 8px rgba(255, 0, 0, .7);
    }

    50% {
        box-shadow: 0 0 22px rgba(255, 215, 0, 1);
    }

    100% {
        box-shadow: 0 0 8px rgba(255, 0, 0, .7);
    }
}

/* Shake sutil do ícone do Papai Noel */
@keyframes santaShake {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

/* FAQ Title */
.faq-title {
    font-size: 2rem;
    color: #b30000;
}

/* Accordion Clean Look */
.clean-accordion .accordion-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    margin-bottom: 12px;
    transition: all .2s ease;
}

    .clean-accordion .accordion-item:hover {
        box-shadow: 0 3px 14px rgba(0,0,0,0.08);
    }

/* Buttons */
.clean-accordion .accordion-button {
    font-family: Inter;
    background: #fff;
    font-weight: 600;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #333;
}

    .clean-accordion .accordion-button:not(.collapsed) {
        color: #b30000;
        background: #fff5f5;
        box-shadow: none;
    }

/* Body */
.clean-accordion .accordion-body {
    background: #fff;
    font-size: 0.95rem;
    color: #444;
    padding: 1rem 1.25rem;
}


.snow-divider {
    height: 2px;
    width: 100%;
    background: repeating-linear-gradient( 90deg, #d60000, #d60000 10px, transparent 10px, transparent 20px );
    margin: 1.5rem 0;
    opacity: 0.4;
}


.highlight {
    background: #fff6d7;
    padding: 8px 14px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-block;
}


.xmas-card {
    background: linear-gradient(180deg, #fff 0%, #f7f3e8 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2d5bb;
    position: relative;
}

.xmas-icon {
    font-size: 50px;
    color: #d60000;
}
/* Glassmorphism dourado natalino */
.reviews-glass {
    background: rgba(255, 215, 150, 0.18); /* dourado quente bem suave */
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border-radius: 16px;
    /* Borda dourada semi-transparente */
    border: 1px solid rgba(255, 200, 120, 0.45);
    /* Reflexo sutil de luz dourada no topo */
    /*background-image: linear-gradient( to bottom right, rgba(255, 255, 255, 0.35), rgba(255, 215, 150, 0.12) );*/
    /* Sombra mais quente */
    box-shadow: 0 4px 20px rgba(255, 180, 80, 0.25);
}


.avatar-wrapper {
    position: relative;
    display: inline-block;
}

/* Badge com nome do personagem */
.avatar-badge {
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #FFD48A, #CFA23E);
    color: #4A3200;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
    z-index: 2;
}

.avatars-stack {
    position: relative;
}

    .avatars-stack .avatar-img {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        object-fit: cover;
        border: 1px solid rgba(255, 220, 150, 0.9);
        box-shadow: 0 0 4px rgba(255, 200, 120, 0.4);
        margin-left: -10px;
    }

    .avatars-stack .avatar-img-md {
        width: 80px;
        height: 80px;
        margin-left: 0px;
    }

    .avatars-stack .avatar-img:first-child {
        margin-left: 0;
    }

/* Estrelas douradas */
.stars {
    color: #FFD700;
    font-size: 14px;
    letter-spacing: 2px;
}

.better-text {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.pricing-card {
    max-width: 460px;
    background: #ffffff;
    border-radius: 18px;
    color: #333;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    border: 2px solid #d4af37;
    position: relative;
}

.plan-title {
    font-size: 1.7rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.price-box {
    position: relative;
    z-index: 2;
}

.price-box .old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1rem;
}

    .price-box .new-price {
        font-size: 2.3rem;
        font-weight: 700;
        color: #0d8a2d;
    }

.feature-list li {
    margin: 0.65rem 0;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    color: #333;
}


.feature-list i {
    color: #19b04a;
    margin-right: 8px;
}

.btn-xmas-cta {
    background: linear-gradient(180deg, #ffd43b 0%, #f3c022 100%);
    color: #444;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 0 14px rgba(255, 220, 90, 0.55),
    0 6px 16px rgba(255, 210, 80, 0.45),
    inset 0 0 8px rgba(255, 255, 200, 0.25);

    transition: all .25s ease;
    font-size: 1.1rem;
}

    .btn-xmas-cta:hover {
        box-shadow: 0 0 24px rgba(255, 230, 120, 0.85),
        0 8px 22px rgba(255, 210, 80, 0.65),
        inset 0 0 10px rgba(255, 255, 200, 0.35);
        transform: translateY(-2px);
        color: #222;
    }


.offer-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #ffd866, #ffcc33);
    color: #5a3d00;
    padding: 3px 13px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(255, 200, 80, 0.45);
    z-index: 3;
    border: 1px solid #e6b73a;
}

.secure-title {
    font-weight: 600;
    color: #444;
    font-size: 0.95rem;
}

.payment-icon {
    width: 38px;
    height: auto;
    opacity: 0.95;
}

.stripe-icon {
    height: 24px;
    opacity: 0.95;
}

@media (max-width: 480px) {
    .payment-icon {
        width: 32px;
    }

    .stripe-icon {
        height: 20px;
    }
}
