/* General */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

/* Línea superior */
.top-bar {
    background-color: #333;
    color: white;
    font-size: 14px;
    text-align: center;
    padding: 0.1px 0;
    line-height: 0.3;
    z-index: 1000;
    position: fixed;
    width: 100%;
    top: 0;
}

/* Header */
header {
    background: linear-gradient(rgba(51, 51, 51, 0.8), rgba(51, 51, 51, 0));
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 30px;
    z-index: 999;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.logo-container img {
    height: 50px;
    max-width: 100%;
    object-fit: contain;
    margin-left: 20px;
}

/* Menú */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    margin-right: 30px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a.active {
    color: #ffcc80;
}

nav ul li a:hover {
    color: #ffcc80;
}

/* Sección de Cobertura */
#cobertura {
    padding: 80px 20px 20px;
    text-align: center;
    background-color: #f7f7f7;
}

#cobertura h1 {
    font-size: 2.5rem;
    color: #f57c00;
    margin-bottom: 20px;
}

#cobertura p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

#map {
    width: 100%;
    height: 500px;
    border: 2px solid #f57c00;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Sectores de Cobertura */
#sectores {
    padding: 40px 20px;
    background-color: #f7f7f7;
    text-align: center;
}

#sectores h2 {
    font-size: 2.5rem;
    color: #f57c00;
    margin-bottom: 20px;
}

.sectores-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.sector {
    background-color: #ffcc80;
    color: #333;
    padding: 20px;
    border: 2px solid #f57c00;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sector:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(245, 124, 0, 0.5);
}

/* Frase y botón */
#consulta-cobertura {
    padding: 20px;
    background-color: #f7f7f7;
    text-align: center;
}

#consulta-cobertura h3 {
    font-size: 1.8rem;
    color: #f57c00;
    margin-bottom: 10px;
}

#consulta-cobertura p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
}

#consulta-cobertura .whatsapp-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #25d366;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#consulta-cobertura .whatsapp-button:hover {
    background-color: #1ebe57;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
}
