/* Estilos Gerais */
:root {
    --primary-color: #4361ee;
    --secondary-color: #3a0ca3;
    --accent-color: #f72585;
    --warning-color: #ffc107;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .btn {
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Hero Section */
.hero-section {
    background-image: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    padding: 100px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1618477388954-7852f32655ec?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1300&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

/* Gradientes e Fundos */
.bg-gradient {
    background-image: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* Animações */
.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Cards e Elementos */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.offer-box {
    border: 2px solid #f1f1f1;
}

.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Badges e Alertas */
.badge {
    padding: 0.5em 1em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Botões */
.btn {
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-lg {
    padding: 12px 30px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-warning {
    background-color: var(--warning-color);
    border-color: var(--warning-color);
    color: #000;
}

.btn-warning:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .display-4 {
        font-size: 2.2rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .offer-box {
        padding: 20px !important;
    }
}

/* Estilos para Seções Específicas */

/* Seção de Persona */
#persona i.fa-check-circle {
    color: var(--danger-color);
}

/* Seção de Solução */
#solucao i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Seção de Credenciais */
#credenciais img.rounded-circle {
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Seção de Provas */
#provas .star-rating i {
    color: #ffc107;
}

/* Seção de Oferta */
#oferta .section-title {
    color: white;
}

.price-section .price {
    color: var(--primary-color);
}

.guarantee-section img {
    width: 60px;
}

/* Seção de Imaginação */
#imagine i {
    color: var(--primary-color);
}

/* Formulário */
.form-container {
    background-color: var(--light-color);
}

.form-control {
    padding: 12px 15px;
    border-radius: 10px;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.3);
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
} 