html,body{
    background-color: #EA6469;
    overflow-x: hidden; /* Evita el desplazamiento horizontal */
    width: 100%;
    margin: 0;
    padding: 0;

}



.Portada{
    width: 95vw;
    height: 40vh;
    border-radius: 40px;
    justify-content: center;
    margin:2vh auto;
    height: auto;
    position: relative;




}
@media screen and (max-width: 1200px) {
    .Portada {
        width: 100%;
        min-height: 80vh;
        max-width: 95%;
    }}


#Imagen_Portada {
    border-radius: 40px;
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
    margin-bottom: 10px;


}
@media screen and (max-width: 1200px) {
    #Imagen_Portada {
        min-height: 100%;
        position: absolute;
    }}

#Logo_Portada{
    position: absolute;
    top: 10px;   /* Separación del borde superior */
    left: 10px;  /* Separación del borde izquierdo */
    width: 40%;  /* El logo tendrá el 20% del ancho del contenedor */
    max-width: 400px; /* No crecerá más de 100px */
    height: auto; /* Mantiene la proporción */
}

@media screen and (max-width: 1200px) {
    #Logo_Portada {
        margin-top: 60px;
        width: 50%;
        max-width: 500px;
        height: auto;
    }}




.Portada h1{
    color: #f9faf9;
    font-family: "Atkinson Hyperlegible Mono", sans-serif;
    font-size: 3vw;
    font-weight: bold;
    z-index: 2;
    position: absolute;
    top: 60%;
    bottom: 4%; /* Ajusta según necesidad */
    left: 10%;
    animation: fadeIn 2s ease-out;

}

@media screen and (max-width: 1200px) {
    .Portada h1 {
        font-size: 7vw;
        top: 50%;
    }}


    .Texto_Portada {
        position: absolute;
        bottom: 4%; /* Ajusta según necesidad */
        left: 10%;
        right: 10%;
        color: white;
        font-family: "Lora", serif;
        z-index: 2;
        text-align: justify;
        animation: fadeIn 3s ease-out;


        /* Evita que el texto crezca demasiado */
        font-size: min(5vw, 20px);

        /* Evita que se salga del div */
        max-width: 80%;

    }

    @media screen and (max-width: 1000px) {
        .Texto_Portada {
            font-size: clamp(15px, min(2vw, 2vh), 20px); /* Evita que el texto crezca demasiado */
            top: 45%; /* Ajusta para que no baje tanto */
            max-width: 80%; /* Evita que el texto se expanda más de la cuenta */
        }
        @media screen and  (min-height: 1000px) {
            .Texto_Portada {
                font-size: clamp(15px, min(2.2vw, 2.2vh), 40px); /* Evita que el texto crezca demasiado */
                top: 75%; /* Ajusta para que no baje tanto */
                max-width: 80%; /* Evita que el texto se expanda más de la cuenta */
            }
    }}


    @media screen and (max-width: 1000px) and (min-width: 757px) {
        .Texto_Portada {
            font-size: clamp(15px, min(2vw, 2vh), 40px); /* Evita que el texto crezca demasiado */
            top: 40%; /* Ajusta para que no baje tanto */
            max-width: 80%; /* Evita que el texto se expanda más de la cuenta */
        }}
    @media screen and (max-width: 581px) {
        .Texto_Portada {
            font-size: clamp(15px, min(2vw, 2vh), 40px); /* Evita que el texto crezca demasiado */
            top: 40%; /* Ajusta para que no baje tanto */
            max-width: 80%; /* Evita que el texto se expanda más de la cuenta */
            }}



.btn.btn-outline-secondary{
    position: absolute;
    top: 90%;
    z-index: 2;
    bottom: 4%; /* Ajusta según necesidad */
    left: 50%;
    color: white !important;
    padding-bottom: 30px;
}



a{
    color: #f9faf9;
    font-family: "Noto Serif", serif;
    font-size: 14px;

}
h1 {
    color: #f9faf9;
    font-family: "Atkinson Hyperlegible Mono", sans-serif;
    font-size: 45px;
    font-weight: bold;

}

p {
    color: #f3f4f3;
    line-height: 2;
    font-family: "DM Sans", serif;

}




.navbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 16px 64px;
    background-color: rgba(14, 14, 14, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    font-family: "DM Sans", serif;
    z-index: 1000;

}

.nav-links{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    font-family: "DM Sans", serif;
    transition: all 0.5s ease;
}

.nav-links li {
    margin-left: 24px;
}

.nav-links a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 17px;
    padding: 8px 24px;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    font-family: "DM Sans", serif;
}

.nav-links a:hover{
    background-color: #088179;
    color: #FFFFFF;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: auto;
    position: relative;
    z-index: 15;
}

.menu-icon .line {
    width: 30px;
    height: 3px;
    background-color: #FFFFFF;
    margin: 5px 0;
    transition: all 0.3s ease;

}

#menu-toggle {
    display: none;
}

@media screen and (max-width: 1200px) {
    .navbar {
        padding: 30px;
    }


    .menu-icon {
        display: flex;

    }

    .nav-links {
        height: 0;
        visibility: hidden;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        flex-direction: column; /* Aplica solo en dispositivos pequeños */
        background-color:rgba(14, 14, 14, 0.6);
        text-align: center;
        transition: height 0.5s ease;
        z-index: 10;
    }

    .nav-links li {
        margin: 0;
        padding: 20px 0;
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        padding: 10px 20px;
    }

    #menu-toggle:checked + .menu-icon + .nav-links {
        height: 170vh;
        visibility: visible;
    }

    #menu-toggle:checked + .menu-icon .line:nth-child(1){
        transform: rotate(45deg) translate(15px,3px);
    }

    #menu-toggle:checked + .menu-icon .line:nth-child(2){
        transform: scale(0);
    }

    #menu-toggle:checked + .menu-icon .line:nth-child(3){
        transform: rotate(-45deg) translate(15px,-4px);
    }

}

/* Estilo del menú desplegable */
.dropdown-menu {
    display: none; /* Ocultar por defecto */
    position: absolute;
    background-color: #424242;
    top: 100%; /* Alinear justo debajo del enlace */
    left: 0;
    min-width: 220px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    padding: 4px 16px;
    color: rgb(250, 245, 245);
    text-align: left;
}

/* Mostrar menú al hacer hover */
.dropdown:hover .dropdown-menu {
    display: block;
}


#destino{
    color:white ;
}

#Idioma{
    color: white;
}


.carousel {
    width: 95vw;
    height: 70vh;
    border-radius: 40px;
    justify-content: center;
    align-items: center;
    max-height: 800px; /* Establece una altura máxima */
    height: auto;      /* Ajusta la altura automáticamente según el contenido */
    overflow: hidden;  /* Oculta cualquier contenido que exceda el tamaño máximo */
    margin:2vh auto;
    box-shadow: 0 0 20px rgba(241, 237, 237, 0.2); /* Difumina los bordes */


}


.carousel-item h1{
    font-size: 60px;
    font-weight: bold;
    align-items: center !important;


}

.carousel-item p{
    font-size: 25px;
    font-family: "DM Sans", serif;
    font-weight: bold;



}

.carousel-caption {
    position: absolute;
    top: 50%;  /* Coloca el texto en el centro vertical */
    left: 50%; /* Coloca el texto en el centro horizontal */
    transform: translate(-50%, -50%); /* Centra perfectamente */
    text-align: center; /* Asegura que el texto esté alineado */
    width: 80%; /* Ajusta el ancho del texto */
    pointer-events: none;

}


/* Cambia el h1 en pantallas pequeñas */
@media screen and (max-width: 1200px) {
    .carousel-item h1 {
        font-size: 6vw;


    }}

@media screen and (max-width: 768px) {
    .carousel-buttons {
        display: none;

    }}

@media screen and (max-width: 1200px) {
    .carousel-item p {
        font-size: 3vw;
        color:rgba(250, 247, 247, 0.7) ;
        line-height: 1;

    }}



    .carousel-item .carousel-caption {
        width: 100%; /* Ocupa todo el ancho del carrusel */

        height: auto;

    }

    @media screen and (max-width: 1200px) {

    .carousel-item .carousel-caption {
        width: 80%; /* Más espacio para texto */
        max-width: none; /* Permite que el contenido fluya */
        padding: 10px;

    }
}
/*Efecto de transición de escala para las imagenes del carousel*/
.carousel-item img {
    transition: transform 7s ease-in-out;
  }

  .carousel-item.active img {
    transform: scale(1.1); /* Aumenta un 10% el tamaño */
  }
