/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

}

/* Header de alerta com efeitos de urgência e animações */
.alert-header {
    background-color: #ffffff;
    /* Fundo branco */
    color: #D72638;
    /* Texto vermelho */
    padding: 15px 0;
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(215, 38, 56, 0.4);
    border: 2px solid #ff1744;
    /* Animações removidas do header */
}

/* Animações de gradiente, pulsação e brilho removidas do header */

/* Efeito de ondas no fundo removido do header */
.alert-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    /* animation: wave 2s linear infinite; */
    /* Animação de onda removida */
}

/* @keyframes wave removido */

.alert-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.alert-content h3 {
    font-size: 26px;
    font-weight: bolder;
}

.alert-icon {
    font-size: 30px;
    color: #D72638;
    /* Ícone vermelho */
    animation: shake 0.5s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 5px rgba(215, 38, 56, 0.8));
    /* Sombra para destacar */
}

/* Animações de salto e rotação removidas do ícone */

/* Texto com efeito de tremulação */
.alert-text {
    color: #D72638;
    /* Texto vermelho */
    animation: shake 1.2s ease-in-out infinite alternate;
    text-shadow:
        0 0 5px rgba(215, 38, 56, 0.6),
        0 0 10px rgba(215, 38, 56, 0.4),
        0 0 15px rgba(215, 38, 56, 0.2);
}

@keyframes shake {
    0% {
        transform: scale(0.9);
    }

    25% {
        transform: scale(0.95);
    }

    50% {
        transform: scale(0.9);
    }

    75% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(0.9);
    }
}

/* Efeito hover para aumentar a urgência */
.alert-header:hover {
    /* animation-duration: 1s, 0.8s, 0.5s; */
    /* Animação de hover removida */
    transform: scale(1.01);
    cursor: pointer;
}

/* Versão responsiva */
@media (max-width: 768px) {
    .alert-header {
        font-size: 18px;
        padding: 12px 0;
    }

    .alert-icon {
        font-size: 20px;
    }

    .alert-content {
        gap: 10px;
        padding: 0 15px;
    }
}

/* Classe adicional para urgência máxima */
.alert-header.urgent-max {
    /* animation-duration: 1s, 0.5s, 0.3s; */
    /* Animação de urgência máxima removida */
    background-color: #ffffff;
    /* Fundo branco */
    border-color: #ff1744;
}

.alert-header.urgent-max .alert-icon {
    animation-duration: 0.3s, 1s;
    /* Animação de urgência máxima removida */
}

.alert-header.urgent-max .alert-text {
    animation-duration: 0.2s;
}





/* Cabeçalho principal */
.main-header {
    background-color: #e8e8e8;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 32px;
    color: #4a90e2;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-weight: bold;
    font-size: 18px;
    color: #333;
}

.brand-subtitle {
    font-size: 12px;
    color: #666;
    letter-spacing: 1px;
}

.progress-container {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 15px;
    /* Bordas mais arredondadas */
    height: 30px;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
    /* Sombra interna sutil */
}

.progress-bar {
    width: 80%;
    height: 100%;
    background: linear-gradient(to right, #4CAF50, #8BC34A);
    /* Gradiente de cor */
    border-radius: 15px;
    /* Bordas mais arredondadas */
    animation: fillProgress 2s ease-out forwards;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /* Sombra externa */
    transition: width 0.5s ease-in-out;
    /* Transição suave para a largura */
}

@keyframes fillProgress {
    from {
        width: 0%;
    }

    to {
        width: 80%;
    }
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 1em;
    /* Aumentar um pouco o tamanho da fonte */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    /* Sombra no texto */
}

.order-timer {
    text-align: center;
    color: #333;
    font-size: 24px;
}

.timer {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 28px;
    font-weight: bold;
    margin-top: 5px;
    color: #D72638;
}

.timer-label {
    font-size: 12px;
    color: #666;
}

.nav-steps {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.nav-steps img {
    width: 20px;
}

.step {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 500;
    color: #f6f6f6;
}

.step.completed {
    background-color: #ddd;
    color: #666;
}

.step.active {
    background-color: #7cb342;
    color: white;
}

/* Conteúdo principal */
.main-content {
    background-color: white;

}

/* Seção hero */
.hero-section {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #CF272A;
    width: 100%;
    height: 100%;
    padding: 40px 20px;
}

.main-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #f6f6f6;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #CF272A;
    font-weight: bold;
}

/* Seção de introdução */
.intro-section {
    margin-bottom: 60px;
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
}

.intro-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.intro-text p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.intro-text blockquote {
    background-color: #f8f9fa;
    border-left: 4px solid #D72638;
    padding: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #555;
}

.intro-image img {
    width: 500px;
    border-radius: 10px;
    margin-top: 80px;
}

/* Seção de benefícios */
.benefits-section {
    margin-bottom: 60px;
    text-align: center;
}

.benefits-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    color: #ff6b35;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card img {
    width: 100%;
    height: 320px;
    border-radius: 20px;
    margin-top: 20px;
}


