/* Reset de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    padding: 0;
}

/* Encabezado superior con experiencia */
.header-top {
    background-color: #004b8d;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 16px;
}

/* Header */
header {
    background-color: #004b8d;
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-container .logo img {
    max-width: 200px;
}

.header-container .contact-info p {
    margin-bottom: 5px;
}

.header-container .whatsapp-button {
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Sección de Bienvenida */
section.welcome {
    background-color: #004b8d;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

section.welcome .content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

section.welcome .content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #23c153;
}

/* Sección de Coberturas */
section.coverages {
    background-color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.coverage-item {
    background-color: #f9f9f9;
    margin: 15px 0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.coverage-item h3 {
    font-size: 24px;
    color: #004b8d;
}

/* Redes Sociales */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    font-size: 18px;
    color: #004b8d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #25D366;
}

/* Footer */
footer {
    background-color: #004b8d;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer a {
    color: #25D366;
    text-decoration: none;
    font-weight: bold;
}
