/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

h1, h2 {
    color: #1a365d;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 1.8rem;
    font-weight: 600;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Seção Hero */
.hero {
    background: linear-gradient(135deg, #e6f7ff 0%, #c5e8ff 100%);
    padding: 60px 0;
    text-align: center;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.subtitle {
    font-size: 1.2rem;
    color: #2c5282;
    margin-bottom: 30px;
}

.product-image {
    margin: 30px auto;
    max-width: 300px;
    transition: transform 0.3s ease;
}

.product-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

.product-image:hover {
    transform: scale(1.05);
}

/* Seção de Benefícios */
.benefits {
    padding: 60px 0;
    text-align: center;
}

.benefits-content {
    max-width: 800px;
    margin: 0 auto;
}

.benefits-list {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    background-color: #1a365d;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1rem;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 1.1rem;
    text-align: left;
}

/* Botão CTA */
.cta-container {
    margin: 40px 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.cta-button:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    margin-right: 10px;
    display: flex;
    align-items: center;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
    margin-top: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .product-image {
        max-width: 200px;
    }
    
    .benefits {
        padding: 40px 0;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
}


/* Animação de pulso para o botão CTA */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.cta-button.pulse {
    animation: pulse 1s ease-in-out;
}

