/* Estilos Globales y Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f7f9; /* Fondo muy suave */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-weight: 700;
    color: #004a8f; /* Azul institucional fuerte */
    margin-bottom: 15px;
}

/* === BOTONES Y LLAMADAS A LA ACCIÓN (CTA) === */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease;
    margin: 15px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp {
    background-color: #25D366; /* Verde WhatsApp */
    color: white;
    font-size: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.fono-whatsapp {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 5px;
}

/* === SECCIÓN HERO (CABECERA) === */
.hero {
    background: linear-gradient(rgba(0, 74, 143, 0.8), rgba(0, 74, 143, 0.9)), url(''); /* Sustituir por imagen real */
    background-size: cover;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    color: white;
    line-height: 1.2;
    margin-bottom: 10px;
}

.highlight-24h {
    color: #FFD700; /* Dorado para el 24 horas */
}

.hero-content .subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.atributos-confianza {
    margin-top: 40px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: inline-block;
    border-radius: 5px;
}

/* === SECCIONES GENERALES === */
section {
    padding: 60px 0;
}

.section-text {
    background-color: white;
    text-align: center;
}

/* === CATÁLOGO DE COBERTURAS (GRID) === */
.section-catalogo {
    background-color: #e6f0ff; /* Azul muy claro para diferenciar */
}

.grid-coberturas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.cobertura-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

.cobertura-card:hover {
    transform: translateY(-5px);
}

.cobertura-card .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

/* === SECCIÓN DE DESTAQUE 24/7 (SECCIÓN 4) === */
.section-destacado {
    background-color: #ff4500; /* Naranja/Rojo fuerte para emergencia/atención */
    color: white;
    text-align: center;
    padding: 80px 0;
}

.section-destacado h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}

.section-destacado .big-text {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.large-btn-whatsapp {
    font-size: 1.5rem;
    padding: 20px 40px;
}

/* === PIE DE PÁGINA (FOOTER) === */
footer {
    background-color: #1c2e40; /* Azul muy oscuro */
    color: #f4f7f9;
    padding: 40px 0 10px;
    font-size: 0.9rem;
}

footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-info, .social-media {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

footer h4 {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

footer a {
    color: #a0c4ff;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: white;
}

.copyright {
    text-align: center;
    border-top: 1px solid #334e68;
    padding-top: 10px;
    margin-top: 20px;
    width: 100%;
}

/* === MEDIA QUERIES (Para Responsividad) === */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 1.8rem;
    }

    .grid-coberturas {
        grid-template-columns: 1fr;
    }

    .footer-info, .social-media {
        text-align: center;
        min-width: 100%;
    }
}
