/* General Body Styles */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: #f4f7fc;
    color: #333;
    line-height: 1.6;
}

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

/* Header */
.payment-header {
    background: #ffffff;
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
}

.payment-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.payment-header .logo {
    max-width: 180px;
    margin-bottom: 0; /* Adjusted for flex alignment */
}

.payment-header h1 {
    font-size: 2rem;
    color: #002868; /* Dark Blue */
    margin: 0;
}

/* Offer Section */
.offer-section {
    background: #002868; /* Dark Blue */
    color: #ffffff;
    text-align: center;
    padding: 40px 20px;
}

.offer-section h2 {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
}

.offer-section .subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
    font-weight: 300;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.urgency-timer {
    display: inline-block;
    background-color: #ffffff;
    padding: 20px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    text-align: center;
}

.urgency-timer span {
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #333; /* Dark text for white background */
    font-weight: 500;
}

.countdown-timer {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #28a745; /* Green color for the timer */
    animation: pulse 1.5s ease-in-out infinite;
}

/* Image Section */
.image-section {
    padding: 30px 0;
    text-align: center;
}

.persuasive-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.benefits-section {
    background-color: #ffffff;
    padding: 40px 20px;
    text-align: center;
}

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

.benefit {
    padding: 20px;
}

.benefit i {
    font-size: 2.5rem;
    color: #bf0a30; /* Red */
    margin-bottom: 15px;
}

.benefit h3 {
    font-size: 1.5rem;
    color: #002868; /* Dark Blue */
    margin-bottom: 10px;
}

/* Pricing Section */
.pricing-section {
    padding: 40px 20px;
    text-align: center;
}

.pricing-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #002868;
}

.price-box {
    background: #ffffff;
    border: 2px solid #002868;
    border-radius: 12px;
    padding: 30px;
    max-width: 450px;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0, 40, 104, 0.1);
}

.price-box .price {
    font-size: 3rem;
    font-weight: 700;
    color: #bf0a30; /* Red */
    margin-bottom: 20px;
}

.price-box ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.price-box ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.price-box ul li i {
    color: #28a745;
    margin-right: 10px;
}

.price-box .value-prop {
    font-style: italic;
    color: #555;
    margin-top: 20px;
}

/* CTA Section */
.cta-section {
    padding: 40px 20px;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: #bf0a30; /* Red */
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    padding: 20px 60px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(191, 10, 48, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(191, 10, 48, 0.5);
}

.cta-button i {
    margin-right: 10px;
}

.cta-button-pagamento {
    font-size: 1.8rem;
    padding: 25px 80px;
    background-color: #28a745; /* Green */
}

.cta-button-pagamento:hover {
    background-color: #218838; /* Darker Green */
}

.trust-seals {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.trust-seal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #555;
}

.payment-icons {
    font-size: 2.5rem;
    color: #a0a0a0;
    display: flex;
    gap: 20px;
}

.price-box .price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #bf0a30; /* Red */
    margin-bottom: 20px;
    border-bottom: 2px solid #002868;
    padding-bottom: 10px;
}

.trust-seal img {
    height: 40px;
}

/* Footer */
.payment-footer {
    background-color: #002868;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}

/* Responsiveness */
@media (max-width: 768px) {
    .payment-header h1 {
        font-size: 1.5rem;
    }

    .offer-section h2 {
        font-size: 2rem;
    }

    .countdown-timer {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .benefits-section .container {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 15px 40px;
        font-size: 1.2rem;
    }
}
