/* General Styles */
body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
    background: url('../images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    text-align: center;
}
.background-container {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
}
header {
    text-align: center;
    padding: 20px;
}
#homeButton {
    width: 50px;
    position: absolute;
    top: 20px;
    left: 20px;
}
#titulo-principal {
    font-size: 3em;
    margin: 0;
}


.section-introduccion {
    margin-left: 115px;
    margin-right: 115px;
    text-align: center;
}
.introduccion-texto {
    font-size: 1.3rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.main-section {
    background: rgba(255, 255, 255, 0.96);
    color: #000;
    padding: 20px;
    border-radius: 10px;
}
.main-section h2 {
    text-align: center;
    margin-top: 0;
}
ul {
    list-style-type: none;
}
ul li {
    background: rgba(255, 255, 255, 0);
    margin: 5px 0;
    padding: 10px;
    border-radius: 4px;
}
.atracciones-titulo {
    display: inline-block;
    position: relative;
    color: #000;
    font-family: Georgia, 'Times New Roman', Times, serif, cursive;
    font-size: 3em;
    text-align: center;
}

.atracciones-titulo::after,.atracciones-titulo::before{
    content:'';
    position:absolute;
    width: 120px;
    height:3px;
    background-color: currentColor;
    top: 0.6em;
    transform: scale(1);
    transition:all 0.3s ease-in;
}

.atracciones-titulo:hover::before, .atracciones-titulo:hover::after{
    transform: scale(0);
}

.atracciones-titulo::before{
    left: -140px;
}
.atracciones-titulo::after{
    right: -140px;
}

.banner {
    width: 87%;
    height: 300px; /* Puedes ajustar la altura según tus necesidades */
    background-image: url('AvenidaPaulista.png'); /* Cambia 'ruta_de_la_imagen.jpg' por la ruta de tu imagen */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    font-size: 3em;
    font-family: Arial, sans-serif;
    margin-bottom: 60px;
    margin-left: 100px;
    animation-duration: 3s;
    animation-name: slideinbanner;
}
.banner2 {
    width: 85%;
    height: 300px; /* Puedes ajustar la altura según tus necesidades */
    background-image: url('MuseoArte.png'); /* Cambia 'ruta_de_la_imagen.jpg' por la ruta de tu imagen */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    font-size: 3em;
    font-family: Arial, sans-serif;
    margin-bottom: 60px;
    margin-left: 100px;
    animation-duration: 4s;
    animation-name: slideinbanner;
}
.banner3 {
    width: 85%;
    height: 300px; /* Puedes ajustar la altura según tus necesidades */
    background-image: url('parqueIbirapuera.png'); /* Cambia 'ruta_de_la_imagen.jpg' por la ruta de tu imagen */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    font-size: 3em;
    font-family: Arial, sans-serif;
    margin-bottom: 60px;
    margin-left: 100px;
    animation-duration: 5s;
    animation-name: slideinbanner;
}

@keyframes slideinbanner {
    from {
        margin-left: 0%;
    }
    to {
        margin-right: 100%;
    }
}


.banner-content {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6); /* Fondo semitransparente para hacer el texto más legible */
}
#atracciones-texto {
    font-size: 1.2em;
    font-family: Arial, sans-serif;
    text-align: center;
    flex: 1;
    padding: 0 10px;
    margin-right: 250px;
    margin-left: 250px;
    margin-bottom: 25px;
}
.atracciones-texto-izq {
    font-size: 1.2em;
    font-family: Arial, sans-serif;
    text-align: center;
    flex: 1;
    padding: 0 10px;
    margin-right: 50px;
    margin-left: 250px;
    margin-bottom: 25px;
}
.atracciones-texto-der {
    font-size: 1.2em;
    font-family: Arial, sans-serif;
    text-align: center;
    flex: 1;
    padding: 0 10px;
    margin-right: 250px;
    margin-left: 50px;
    margin-bottom: 25px;
}
.divider {
    width: 2px; /* Ancho de la barra */
    height: 150px; /* Altura de la barra (opcional) */
    background-color: black; /* Color de la barra */
}
.container {
    display: flex; /* Activar el modo de caja flexible */
    align-items: center; /* Centra verticalmente los elementos */
    margin-bottom: 50px;
}
/* Footer Styles */
footer {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    color: #fff;
    position: relative;
}
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-text {
    text-align: center;
    margin-bottom: 20px;
}
.footer-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-form label {
    margin-top: 10px;
}
.footer-form input, .footer-form button {
    margin-top: 5px;
    padding: 10px;
    border: none;
    border-radius: 5px;
}
.footer-form button {
    background-color: #ffffff;
    color: #000000;
    cursor: pointer;
    transition: background-color 0.3s;
}
.footer-form button:hover {
    background-color: #ffffff;
}
.wcag-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
}
