@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

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

body {
    font-family: "Lato", sans-serif;
    line-height: 1.6;
    background-color: #F7F1EC;
}

/* Header styles */
.navegacion {
    background-color: white;
    width: 100%;
    height: 15vh;
}

.navegacion .logo {
    width: 20%;
    height: 100%;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navegacion .navegacion {
    width: 80%;
    float: left;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    z-index: 1;

}

.navegacion .navegacion ul li {
    list-style: none;
    display: inline;
}

.navegacion .navegacion ul li a {
    text-decoration: none;
    color: white;
    background-color: #00adff;
    padding: 10px;
    padding-right: 30px;
    padding-left: 30px;
}

.container {
    width: 70%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    margin-top: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.map .map-container iframe {
    overflow: hidden;
}

/*Header*/

header {
    
    text-align: center; 
}

header .logo img {
    max-width: 250px; 
}

/*Images*/

.carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 40px;
    position: relative; 
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-container .texto {
    position: absolute;
    width: 100%;
    height: 100%;
    margin-left: 10%;
    display: flex;
    align-items: center;
    color: #FFFFFF;
}

.carousel-container .texto h2 {
    background-color: #555555;
    padding: 1rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.3);
}

.carousel-slide {
    min-width: 100%;
    transition: 0.5s;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
}


.prev, .next {
    position: absolute;  
    top: 50%;
    transform: translateY(-50%); 
    background-color: rgba(0, 0, 0, 0.5); 
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 1;  
}

.prev {
    left: 10px; 
}

.next {
    right: 10px; 
}

/*Content*/

.content {
    padding: 20px;
    font-size: 1.1rem;
    margin-bottom: 40px; 
}

.content p {
    font-size: 20px;
}

.content pre {
    white-space: pre-wrap;
    font-family: "Lato", sans-serif;
    font-size: 1.1rem;
    color: #3A3A3A;
}


.map {
    padding: 20px; 
    margin-top: 40px; 
    text-align: center; /

    
    
}

#map-container iframe {
    border: 0; 
    width: 100%; 
    height: 500px; 
    max-width: 100%; 
    margin-top: 20px; 

    border-radius: 8px;

}

@media screen and (max-width: 768px) {
    .container {
        width: 95%;
    }
}

/* FOOTER */

footer {
    background-color:rgb(246, 245, 245); 
    color: black; 
    padding: 40px 20px; 
    text-align: center;
}

.footer_info {
    width: 100%;
}

.footer_info .row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap; 
    margin: 0 auto;
}

.footer_info .column {
    width: 30%;  
    text-align: center; 
}

.footer_info .column p {
    margin-bottom: 10px; 
}


@media screen and (max-width: 768px) {
    .footer_info .column {
        width: 100%; 
        margin-bottom: 20px;
    }
}

