:root {
    --accent-color: #c00;
    --text-dark: #333;
    --text-light: #6c757d;
}

* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero {
    background: #f8f8f8;
    padding: 2rem;
    text-align: center;
}

.hero h1 {
    color: #c00;
    font-size: 1.8rem;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.hero-product-image,
#form-wrapper-wbvu0vm {
    flex: 1;
    max-width: 500px;
    width: 100%;
}

.hero-product-image img {
    max-width: 100%;
    height: auto;
}

.cta-button {
    background: #c00;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    display: inline-block;
    margin-top: 1rem;
}

.section {
    padding: 2rem;
    max-width: 800px;
    margin: auto;
}

.section-alt {
    background-color: #f8f8f8;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.proof {
    background: #e6f4ea;
    border-left: 5px solid #4caf50;
    padding: 1rem;
    margin-top: 1rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.comparison-table th,
.comparison-table td {
    border: 1px solid #ccc;
    padding: 0.5rem;
    text-align: center;
}

.table-responsive-wrapper {
    overflow-x: auto;
    margin: 1rem 0;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #c00;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.urgency {
    background: #fff3cd;
    color: #856404;
    padding: 1rem;
    text-align: center;
    font-weight: bold;
}

/* Estilos base do Modal */
#form-container-wbvu0vm-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#form-container-wbvu0vm-modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 90%;
    width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

#form-container-wbvu0vm-modal-overlay.show #form-container-wbvu0vm-modal-content {
    transform: scale(1);
    opacity: 1;
}

/* Estilos do Ícone de Sucesso */
.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #7ac142;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #7ac142;
    animation: fill-success .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill-success {
    100% {
        box-shadow: inset 0px 0px 0px 30px #7ac142;
    }
}

/* Estilos do Ícone de Erro */
.error-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #ef4444;
    animation: fill-error .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.error-icon__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #ef4444;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.error-icon__line {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes fill-error {
    100% {
        box-shadow: inset 0px 0px 0px 30px #ef4444;
    }
}

/* Controle de visibilidade dos ícones */
#form-container-wbvu0vm-modal-content .checkmark,
#form-container-wbvu0vm-modal-content .error-icon {
    display: none;
    /* Oculta ambos por padrão */
}

#form-container-wbvu0vm-modal-content.success .checkmark {
    display: block;
    /* Exibe o checkmark se o pai tiver a classe 'success' */
}

#form-container-wbvu0vm-modal-content.error .error-icon {
    display: block;
    /* Exibe o ícone de erro se o pai tiver a classe 'error' */
}

#form-btn-aft5b7t:hover {
    transform: scale(1.05);
}

.hero-price-display {
    text-align: center;
    margin: 16px 0;
}

.hero-old-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 1.5rem;
    margin-right: 10px;
}

.hero-new-price {
    color: #c00;
    font-size: 2.5rem;
    font-weight: bold;
}

.promo-date-hero {
    text-align: center;
    color: #333;
    margin-bottom: 16px;
}

/* Media Query para dispositivos móveis */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }

    .hero,
    .section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Estilos do FAQ */
.faq-container {
    max-width: 768px;
    margin: 2rem auto 0;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    /* Altura suficiente para a resposta */
    padding: 0 1rem 1.5rem;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer p strong {
    color: var(--text-dark);
}

/* Estilos do Rodapé */
footer {
    background-color: #f8f8f8;
    color: var(--text-light);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
}

.footer-more-info {
    margin-bottom: 1.5rem;
}

.footer-more-info a {
    font-size: 0.9rem;
    color: var(--accent-color);
    text-decoration: none;
}

.footer-more-info a:hover {
    text-decoration: underline;
}

.footer-copyright {
    font-size: 0.9rem;
}

/* Estilos para o Guia Visual do Processo de Compra */
.how-to-buy-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-icon {
    background-color: var(--accent-color);
    color: white;
    font-weight: bold;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.step-text p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* --- Estilos para o Pop-up de Prova Social --- */
#social-proof-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    padding: 12px 16px;
    z-index: 1001;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    visibility: hidden;
    max-width: 320px;
}

#social-proof-popup.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

#social-proof-popup img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 12px;
    flex-shrink: 0;
}

.popup-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.popup-content small {
    color: var(--text-light);
}