@font-face{
    font-family: 'Avigea';
    src: url(/avigea/Avigea.woff2) format('woff2'),
         url(/avigea/Avigea.woff) format('woff'),
         url(/avigea/Avigea.ttf) format('truetype'),
         url(/avigea/Avigea.otf) format('opentype');
    font-weight: normal;
    font-style: normal;
}
@keyframes float {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}
*{
    margin: 0;
}
body{
    background-color: black;
    font-family: 'Avigea', sans-serif;
}
/* Banner de cookies */
.cookie-banner {
    position: fixed;
    top: 50% ;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    color: #000000;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    z-index: 9999;
    display: none;
    animation: fadeIn 0.4s ease-out;
    max-width: 600px;
    width: 90%;
}
.cookie-banner.show {
    display: block;
}
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}
.cookie-content {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}
.cookie-text {
    width: 100%;
}
.cookie-text p {
    margin-bottom: 8px;
    line-height: 1.5;
}
.cookie-text a {
    color: #000000;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-aceptar {
    background-color: #B30504;
    color: white;
}
.btn-aceptar:hover {
    background-color: #8B0403;
}
.btn-rechazar {
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
}
.btn-rechazar:hover {
    background-color: rgba(0, 0, 0, 0.05);
}
.menu{
    height: 80px;
    width: 100vw;
    display: flex;
    justify-content:space-between;
    align-items: center;
    position: relative;
}
.menu .logo{
    margin-left: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    margin-top: 13px;
}
.menu .menu2{
    margin-top: 5px;
    margin-right: 50px;
    display: flex;
}
.menu .menu2 a{
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 20px;
    letter-spacing: 2px ;
}
.menu .menu2 a:hover{
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-weight: 900;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
    z-index: 1000;
}
.section1{
    position: absolute;
    height: 78vh ;
    width: 100;
    background-image: url(/img/Inicio_I.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
.section1 .LaFlamenca{
    position: relative;
    margin-top: 90px;
    height: 30%;
    width: 100%;
    background-image: url(/img/Logo_I.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: 
        drop-shadow(0 0 25px rgba(255, 255, 255, 0.5))
        drop-shadow(0 0 35px rgba(255, 255, 255, 0.3));
    
}
.section1 .LogoRojo{
    position: absolute;
    top: 30%;
    left: 44%;
    height: 450px;
    width: 600px;
    background-image: url(/img/Logo_II_rojo.svg);
    background-repeat: no-repeat;
    background-size: cover;
    animation: float 3s ease-in-out infinite;
}
.section1 p{
    color: white;
    font-size: 25px;
    text-align: center;
    margin-top: 150px;
    margin-bottom: 50px;
    letter-spacing: 1px ;
    padding: 0px 20px;
}
.section1 a{
    background-color: #B30504;
    color: white;
    padding: 15px 40px;
    border-radius: 10px;
    text-decoration: none;
    border: 2px solid #c40000;
}
.section1 a:hover{
    background-color: #A10101;
    color: white;
    font-weight: 900;
    border: 2px solid white;
}
.banner-container {
    position: relative;
    height: 78vh;
    width: 100;
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 4px;
    border: solid 1px #B30504;
}
.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
}
.banner-slide.active {
    opacity: 1;
    visibility: visible;
}
/* Estilos específicos del banner2 */
.banner2 {
    background-image: url(/img/banner2.jpg);
}
.banner2 .boton_madrid{
  height : 100% ;
  width: auto ;
  display: flex ;
  justify-content: center ;
  align-items: center ;
  margin-top: 160px ;
}
/* Indicadores */
.indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(179, 5, 4, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}
.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}
.dot.active {
    background: #B30504;
    border-color: white;
}
.section2{
    height: 400px;
    width: 100;
    margin-top: 70px;
    margin-left: 50px;
    margin-right: 50px;
    color: white;
    text-align: center;
    letter-spacing: 2px;
}
.section2 .titulo h4{
    margin-left: 90px;
    letter-spacing: 3px;
}
.section2 .titulo img{
    margin-left: 60px;
}
.section2 .entradas{
    height: 280px;
    width: 100;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
    display: flex;
    justify-content: space-around ;
}
.section2 .entradas .entrada1{
    height: 220px;
    width: 340px;
    background-color: #000000;
    border: solid 1px #B30504;
    border-radius: 10px;
    display: flex;
    margin-top: 15px;
}
.section2 .entradas .entrada1 .cartel{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section2 .entradas .entrada1 .cartel .foto{
    height: 200px;
    width: 150px;
    border-radius: 13px;
    background-image:  url(/img/CartelValencia.jpg) ;
    background-size: cover;
    background-position: center;
}
.section2 .entradas .entrada1 .cartel .foto2{
    height: 200px;
    width: 150px;
    border-radius: 13px;
    background-image: url(/img/CartelSevilla.jpg) ;
    background-size: cover;
    background-position: center;
}
.section2 .entradas .entrada1 .cartel .foto3{
    height: 200px;
    width: 150px;
    border-radius: 13px;
    background-image: url(/img/CartelBarcelona.jpeg) ;
    background-size: cover;
    background-position: center;
}
.section2 .entradas .entrada1 .info{
    width: 50%;
    height: 100%; 
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 15px;
}
.section2 .entradas .entrada1 .info .centrar{
    height: 100px;
    width: 170px;
    margin-bottom: 28px;
}
.section2 .entradas .entrada1 .info h3{
    font-size: 22px;
    letter-spacing: 3px;
}
.section2 .entradas .entrada1 .info .ubi{
    display: flex;
    margin-top: 20px;
}
.section2 .entradas .entrada1 .info .ubi p{
    margin-top: 1px;
    margin-left: 8px;
}
.section2 .entradas .entrada1 .info .fecha{
    display: flex;
    margin-top: 20px;
}
.section2 .entradas .entrada1 .info .fecha p{
    margin-top: 2px;
    margin-left: 9px;
}
.section2 .entradas .entrada1 .info a{
    background-color: #B30504;
    padding: 10px 30px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    margin-right: 10px;
}
.section2 .entradas .entrada1 .info a:hover{
    background-color: #A10101;
    color: white;
    font-weight: 900;
    border: 2px solid white;
}
#largo .info .centrar{
      margin-bottom: 10px ;
  	}
#largo1 .info .centrar{
      margin-bottom: 10px ;
  	}
