/* Estilos personalizados */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.text-section {
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.text-section:hover {
    transform: translateY(-5px);
}

.carousel-item img {
    object-fit: cover;
    height: 500px;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
}

.social-links a {
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Estilos para las secciones de texto */
.text-section {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.text-section h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

.text-section ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Estilo del navbar */
.navbar {
    padding: 15px 0;
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
}

/* Ajustes responsive */
@media (max-width: 768px) {
    .carousel-item img {
        height: 300px;
    }
    
    .text-section {
        margin-bottom: 20px;
    }
}