/*Efecto de transición de escala al cargar la página*/
  @keyframes show {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.carousel img {
    animation: show 7s ease-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0; /* Al principio es invisible */
    }
    100% {
        opacity: 1; /* Al final es completamente visible */
    }
}

.carousel-item h1 {
    animation: fadeIn 2s ease-out; /* Aparece en 2 segundos */
}

.carousel-item p {
    animation: fadeIn 3s ease-out; /* Aparece en 2 segundos */
}



.letras_abajo{
    color: rgb(253, 250, 250);
    text-align: center;
    font-family: "Noto Serif", serif;
}


.parrafo_abajo{
    color: white;
    font-family: georgia;
    text-align: center;
    font-size: 30;
}

#parrafo_especial{
    color: white;
    font-family: georgia;
    text-align: center;
    font-size:20px;

}

.zoom{
    margin: auto;
    cursor: pointer;
    transition: 4s;
}

.zoom:hover{
    transform: scale(1.1);
    transition: 4s;
}



#section_uno {

    position: relative;
    width: 100%;
    height: 100%;
    margin-bottom: 0;
}



#hero {
    position: absolute;
    width: 95vw;
    height: 50vh;
    position:relative;
    min-height: 100vh;
    width: 95vw;
    height: 70vh;
    border-radius: 40px;
    justify-content: center;
    margin:2vh auto;

}

video{
    position:absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;

}
.seccion_uno{
    display: flex;
    flex-wrap: wrap; /* Permite que los elementos bajen si no caben en una línea */
    justify-content: center; /* Alineación opcional */
    width: 80%; /* Ajusta según necesidad */
    margin: 0 auto; /* Centrar el contenedor */
}

.capa {
    position:absolute;
    width: 100%;
    height: 100%;
    background:black;
    opacity: 0.4;
    mix-blend-mode: overlay;
    border-radius: 40px;


    z-index: 2;
}


#texto_imagen p{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 3;
    font-size: 1.5vw;
    text-align: justify;
    font-family: "Lora", serif;
    overflow: hidden !important; /* Oculta el texto que se salga del div */
    text-overflow: ellipsis !important;
    max-width: 100%;


}

#texto_imagen h1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 3;
    font-size: 3vw;
}



@media screen and  (max-width: 1000px) {
    #texto_imagen p {
        top: 65%;
        font-size: clamp(15px, min(3vw, 3vh), 40px);


    }}

@media screen and  (max-width: 1000px) {
    #texto_imagen h1 {
        top: 25% !important;
        font-size: 5vw;


        }}

@media screen and  (max-width: 750px) {
    #texto_imagen h1 {
        top: 30% !important;
        font-size: 5vw;


        }}
@media screen and  (max-width: 650px) {
    #texto_imagen h1 {
        top: 30% !important;
        font-size: 5vw;


                }}
@media screen and  (max-width: 350px) {
    #texto_imagen h1 {
        top: 30% !important;
        font-size: 5vw;


                                }}
@media screen and  (max-width: 310px) {
    #texto_imagen h1 {
        top: 20% !important;
        font-size: 5vw;


                                                                }}

@media screen and  (min-height: 2000px) {
        #texto_imagen p {
            top: 45%;
            font-size: clamp(15px, min(4vw, 4vh), 40px);


        }}





    @media screen and  (min-height: 2000px) {
        #texto_imagen h1{
            top: 15% !important;
            font-size: 5vw;


        }}

.container-boton {
    border: #FE4567;
    position: fixed;
    z-index: 999;
    border-radius: 50%;
    bottom: 20px;
    right: 25px;
    animation: efecto 1.2s infinite; /* Utiliza 'animation' en lugar de 'transition' */
}

.container-boton:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

.boton {
    width: 80px;
    transition: ease 1s;
}