.section2 .masfiestas{
    display: flex;
    justify-content: end;
}
.section2 .masfiestas a{
    color: white;
}
.section3{
    height: auto;
    width: 100;
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 80px;
    color: white;
    display: flex;
    justify-content: space-around;
}
.section3 .foto_izq{
    height: 100%;
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section3 .foto_izq .fotosct3{
    height: 600px ;
    width: 600px;
    background-image: url(/img/querylogodoble.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: -70px;
}
.section3 .historia{
    height: 100%;
    width: 40%;
}
.section3 .historia .titulo{
    margin-top: 40px;
    letter-spacing: 2px;
}
.section3 .historia .titulo .mover{
    margin-left: 40px;
}
.section3 .historia .titulo h4{
    margin-left: 80px;
    letter-spacing: 4px;
}
.section3 .historia p{
    width: 100%;
    letter-spacing: 2px;
}
.section3 .historia .btn{
    height: 40px;
    margin-top: 30px;
    display: flex;
    justify-content: center;
}
.section3 .historia a{
    background-color: #B30504;
    color: white;
    padding: 10px 30px;
    border-radius: 10px;
    text-decoration: none;
    border: 2px solid #c40000;
    
}
.section3 .historia a:hover{
    background-color: #A10101;
    color: white;
    font-weight: 900;
    border: 2px solid white;
}
.section4{
    height: 390px;
    width: 100vw;
    background-image: url(/img/Frame\ 75.png);
    background-position: center;
    margin-top: 60px;
}
.section5{
    height: 360px;
    width: 100vw;
    text-align: center;
}
.section5 img{
    margin-top: 50px;
}
.section5 h2{
    color: #B30504;
    letter-spacing: 5px;
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 28px;
}
.section5 a{
    background-color: #B30504;
    color: white;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 10px;
    border: 2px solid #c40000;
    font-size: 18px;
}
.section5 a:hover{
    background-color: #A10101;
    color: white;
    font-weight: 900;
    border: 2px solid white;
}
.section5 .separador{
    margin-top: 40px;
}
.section6{
    height: 540px;
    width: 100vw;
    background-image: url(/img/fondo_final.png);
    display: flex;
    letter-spacing: 2px;
}
.section6 .izquierda{
    height: auto;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 100px;
}
.section6 .izquierda .centrar{
    height: auto;
    width: 80%;
}
.section6 .izquierda .centrar h3{
    margin-left: 30px;
    color: #B30504;
    font-size: 26px;
}
.section6 .izquierda .centrar p{
    color: white;
    margin-left: 30px;
    width: 540px;
    letter-spacing: 2px;
}
.section6 .derecha{
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#contactForm {
    width: 100%;
    max-width: 380px;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: solid 1px #B30504;
}
.form-row {
    display: flex;
    gap: 25px;
    margin-bottom: 2px;
    width: 96%;
}
.form-group {
    flex: 1;
    margin-bottom: 20px;
}
.form-group.full-width {
    width: 100%;
}
input, textarea {
    width: 92%;
    padding: 15px;
    background-color: #000;
    border: 1px solid #333;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}
input::placeholder,
textarea::placeholder {
    color: #888;
}
input:focus,
textarea:focus {
    outline: none;
    border-color: #B30504;
    box-shadow: 0 0 10px rgba(196, 30, 58, 0.3);
}
textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Arial', sans-serif;
}
.btn-enviar {
    width: 40%;
    padding: 15px;
    background-color: #B30504;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-enviar:hover {
    background-color: #a01828;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.5);
}
.btn-enviar:active {
    transform: translateY(0);
}
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
    margin-left: 4px;
}
.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.checkbox-label a {
    color: #000000;
}

.checkbox-label a:hover {
    text-decoration: underline;
}
.footer{
    height: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-left: 50px;
    margin-right: 50px;
    color: white;
    flex-wrap: wrap;
}
.footer .foot_cent{
    text-align: center;
    width: 300px;
}
.footer .foot_dcha{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footer .foot_dcha .correo{
    display: flex;
    width: 230px;
}
.footer .foot_dcha .telefono{
    display: flex;
    text-align: center ;
    justify-content: center ;
    width: 230px;
    margin-top: 20px;
}
.footer .foot_dcha .redes{
    display: flex;
    justify-content: space-around;
    width: 300px;
    margin-top: 20px;
}
.footer .foot_dcha .correo p{
    margin-top: 7px;
    margin-left: 15px;
}
.footer .foot_dcha .telefono p{
    margin-top: 5px;
    margin-left: 15px;
    color: white ;
}
.footer .foot_izq{
    display: flex;
    justify-content: space-between;
    text-align: center;
    width: 350px;
    height: 80px;
}
.footer .foot_izq a{
    color: white;
    text-decoration: none;
}
.footer .foot_izq .col1{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer .foot_izq .col2{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 50px
}
/* Responsive Design */

@media (max-width: 1460px) {
    .section6 .izquierda{
        margin-left: 0px;
    }
    .section3 .foto_izq .fotosct3{
        margin-top: -40px;
    }
}
@media(max-width: 1400px){
    .section1 .LogoRojo{
        background-image: url(/img/querylogo.svg);
        background-size: contain;
        background-repeat: no-repeat;
        margin-left: 50px;
        margin-top: 50px;
    }
    .section1 p{
        margin-top: 100px;
        margin-bottom: 70px;
    }
    .section3 .foto_izq{
        margin-top: 40px;
    }
    .section4{
        margin-top: 50px ;
    }
}
@media (max-width: 1300px) {
    .section3 .foto_izq{
        margin-top: 70px;
    }
    .section4{
        margin-top: 0px ;
    }
}
@media(max-width: 1225px){
    .section6{
        display: flex;
        flex-direction: column;
        height: auto;
    }
    .section6 .izquierda{
        height: auto;
        width: 100vw;
        background-color: black;
    }
    .section6 .izquierda .centrar{
        width: 100vw;
        margin-left: 50px;
    }
    .section6 .derecha{
        height: 520px;
        width: 100vw;
        background-image: url(/img/fondo_final.png);
        margin-top: -5px;
    }
}
@media (max-width: 1165px) {
    .section2{
        height: auto;
    }
    .section1 .LogoRojo{
        height: 350px;
        background: url(/img/querylogo.svg);
        background-size: contain;
        background-repeat: no-repeat;
        margin-top: 0px;
        margin-left: 50px;
    }   
    .section2 .entradas{
        height: auto;
    }
    .section2 .masfiestas{
        margin-top: 30px;
    }
}
@media (max-width: 1140px){
    .section1{
        background-image: url(/img/Inicio_I.png);
    }
    .banner2{
      	background-image: url(/img/banner22.jpg) ;
    }
}
@media (max-width: 1100px) {
    .section3{
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        margin-top: 40px;
    }
    .section3 .historia{
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .section3 .historia p{
        width: 80%;
    }
    .section3 .foto_izq{
        height: 400px;
        width: 400px;
        margin-top: 50px;
    }
    .section3 .foto_izq .fotosct3{
        height: 400px;
        width: 400px;
        background-image: cover;
    }
    .section4{
        margin-top: 50px ;
    }
}
@media (max-width: 1023px){
	#largo1 .info .centrar{
      margin-bottom: 10px ;
  	}
}
@media (max-width: 1000px) {
    .menu-toggle {
        display: block;
        margin-right: 50px;
        font-size: 40px;
    }
    .menu2 {
        position: absolute;
        top: 100%;
        left: auto;
        right: 0;
        background-color: #000000;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        width: 30%;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        z-index: 999;
        min-width: 200px; /* Ancho mínimo para que se vea bien */
    }
    .menu2.active {
        max-height: 400px;
    }
    .menu2 a {
        width: 100%;
        padding: 15px 30px;
        border-bottom: 1px solid #444;
        text-align: left;
    }
    .menu2 a:last-child {
        border-bottom: none;
    }
    .menu2 a:hover {
        background-color: #B30504;
        border-radius: 0;
    }
    .section3 .foto_izq{
        width: 450px ;
    }
    .section4{
        background-image: url(/img/queryflamenca.png);
        margin-top: 0px ;
    }
}
@media (max-width: 950px){
    .section1 .LogoRojo{
        height: 330px;
        background: url(/img/querylogo4.svg);
        background-size: contain;
        background-repeat: no-repeat;
        margin-top: 0px;
    }
    .section1 p{
        margin-top: 90px;
        margin-bottom: 70px;
    }
}
@media(max-width: 803px){
    .section1{
        background-image: url(/img/queryhero.png);
    }
    .banner2{
      	background-image: url(/img/banner2_2.jpg) ;
    }
    .banner2 .boton_madrid{
  		margin-top: 170px
    }
    .section1 .LogoRojo{
        height: 300px;
        background: url(/img/querylogo4.svg);
        background-size: contain;
        background-repeat: no-repeat;
        margin-top: -20px;
        margin-left: 80px;
    }
    .footer{
        height: 320px;
    }
    .footer .foot_izq{
        margin-top: 30px;
        width: 400px;
        margin-bottom: 20px;
    }
    .section3 .foto_izq{
        width: 400px ;
    }
    .section4{
        margin-top: 0px;
    }
}
@media(max-width: 780px){
    .section4{
        background-image: url(/img/queryflamenca2.png);
        margin-top: -20px ;
    }
    .section3 .historia p{
        width: 100%;
    }
}
@media (max-width: 768px) {
    .cookie-banner {
        width: 70%;
        padding: 20px;
    }
    .cookie-buttons {
        width: 100%;
    }
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
    .menu .logo{
        margin-left: 30px;
    }
    .menu .menu-toggle{
        margin-right: 29px;
    }
    .section1{
        height: 70vh ;
    }
    .banner-container{
      	height: 70vh ;
        margin-right: 40px;
        margin-left: 40px;
    }
    .section1 p{
        margin-top: 70px ;
    }
    .section1 .LogoRojo{
        margin-top: 0px;
    }
}
@media(max-width: 700px){
    .section1 .LaFlamenca{
        margin-top: 70px;
    }
    .section1 p{
        margin-top: 50px;
        margin-bottom: 70px;
    }
    .section6 .izquierda img{
        width: 450px;
    }
    .section6 .izquierda .centrar p{
        width: 75% ;
    }
    .section3 .foto_izq img{
        height: 400px;
    }
    .section4{
        margin-top: 20px;
    }
    .section5 .separador{
        width: 450px;
    }
    #contactForm{
        max-width: 310px;
        height: 390px;
    }
    .btn-enviar{
        padding: 10px;
    }
    .form-row{
        width: 95%;
    }
    input, textarea {
        width: 90%;
    }
    .section3 .foto_izq{
        margin-top: 60px;
    }
    .section4{
        background-image: url(/img/queryflamenca3.png);
        margin-top: 0px;
    }
    .section1 .LogoRojo{
        height: 240px;
        width: 380px;
        background: url(/img/querylogo6.svg);
        background-size: contain;
        margin-top: -20px;
        margin-left: 30px;
    }
}
@media (max-width: 699px){
    .footer{
        height: 500px;
    }
}
@media(max-width: 600px){
    .section1{
        background-image: url(/img/queryhero2.png);
    }
    .banner2{
      	background-image: url(/img/banner2_2.jpg) ;
    }
    .section1 p{
        font-size: 20px;
        margin-bottom: 40px;
    }
    .section1 a{
        padding: 10px 20px;
    }
    .menu .logo img{
        height: 35px;
    }
    .menu-toggle {
        font-size: 28px;
    }
    .section3 .foto_izq{
        width: 350px ;
    }
    .section4{
        margin-top: -50px;
    }
}
@media (max-width: 550px){
    .izquierda .centrar img {
        max-width: 380px; 
    }
}
@media(max-width: 500px){
    .section1{
        background-image: url(/img/queryhero3.png);
    }
    .banner2{
      	background-image: url(/img/banner2_2.jpg) ;
    }
    .section1 p{
        margin-top: 45px;
    }
    .section1 .LogoRojo{
        height: 180px;
        width: 300px;
        background: url(/img/querylogo6.svg);
        background-size: contain;
        margin-top: 0px;
        margin-left: 20px;
    }
    .menu .logo img{
        height: 27px;
    }
    .menu-toggle {
        font-size: 26px;
    }
    .section2 .titulo{
        width: 100%;
        text-align: start;
    }
    .section2 .titulo h4{
        margin-left: 40px;
    }   
    .section2 .titulo img{
        margin-left: 0px;
        width: 300px;
    }
    .section2 .entradas{
        align-items: center;
    }
    .section3 .titulo img{
        width: 300px;
    }
    .section4{
        background-image: url(/img/section4query.png);
        margin-top: -80px;
    }
    .section5 .separador{
        width: 400px;
    }
}
@media(max-width: 450px){
    .menu .logo{
        margin-left: 20px;
    }
    .menu .menu-toggle{
        margin-right: 20px;
    }
    .section1{
        height: 60vh ;
    }
    .banner-container{
      	height: 60vh ;
        margin-right: 20px;
        margin-left: 20px;
    }
    .section1 p{
        margin-top: 30px ;
        font-size: 18px;
    }
    .section1 a{
        padding: 10px 20px;
    }
    .section2 .entradas .entrada1{
        height: 200px;
        width: 300px;
    }
    .section2 .entradas .entrada1 .cartel .foto{
        height: 180px;
        width: 120px;
    }
    .section2 .entradas .entrada1 .cartel .foto2{
        height: 180px;
        width: 120px;
    }
    .section2 .entradas .entrada1 .cartel .foto3{
        height: 180px;
        width: 120px;
    }
    .section2 .entradas .entrada1 .info .centrar{
        width: 100%;
        margin-bottom: 15px;
    }
    .section2 .entradas .entrada1 .info p{
        font-size: 11px;
    }
    .section2 .entradas .entrada1 .info a{
        padding: 10px 10px;
        margin-right: 5px;
    }
    .section2 .entradas .entrada1 .info .ubi p{
        margin-top: 5px;
    }
    .section2 .entradas .entrada1 .info .fecha p{
        margin-top: 5px;
    }
    #largo .info .centrar{
      margin-top: -5px ;
      height: 90px ;
      margin-bottom: 15px ;
  	}
    #largo1 .info .centrar{
      margin-bottom: 0px ;
  	}
    .section3{
        margin-top: 50px;
    }
    .section6{
        margin-top: 10px;
    }
    .section6 .izquierda{
        height: auto;
    }
    .section6 .izquierda img{
        width: 350px;
    }
    .section6 .izquierda .centrar h3{
        margin-left: 15px ;
    }
    .section6 .izquierda .centrar p{
        margin-left: 15px ;
        width: 330px;
    }
    .section2 .entradas .entrada1 .info h3{
        font-size: 18px;
    }
}
@media(max-width: 425px){
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    #contactForm{
        max-width: 280px;
        height: auto;
    }
    .btn-enviar{
        padding: 10px;
    }
    .form-row{
        width: 100%;
    }
    input{
        width: 90% ;
        height: 12px;
    }
    .section5 .separador{
        width: 360px;
    }
    .section6 .izquierda img{
        width: 300px;
    }
    .section6{
        height: auto;
    }  
    .section6 .derecha{
        height: 600px;
    }
    .section6 .izquierda .centrar p{
        width: 300px;
    }
}
@media(max-width: 400px){
    .section5{
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .section5 h2{
        width: 200px;
        margin-bottom: 0px;
    }
    .section5 .separador{
        width: 320px;
    }
    .section2 .titulo h4{
        margin-left: 10px;
    }
    .section2 .masfiestas{  
        right: 45px;    
    }
    .section6{
        margin-top: 50px;
    }
    .section6 .izquierda .centrar{
        margin-left: 30px;
    }
}
@media (max-height: 680px) {
    .section1 .LogoRojo {
        display: none !important;
    }
    .section1 p{
        margin-top: 40px;
        margin-bottom: 70px;
    }
}
@media (max-height: 600px){
    .section1{
        background-image: url(/img/Inicio_I.png);
    }
    .banner2{
      	background-image: url(/img/banner23.jpg) ;
    }
    .banner2 .boton_madrid{
  		margin-top: 120px ;
	}
    .section1 .LaFlamenca{
        margin-top: 50px;
    }
    .section1 p{
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 60px;
    }
    .section1 a{
        padding: 13px 20px;
    }
}
@media (max-height: 450px){
    .section1 .LaFlamenca{
        margin-top: 40px;
    }
    .section1 p{
        font-size: 15px;
        margin-top: 20px;
        margin-bottom: 60px;
    }
    .section1 a{
        padding: 10px 15px;
    }
}