/* Seção da oferta */
.offer-section {
    margin-bottom: 60px;
}

.offer-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.offer-intro-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
}

.offer-image img {
    margin: 0 auto;
    width: 700px;
}

.offer-text p {
    margin: 30px auto;
    font-size: 16px;
    line-height: 1.6;
}

.highlight-box {
    background: linear-gradient(135deg, #8B1E2E, #F85F73);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.highlight-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.highlight-box ul {
    list-style: none;
    padding-left: 0;
}

.highlight-box li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 18px;
}

.highlight-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: bold;
}

/* Seção de resultados */
.results-section {
    margin-bottom: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.results-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.results-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

.results-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

.warning-box {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}

.warning-box p {
    color: #856404;
    font-weight: 500;
    margin: 0;
}

/* Seção de urgência */
.urgency-section {
    margin-bottom: 60px;
    text-align: center;
}

.urgency-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
}

.stock-warning {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid #ff6b35;
}

/* Seção de preços */
.pricing-section {
    margin-bottom: 60px;
}

.pricing-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-intro p {
    margin-bottom: 15px;
    font-size: 16px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 20px;
}

.pricing-card {
    background-color: white;
    border: 2px solid #ddd;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #ff6b35;
    transform: scale(1.05);
}

.pricing-header {
    background: linear-gradient(135deg, #8B1E2E, #F85F73);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.pricing-header h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.varant-img {
    position: absolute;
    top: -10px;
    left: 15px;
}

.save-badge {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.pricing-content {
    display: flex;
    flex-direction: column;
    padding: 10px;
    text-align: center;
    position: relative;
}

.bottle2-image {
    width: 250px;
}

.middle-container-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
}

.bottom-container-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 10px;
}

.price-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 10px;
}


.original-price {
    text-decoration: line-through;
    color: #999;
    margin-bottom: 25px;
}

.upgrade-btn {
    background: linear-gradient(135deg, rgb(40, 167, 69), rgb(32, 201, 151));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 15px;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.upgrade-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.shipping-info {
    color: #666;
    font-size: 14px;
    margin: 0 auto;
}
.shipping-info-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding: 5px 0;
}
.guarantee-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding: 5px 0;
}

/* Seção de garantia */
.guarantee-section {
    margin-bottom: 60px;
    text-align: center;
}

.guarantee-section h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #333;
}

.guarantee-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.guarantee-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #d2d2d2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.257);
}

.guarantee-item h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.guarantee-text {
    background-color: white;
    border: 1px solid #dedede;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.384);
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
}

.guarantee-text h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.guarantee-text p {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}


/* Seção de bônus */
.bonus-section {
    margin-bottom: 60px;
}

.bonus-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.bonus-content {
    background: linear-gradient(135deg, #8B1E2E, #F85F73);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
}

.bonus-content h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-align: center;
}

.bonus-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 18px;
}

.bonus-details {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

/* Seção final de urgência */
.final-urgency {
    margin-bottom: 60px;
    text-align: center;
}

.urgency-questions h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
}