@keyframes efecto {
    0% {
        box-shadow: 0 0 0 0 rgba(0,0,0,0.85);
    }
    100% {
        box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
    }
}

.card{
    margin: 20px;
    width: 200px;
    height: 800px;
    border-radius: 5px;
    background: var(--i);
    background-size: cover;
    box-shadow: 3px 5px 5px rgb(3, 32, 51,.8);
    overflow: hidden;

}
.card p{
    font-size:15px ;
    color: black;


}

#texto_imagen {
    flex-grow: 1; /* Permite que crezca según el espacio disponible */
  }


.seccion_dos {
    background-image: linear-gradient(to left,#EA6469,#E15530,#D22C2A);
    background-size: cover;
    background-position: center;
    height: 100%;
    border-radius: 40px;
    margin:2vh auto;
    width: 95vw;

}



.wrapper{
    padding: 10px 10%;
}

.card-area{
    padding: 50px 0;

}


.box-area{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    grid-gap:40px;
    margin-top:50px;

}
.box{
    border-radius: 10px;
    position:relative;
    overflow: hidden;
    box-shadow: 5px 5px 15px rgb(0, 0, 0,0.5);
}
.box img{
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s;
}

@media screen and (max-width: 1200px) {
    .box-area{
        display: flex;
        flex-direction: column;
    }
    .box{
        width: 100%;
        margin-bottom: 20px; /* Ajusta el espacio entre los elementos según sea necesario */
    }
}
@media screen and (max-width: 1200px) {
    #Titulo_clima{
        font-size:8vw

    }
    .box{
        width: 100%;
        margin-bottom: 20px; /* Ajusta el espacio entre los elementos según sea necesario */
    }
}
.overlay{
    height: 0;
    width: 100%;
    background: linear-gradient(transparent,#1c1c1c 58%);
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size: 14px;
    transition: height 0.5s;
}

.overlay h2{
    font-weight: 500;
    margin-bottom: 5px;
    margin-top: 20%;
    font-family: "Atkinson Hyperlegible Mono", sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    color: white;
}


.overlay a{
    margin-top: 10px;
    color: #262626;
    text-decoration: none;
    font-size:14px;
    background: #fff;
    border-radius: 50px;
    text-align: center;
    padding: 5px 15px;
}
.boxLhover img{
    transform: scale(1.2);
}
.box:hover .overlay{
    height: 100%;
}

#footer{
    background-image: linear-gradient(to right, rgba(255, 0, 0, 0.697),rgba(255, 255, 0, 0.768));


}

.card-area h1{
    font-family: "Atkinson Hyperlegible Mono", sans-serif;
    text-align: center;
    font-size: 40px;


}
@media screen and (max-width: 1200px) {

    .card-area h1 {

        font-size: 7vw;

    }}

.form-comprar{
    width: 400px;
    background: #24303c;
    padding: 30px;
    margin: auto;
    margin-top: 100px;
    border-radius: 4px;
    font-family: 'calibri';
    color: white;
    text-align: justify;


}

.controls{
    width: 100%;
    background: #24303c;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 16px;
    border: 1px solid #1f53c5;
    font-family: 'calibri';
    font-size: 18px;
    color: white;
}



.form-comprar p{
    height: 40px;
    text-align: center;
    font-size: 18px;

}

.form-comprar a:hover{
    color: white;
    text-decoration: underline;
}

.form-comprar .botons{
    width: 100px;
    background: #1f53c5;
    border: none;
    padding: 12px;
    color: white;
    margin: 16px 0;
    font-size: 16px
}

.Comprar{
    background-image:linear-gradient(to right,#F16A6D, #8B1B30,#644494);
}

.clima{
    float: left;
    margin: 2px;
    padding: 3px 10px;
    border: PowderBlue 5px solid;
    border-radius: 20px;
    text-align: center;
    background-color: #539091;
    height: 200px;
    width: 180px;
    opacity: 80%;

}
.clima h3,p{
    color: white;
    font-family: "Atkinson Hyperlegible Mono", sans-serif;
    font-size: 15px;
}

.clima img{
    text-align: center;


}

#API_Clima{
        display: flex;
        flex-wrap: wrap; /* Permite que los elementos se ajusten en múltiples filas si es necesario */
        justify-content: center; /* Centra horizontalmente los elementos */
        align-items: center; /* Centra verticalmente los elementos */
        text-align: center; /* Centra el texto dentro de cada div */
        padding: 20px; /* Espaciado alrededor de la sección */
        background-image: linear-gradient(to right,#F16A6D, #8B1B30,#644494);
        border-radius: 40px;
        margin:2vh auto;

}



#map {
    height: 500px;
    width: 100%;
    position: relative; /* Necesario para el posicionamiento absoluto de los botones */
    margin:2vh auto;
    border-radius: 20px;
}

