* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    width: 100%;
}

:root {
    /* Cores principais da landing page */
    --bg-primary: #000000;
    --bg-secondary: #4D0000;
    --bg-tertiary: #3D0312;
    --text-primary: #FFFFFF;
    --text-secondary: #b0b0b0;
    --accent: #BE0000;
    --accent-hover: #73BE00;
    --success: #39FF14;
    --error: #FF0000;
    --border: #BE0000;
    --pix-color: #32BCAD;
    --price-green: #39FF14;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

/* Container do Checkout */
.checkout-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: var(--bg-primary);
}

/* Banner de Urgência */
.checkout-banner {
    background: linear-gradient(180deg, #4D0000 0%, #3D0312 100%);
    padding: 20px;
    box-shadow: 0 0 10px 4px rgb(255 0 0 / 0.5);
}

.banner-content {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.banner-icon {
    font-size: 3rem;
    animation: pulse 2s infinite;
}

.banner-text {
    flex: 1;
    text-align: center;
}

.banner-title {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #FFFFFF;
    text-shadow: 0 0 10px rgb(0 0 0 / 0.5);
}

.banner-subtitle {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.banner-subtitle .strikethrough {
    text-decoration: line-through;
    color: #FF0000;
    opacity: 0.8;
}

.banner-subtitle .highlight-price {
    color: var(--price-green);
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 0 0 10px rgb(57 255 20 / 0.5);
}

/* Timer do Banner */
.banner-timer {
    display: flex;
    gap: 10px;
    align-items: center;
}

.timer-box {
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    min-width: 60px;
    border: 2px solid var(--accent);
}

.timer-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--price-green);
    text-shadow: 0 0 5px rgb(57 255 20 / 0.5);
}

.timer-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.timer-separator {
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: 800;
}

/* Header do Checkout */
.checkout-header {
    background: var(--bg-primary);
    padding: 40px 20px;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.checkout-header h1 {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 0 10px rgb(0 0 0 / 0.3);
}

.secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(190, 0, 0, 0.2);
    padding: 10px 20px;
    border-radius: 20px;
    border: 2px solid var(--accent);
    color: var(--text-primary);
    font-weight: 600;
}

/* Wrapper do Checkout */
.checkout-wrapper {
    max-width: 850px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    gap: 30px;
}

/* Resumo do Produto */
.product-summary {
    background: linear-gradient(180deg, #4D0000 0%, #3D0312 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 10px 4px rgb(255 0 0 / 0.6);
}

.product-card {
    text-align: center;
}

.product-card h2 {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.product-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-price-tag {
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.old-price {
    display: block;
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #FF0000;
    opacity: 0.8;
}

.price {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--price-green);
    text-shadow: 0 0 10px rgb(57 255 20 / 0.5);
}

/* Formulário */
form {
    background: var(--bg-primary);
}

.email-section {
    background: rgba(77, 0, 0, 0.3);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.email-section h3 {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
    color: #FFFFFF;
}

.form-group input {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    border: 3px solid var(--accent);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--price-green);
    box-shadow: 0 0 10px rgb(57 255 20 / 0.3);
}

/* Order Bumps */
.order-bumps {
    margin: 30px 0;
}

.order-bumps h3 {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
    color: var(--accent);
    text-shadow: 0 0 10px rgb(190 0 0 / 0.5);
}

.bump-item {
    background: linear-gradient(180deg, rgba(77, 0, 0, 0.3) 0%, rgba(61, 3, 18, 0.3) 100%);
    border: 2px solid rgba(190, 0, 0, 0.3);
    border-radius: 15px;
    margin-bottom: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bump-item:hover {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgb(190 0 0 / 0.3);
}

.bump-item.selected {
    background: linear-gradient(180deg, rgba(77, 0, 0, 0.6) 0%, rgba(61, 3, 18, 0.6) 100%);
    border-color: var(--price-green);
    box-shadow: 0 0 15px rgb(57 255 20 / 0.3);
}

.bump-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.bump-checkbox input[type="checkbox"] {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 3px;
    accent-color: var(--price-green);
}

.bump-content {
    flex: 1;
}

.bump-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 10px;
}

.bump-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
}

.bump-price {
    text-align: right;
}

.price-original {
    display: block;
    font-size: 0.9rem;
    text-decoration: line-through;
    color: #FF0000;
    opacity: 0.8;
}

.price-discount {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--price-green);
    text-shadow: 0 0 5px rgb(57 255 20 / 0.3);
}

.bump-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Resumo do Pedido */
.order-summary {
    background: rgba(77, 0, 0, 0.3);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--accent);
}