.urgency-questions ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.urgency-questions li {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #D72638;
    font-weight: 500;
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Botões finais */
.final-buttons {
    margin-bottom: 60px;
    text-align: center;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.final-upgrade-btn {
    background: linear-gradient(135deg, #8B1E2E, #F85F73);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 250px;
}

.final-upgrade-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
}

.decline-option {
    margin-top: 40px;
}

.decline-option p {
    margin-bottom: 20px;
    color: #666;
}

.decline-btn {
    background-color: transparent;
    color: #666;
    border: 2px solid #ddd;
    padding: 10px 30px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.decline-btn:hover {
    background-color: #f8f9fa;
    border-color: #999;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 40px 0;
}

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

.footer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ff6b35;
}

.footer-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info {
    margin-top: 30px;
}

.contact-info h4 {
    color: #ff6b35;
    margin-bottom: 15px;
}

/* Responsividade */
@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        text-align: center;
    }

    .intro-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .main-title {
        font-size: 1.8rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .button-container {
        flex-direction: column;
        align-items: center;
    }

    .final-upgrade-btn {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }

    .timer {
        font-size: 24px;
    }

    .nav-steps {
        flex-wrap: wrap;
        justify-content: center;
        width: 120%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .main-title {
        font-size: 1.5rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .highlight-box,
    .bonus-content {
        padding: 20px;
    }

    .price {
        font-size: 2.5rem;
    }
}

/* Animações */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.timer {
    animation: pulse 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card,
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Estados de hover melhorados */
.upgrade-btn:active,
.final-upgrade-btn:active {
    transform: translateY(0);
}

.benefit-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Melhorias de acessibilidade */
.upgrade-btn:focus,
.final-upgrade-btn:focus,
.decline-btn:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Efeitos de scroll suave */
html {
    scroll-behavior: smooth;
}

/* ===========================
   Responsivo (aplique no final do CSS)
   =========================== */

/* Base para telas pequenas */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Empilha hero + intro e centraliza */
    .hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
        margin-bottom: 32px;
    }

    .main-title {
        font-size: 1.75rem;
        /* antes: 2.5rem */
        line-height: 1.25;
        margin-bottom: 12px;
    }

    /* Garante que o conteúdo introdutório vire 1 coluna */
    .intro-content {
        grid-template-columns: 1fr !important;
        gap: 20px;
        text-align: center;
    }

    /* Imagens fluidas e sem quebra */
    .intro-image img,
    .offer-image img,
    .results-image {
        width: 100% !important;
        max-width: 100%;
        height: auto;
        margin: 16px auto 0;
        border-radius: 10px;
        display: block;
    }

    /* Seções lado a lado viram coluna */
    .offer-intro-box,
    .results-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    /* Grids em 1 coluna */
    .benefits-grid,
    .pricing-cards,
    .guarantee-benefits {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    /* Cartões e sombras mais leves no mobile */
    .benefit-card,
    .pricing-card,
    .guarantee-item {

        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    }

    /* Botões 100% largura */
    .button-container {
        flex-direction: column;
        gap: 14px;
        align-items: stretch;
    }

    .final-upgrade-btn,
    .upgrade-btn,
    .decline-btn {
        width: 100%;
        max-width: none;
        min-width: 0;
    }

    /* Tipos menores e espaçamento mais compacto */
    .pricing-section h2,
    .benefits-section h2,
    .offer-section h2,
    .urgency-section h2,
    .bonus-section h2,
    .guarantee-section h2,
    .results-section h2 {
        font-size: 1.35rem;
        margin-bottom: 18px;
    }

    .price {
        font-size: 2.2rem;
    }

    .price-description {
        font-size: 1rem;
    }

    /* Navegação de passos quebra bem */
    .nav-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .step {
        padding: 6px 12px;
        font-size: 15px;
    }

    /* Timer menor e sem pulso para evitar jank */
    .timer {
        font-size: 20px;
        animation: none;
    }

    /* Desativa transforms que criam "atraso" no scroll em mobile */
    .benefit-card,
    .pricing-card,
    .final-upgrade-btn,
    .upgrade-btn {
        transform: none !important;
    }

    /* Espaços mais contidos */
    .main-content,
    .benefits-section,
    .offer-section,
    .results-section,
    .urgency-section,
    .pricing-section,
    .guarantee-section,
    .bonus-section,
    .final-urgency,
    .final-buttons {
        margin-bottom: 36px;
        padding-left: 0;
        padding-right: 0;
    }
}

/* Telas muito pequenas */
@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .main-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .highlight-box,
    .bonus-content {
        padding: 18px;
    }

    .price {
        font-size: 2rem;
    }

    /* Evita efeito hover pesado em telas touch */
    .pricing-card:hover,
    .benefit-card:hover,
    .final-upgrade-btn:hover,
    .upgrade-btn:hover {
        transform: none;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    }
}