/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Encabezado */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}

header .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    margin-right: 20px;
}

.logo img {
    max-height: 80px;
    max-width: 100%;
}

header h1 {
    color: #2c3e50;
    font-size: 2rem;
}

/* Secciones principales */
main {
    padding: 40px 0;
}

section {
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Sección hero */
.hero {
    background-color: #0a1933;
    color: white;
    text-align: center;
    padding: 60px 30px;
    background-image: linear-gradient(to bottom, #0a1933, #1a3a5f);
    margin-bottom: 40px;
}

.hero .download-btn {
    margin-top: 30px;
}

.hero .btn {
    background-color: white;
    color: #0a1933;
}

.hero .btn:hover {
    background-color: #f0f0f0;
    color: #1a3a5f;
}

.hero h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

/* Botones */
.btn {
    display: inline-block;
    background-color: #1a3a5f;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background-color: #0a1933;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn i {
    margin-right: 8px;
}

.download-btn, .whatsapp-btn {
    text-align: center;
    margin: 25px 0;
}

.whatsapp {
    background-color: #25D366;
}

.whatsapp:hover {
    background-color: #128C7E;
}

.note {
    font-size: 0.9rem;
    color: #7f8c8d;
    text-align: center;
}

/* Footer */
footer {
    background-color: #0a1933;
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Sección de ubicación */
.location-section {
    text-align: center;
    padding: 30px;
}

.map-container {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.map-info {
    background-color: #1a3a5f;
    color: white;
    padding: 20px;
    border-radius: 0 0 8px 8px;
    margin-top: -10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.map-info h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.map-info p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.map-info i {
    margin-right: 10px;
    color: #f0f0f0;
}

/* Clase para texto accesible solo para lectores de pantalla */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.map-container iframe {
    display: block;
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.whatsapp-float i {
    font-size: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 40px 20px;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
}