/*botones mapa*/
.btn-group{
    margin-left: 90px;
    margin-bottom: 30px;
    gap: 10px


}
@media screen and (max-width: 1200px) {
    .btn-group {
        margin-left:15px;
    }}
/*fondo bontones de mapa*/
#mapa_fondo{
    background-image: linear-gradient(to right#F16A6D,#8B1B30,#3F2B5C);
}
.btn-group h1{
    color: white
}
#Titulo_Mapas{
    margin-left: 100px;
}
@media screen and (max-width: 1200px) {
    #Titulo_Mapas{
        font-size:8vw

    }}
.custom-button {
    opacity: 0.7; /* Ajusta el valor (0.1 a 1) */
}

/*Animar los textos*/
  .Zona {
    animation: slideIn 1s ease-in-out forwards;
    margin-top: 100px;
    background-image: linear-gradient(to right,#F16A6D, #8B1B30,#644494);
    border-radius: 40px;
    width: auto;
    padding: 40px;
  }

  @keyframes slideIn {
    from {
      left: -100%;
      opacity: 0;
    }
    to {
      left: 0;
      opacity: 1;
    }


  }
/*Tripadvisor */
.tripadvisor-container {
            position: relative;
            width: 100%;
            padding-top: 56.25%; /* Relación de aspecto 16:9 */
        }

        .tripadvisor-iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        @media screen and (max-width: 1200px) {
            .tripadvisor-container {
                padding-top: 75%; /* Ajuste para móviles */
            }
        }

.logo{
transform: translateY(-2px);
}

.contenedor {

    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px;
    margin: 0 auto;
    width: 50%;
    max-width: 1200px;
    box-sizing: border-box;
    max-height: 800px; /* Define una altura máxima */
    overflow: auto;

}

@media screen and (max-width: 1200px) {
    .contenedor {
        padding-left: 0 !important;  /* Elimina el desplazamiento en pantallas pequeñas */
        text-align: center;
        padding: 40px;
        width: 80%;
    }
}

.contenedor h1{
    color: rgb(251, 249, 249);
}
@media screen and (max-width: 1200px) {
    .contenedor h1 {
        font-size: 8vw;
    }}





.btn btn-outline-info{
    padding-left: 40px;
}

/*Tipografía Shopping*/

.Zona img{
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* Ajusta el desenfoque y la opacidad */
    border-radius: 10px; /* Opcional: suaviza los bordes */
}

.Zona p{
    font-family: "Lora", serif;
    font-size: 1.2vw;
    color:black;
    text-align: justify;

}

@media screen and (max-width: 1200px) {
    .container {
        max-width: 100% !important; /* Permite que el contenedor use todo el ancho */
        padding: 0 20px; /* Agrega un poco de margen a los lados */
    }

    .row {
        flex-direction: column; /* Apila los elementos verticalmente */
    }

    .col-md-6 {
        width: 100%; /* Asegura que las columnas usen todo el espacio */
    }
}





@media screen and (max-width: 1200px) {
    .Zona p {
        font-family: "Lora", serif;
        font-size: 4vw;
        text-align: justify;

    }}

    @media screen and (max-width: 1200px) {
        .Zona h1 {
            text-align: center;
            font-size: 7vw !important;

        }}

.Zona h1{
    font-family:"Atkinson Hyperlegible Mono", sans-serif;
    font-size: 45px;
    color: #f3f3f3;
}

.contenedor p{
    font-family: "DM Sans", serif;
    font-size: 15px;
    color:black;
    text-align: justify;

}


.Zona_Bonani {
    animation: slideIn 1s ease-in-out forwards;
    margin-top: 100px;
    background-image: linear-gradient(to right,#F16A6D, #8B1B30,#644494);
    border-radius: 40px;
    width: auto;
    margin-bottom: 10px;
  }

  .Zona_Escorial {
    animation: slideIn 1s ease-in-out forwards;
    margin-top: 100px;
    background-image: linear-gradient(to right,#F16A6D, #8B1B30,#644494);
    border-radius: 40px;
    width: auto;
    margin-bottom: 10px;
  }



.Zona_Escorial p{
    font-family: "Lora", serif;
    font-size: 0.9vw;
    color:rgb(246, 243, 243);
    text-align: justify;
}

@media screen and (max-width: 1200px) {
    .Zona_Escorial p {
        font-family: "Lora", serif;
        font-size: 4vw;
        text-align: justify;

    }}

    @media screen and (max-width: 1200px) {
        .Zona_Escorial h1 {
            text-align: center;
            font-size: 8vw !important;

        }}

.Zona_Escorial img{
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* Ajusta el desenfoque y la opacidad */
    border-radius: 10px; /* Opcional: suaviza los bordes */
}

.Zona_Bonani p{
    font-family: "Lora", serif;
    font-size: 0.9vw;
    color:black;
    text-align: justify;

}

@media screen and (max-width: 1200px) {
    .Zona_Bonani p {
        font-family: "Lora", serif;
        font-size: 4vw;
        text-align: justify;


    }}

    @media screen and (max-width: 1200px) {
        .Zona_Bonani h1 {
            text-align: center;
            font-size: 8vw !important;

        }}
.Zona_Bonani img{
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* Ajusta el desenfoque y la opacidad */
    border-radius: 10px; /* Opcional: suaviza los bordes */
}

.overlay_carousel {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 70%; /* La mitad inferior */
    background: linear-gradient(transparent,#1c1c1c 80%);; /* Fondo negro con transparencia */
    z-index: 1; /* Debajo del texto */
    border-radius: 30px;
  }

  .carousel-caption {
    position: absolute;
    bottom: 10%;
    z-index: 2; /* Encima de la capa oscura */
  }
  a {
    text-decoration: none;
}

  .navbar img {
    width: 110px;
    height: 90px;
    display: block;
    margin-top: -30px;
    margin-bottom: -30px;
    margin-left: 100px;
}



@media (max-width: 1200px) {
    .accordion-button {
        font-size: 4vw;
    }

    .accordion-body {
        font-size: 4vw;
    }
}
#forms_contacto{
    padding: 40px;
}

@media screen and (max-width: 1200px) {
    .carousel img {
        width: 100%;
        height: auto;


    }}

    /* Cuando el menú hamburguesa esté activo */
@media screen and (max-width: 1200px) {

    .nav-links {
        font-size: 30px; /* Aumenta el tamaño de las opciones */
    }

    .nav-links li {
        padding: 15px 0; /* Agrega espacio entre opciones */

    }
    .nav-links a {
        font-size: 30px;

    }

    .dropdown-menu li a {
        font-size: 30px; /* Aumenta el tamaño de las subopciones */
        padding: 12px 20px; /* Espaciado interno */
    }
}

@media screen and (max-width: 1200px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 80%; /* O ajusta según necesidad */
        max-width: 300px; /* Evita que se haga demasiado grande */
    }
}

.btn_comprar{
    margin: 30px;
    color: rgb(249, 245, 245);
    background-color: rgba(12, 13, 13);
    border-radius: 20px;
    border: white;
    padding: 20px 30px;
    font-weight: bold


}

#btn_paypal{
    margin: 30px;
    color: rgb(44, 43, 145);
    background-color: rgba(237, 237, 15, 0.932);
    border-radius: 20px;
    border:rgb(232, 98, 15);
    padding: 10px 20px;
    font-weight: bold


}

#zona-centro:active {
    background-color: rgb(237, 219, 140); /* Color cuando se presiona */
}

#zona-norte:active {
    background-color: rgb(237, 219, 140); /* Color cuando se presiona */
}

#zona-sur:active {
    background-color: rgb(237, 219, 140); /* Color cuando se presiona */
}