.order-summary h3 {
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.summary-items {
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(190, 0, 0, 0.3);
}

.summary-item:last-child {
    border-bottom: none;
}

.item-info {
    flex: 1;
}

.item-name {
    font-weight: 600;
    color: var(--text-primary);
}

.item-price {
    font-weight: 700;
    color: var(--price-green);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 2px solid var(--accent);
    font-size: 1.5rem;
    font-weight: 800;
}

.summary-total span:last-child {
    color: var(--price-green);
    text-shadow: 0 0 10px rgb(57 255 20 / 0.5);
}

/* Footer do Checkout */
.checkout-footer {
    background: rgba(77, 0, 0, 0.3);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.order-total {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.order-total span:last-child {
    color: var(--price-green);
    text-shadow: 0 0 10px rgb(57 255 20 / 0.5);
}

/* Botão de Submit */
.btn-submit {
    background: var(--accent);
    color: #FFFFFF;
    font-family: "Roboto", Sans-serif;
    font-size: 21px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 27px;
    border: 4px solid transparent;
    border-radius: 20px;
    padding: 20px 40px;
    width: 100%;
    max-width: 500px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px 4px #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.btn-submit:hover:not(:disabled) {
    background: transparent;
    background-image: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%);
    color: #000000;
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 15px 6px #FFFFFF;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #FFFFFF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Segurança do Pagamento */
.payment-security {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Seção de Garantia */
.checkout-guarantee {
    background: linear-gradient(180deg, #4D0000 0%, #3D0312 100%);
    padding: 60px 20px;
    margin-top: 0px;
    box-shadow: 0 0 20px rgb(255 0 0 / 0.3);
    border-radius: 5px;
}

.guarantee-container {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-shield {
    margin-bottom: 30px;
}

.guarantee-shield svg {
    filter: drop-shadow(0 0 10px rgb(76 175 80 / 0.5));
}

.guarantee-title {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 0 0 10px rgb(0 0 0 / 0.5);
}

.highlight-green {
    color: var(--price-green);
    text-shadow: 0 0 10px rgb(57 255 20 / 0.5);
}

.guarantee-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(190, 0, 0, 0.3);
}

.check-icon {
    color: var(--price-green);
    font-size: 1.5rem;
    font-weight: bold;
}

.guarantee-note {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* Seção de Prova Social */
.checkout-social-proof {
    background: var(--bg-primary);
    padding: 60px 20px;
}

.social-proof-container {
    max-width: 850px;
    margin: 0 auto;
}

.social-proof-title {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
    color: #FFFFFF;
    text-shadow: 0 0 10px rgb(0 0 0 / 0.5);
}

.social-proof-title .highlight {
    color: var(--accent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: linear-gradient(180deg, rgba(77, 0, 0, 0.5) 0%, rgba(61, 3, 18, 0.5) 100%);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(190, 0, 0, 0.5);
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgb(255 0 0 / 0.2);
    border-color: var(--accent);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-style: italic;
    line-height: 1.5;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.testimonial-badge {
    display: inline-block;
    background: var(--accent);
    color: #FFFFFF;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--price-green);
    text-shadow: 0 0 10px rgb(57 255 20 / 0.5);
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* Modal de Sucesso */
.success-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background: linear-gradient(180deg, #4D0000 0%, #3D0312 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 3px solid var(--accent);
    box-shadow: 0 0 20px rgb(255 0 0 / 0.5);
}

.success-icon {
    font-size: 4rem;
    color: var(--price-green);
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease;
}

.modal-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.modal-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

#countdown {
    color: var(--price-green);
    font-weight: 800;
    font-size: 1.5rem;
}

/* Animações */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-timer {
        justify-content: center;
    }
    
    .checkout-header h1 {
        font-size: 1.5rem;
    }
    
    .social-proof-title {
        font-size: 1.5rem;
    }
    
    .guarantee-title {
        font-size: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        gap: 30px;
    }
    
    .bump-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .bump-price {
        text-align: left;
    }
    
    .btn-submit {
        font-size: 18px;
        padding: 18px 30px;
    }
}

/* Estilos do Modal PIX - Adaptados ao tema */
.pix-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
}

.pix-modal-content {
    background: linear-gradient(180deg, #4D0000 0%, #3D0312 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    border: 3px solid var(--accent);
    box-shadow: 0 0 20px rgb(255 0 0 / 0.5);
    max-height: 90vh;
    overflow-y: auto;
}

.pix-modal-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 0 0 10px rgb(0 0 0 / 0.5);
}

.qr-code-container {
    margin: 20px 0;
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.qr-code-container img {
    max-width: 250px;
    width: 100%;
}

.pix-code-container {
    margin-top: 20px;
}

.pix-code-container p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.pix-code-box {
    position: relative;
    margin-top: 10px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.pix-code-box:hover {
    transform: scale(1.02);
}

.pix-code-box textarea {
    width: 100%;
    padding: 15px;
    border: 3px solid var(--accent);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-family: monospace;
    resize: none;
    cursor: pointer;
    transition: all 0.3s ease;
    word-break: break-all;
    line-height: 1.4;
}

.pix-code-box:hover textarea {
    border-color: var(--price-green);
    box-shadow: 0 0 10px rgb(57 255 20 / 0.3);
}

.pix-code-box button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 8px 16px;
    background: var(--accent);
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.pix-code-box button:hover {
    background: var(--price-green);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.payment-status {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.payment-status p {
    color: var(--text-primary);
    font-weight: 600;
}

.copy-alert {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: var(--price-green);
    color: #000000;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 3000;
    transition: transform 0.3s ease;
    opacity: 0;
    font-weight: 800;
}

.copy-alert.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

/* Aviso de valor mínimo */
.min-price-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.2);
    color: #FFFFFF;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    border: 2px solid var(--error);
    animation: slideDown 0.3s ease;
}

.min-price-warning svg {
    flex-shrink: 0;
    fill: var(--error);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ajuste para telas pequenas */
@media (max-width: 480px) {
    .timer-box {
        min-width: 50px;
        padding: 8px 10px;
    }
    
    .timer-number {
        font-size: 1.2rem;
    }
    
    .banner-title {
        font-size: 1.2rem;
    }
    
    .highlight-price {
        font-size: 1.5rem;
    }
}