/* Estilos generales */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f7f6;
    color: #333;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .btn, .hero-subtitle strong {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Navbar */
.navbar-custom {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 10px 0;
}

.navbar-brand img {
    max-height: 50px;
}

.btn-whatsapp-nav {
    background: #25D366;
    border: none;
    color: #fff;
}

.btn-whatsapp-nav:hover {
    background: #1da851;
    color: #fff;
}

/* Hero */
.hero {
    background: linear-gradient(45deg, #0a2e52, #0056b3);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.hero .hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.hero .flyer-img {
    max-width: 100%;
    margin-top: 30px;
    transition: transform 0.3s;
}

.hero .flyer-img:hover {
    transform: scale(1.03);
}

.hero .btn-success {
    background: #28a745;
    border: none;
    font-size: 1.1rem;
    padding: 12px 30px;
    font-weight: 600;
}

/* Sección de beneficios */
section.py-5 {
    background: #fafdff;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0056b3;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.card-benefit {
    background: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 25px;
}

.card-benefit:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.card-benefit .section-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.card-benefit h4 {
    font-size: 1.2rem;
    color: #0056b3;
    margin-bottom: 0.5rem;
}

/* Sección de proceso */
#proceso {
    background: linear-gradient(45deg, #6b8eb2, #b7d7fa);
}

.proceso-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.proceso-step .icon-container {
    font-size: 2rem;
    color: #0056b3;
    margin-right: 20px;
    min-width: 40px;
    text-align: center;
}

.proceso-step .text-container h5 {
    font-size: 1.1rem;
    color: #0056b3;
    margin-bottom: 0.25rem;
}

.proceso-step .text-container p {
    margin-bottom: 0;
    color: #454545;
    font-size: 0.95rem;
}

.proceso-step .text-container strong.highlight {
    color: #dc3545;
    font-weight: 700;
}

/* Sección de contacto */
.contact-section {
    background: #e7f0fa;
    color: #343a40;
    padding: 60px 0;
}

.contact-section h2 {
    color: #0056b3;
}

.contact-info a {
    font-size: 1.3rem;
    font-weight: 600;
    color: #343a40;
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.contact-info a i {
    color: #25D366;
}

.contact-info a:hover {
    color: #0056b3;
}

/* Footer */
.footer-custom {
    background: #343a40;
    color: #adb5bd;
    padding: 30px 0;
    font-size: 0.9rem;
}

.footer-custom a {
    color: #fff;
    text-decoration: none;
}

.footer-custom a:hover {
    color: #007bff;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.7rem;
    }
    .hero .hero-subtitle {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.3rem;
    }
    .contact-info a {
        font-size: 1.1rem;
    }
    .proceso-step {
        padding: 12px;
    }
    .proceso-step .icon-container {
        font-size: 1.3rem;
        margin-right: 10px;
    }
}