/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #0a2e36;
    color: #fff;
    line-height: 1.6;
    background-image: url('https://secapsblack.com/wp-content/uploads/2023/11/bg-secaps-black.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

/* Header */
header {
    text-align: center;
    padding: 10px 0;
    color: white;
    background-color: transparent;
}

.alert-banner {
    background-color: #FF6B35;
    color: #fff;
    padding: 12px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

#countdown {
    font-weight: 900;
    color: #ff0000;
    background-color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 10px;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.logo {
    margin: 20px auto;
    max-width: 300px;
}

.logo img {
    width: 100%;
    height: auto;
}

.header-content h2 {
    font-size: 2.5rem;
    color: #00b2a9;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.header-content h1 {
    font-size: 2rem;
    margin: 5px 0 10px;
}

/* Planos */
.plans {
    padding: 40px 0;
    text-align: center;
}

.plans h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
    text-transform: uppercase;
}

.plan-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.plan-card {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 300px;
    transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-card.featured {
    border: 3px solid #00b2a9;
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-image {
    position: relative;
    margin-bottom: 20px;
}

.plan-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.plan-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #00b2a9;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: bold;
}

.plus-highlight {
    position: absolute;
    color: #ffcc00;
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Posicionamento específico para cada kit */
.plan-card:nth-child(1) .plus-highlight {
    top: 48%;
    left: 52%;
    transform: translate(-50%, -50%);
}

.plan-card:nth-child(2) .plus-highlight {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.plan-card:nth-child(3) .plus-highlight {
    top: 48%;
    left: 52%;
    transform: translate(-50%, -50%);
}

.plan-price {
    margin-bottom: 20px;
}

.installment {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00b2a9;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin: 5px 0;
}

.new-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00b2a9;
}

.plan-shipping {
    margin: 15px 0;
    color: #00b2a9;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    background-color: #00b2a9;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: #009990;
}

/* Benefícios */
.benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 0;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 180px;
}

.benefit-item i {
    font-size: 2rem;
    color: #00b2a9;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 0.9rem;
    font-weight: bold;
    color: #fff;
}

/* Garantia */
.guarantee {
    padding: 40px 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    margin: 30px 0;
}

.guarantee h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #00b2a9;
    text-transform: uppercase;
}

.guarantee p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #fff;
}

/* FAQ */
.faq {
    padding: 40px 0;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    margin: 30px 0;
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #00b2a9;
    text-transform: uppercase;
}

.faq-item {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    color: #fff;
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 40px 0;
    text-align: center;
    border-radius: 10px;
    margin-top: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #00b2a9;
    text-decoration: none;
    font-weight: bold;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-links p {
    color: #00b2a9;
    font-weight: bold;
}

.payment-methods {
    margin: 20px 0;
}

.copyright {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ccc;
}

/* Responsividade */
@media (max-width: 768px) {
    .plan-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .plan-card {
        width: 100%;
        max-width: 350px;
        margin-bottom: 20px;
    }
    
    .plan-card.featured {
        transform: none;
        order: -1;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .benefits {
        gap: 15px;
        padding: 20px 10px;
    }
    
    .benefit-item {
        width: 150px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-content h2 {
        font-size: 2rem;
    }
    
    .header-content h1 {
        font-size: 1.5rem;
    }
}