*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
  --color-base: #F5F0E6;       /* Beige suave */
  --color-primary: #B22222;    /* Rojo profundo */
  --color-accent: #1ABC9C;     /* Turquesa */
  --color-gold: #D4AF37;       /* Dorado suave */
  --color-text: #333333;       /* Gris oscuro */
  --color-white: #FFFFFF;      /* Blanco puro */
}


body {
  background: var(--color-base);
  color: var(--color-text);
}

h1, h2, h3, h5 {
  color: var(--color-primary);
}

h4{
  color: var(--color-gold);
}

nav {
    background: #1b1b1b;
}
nav::after {
    content: '';
    clear: both;
    display: table;
}
nav .logo {
    float: left;
    color: white;
    font-size: 27px;
    font-weight: 600;
    line-height: 70px;
    padding-left: 60px;
}
nav .logo a {
    color: white;
    text-decoration: none;
}

nav .logo span {
    color: cyan;
}
nav .logo:hover {
    color: cyan;
    text-shadow: 0 0 5px #33ffff,
                0 0 10px #66ffff;
}
nav .logo:hover span {
    color: white;
    text-shadow: 0 0 5px #33ffff,
                0 0 10px #66ffff;
}
nav .logo:hover a {
    color: cyan;
    text-shadow: 0 0 5px #33ffff,
                0 0 10px #66ffff;
}
nav .logo:hover a span {
    color: white;
    text-shadow: 0 0 5px #33ffff,
                0 0 10px #66ffff;
}


ul {
    display: block; /* Cambiar a block si está oculto */
}


nav ul {
    float: right;
    list-style: none;
    margin-right: 120px; /* Centra el nav al centro */
    position: relative;
}
nav ul li {
    display: inline-block;
    background: #1b1b1b;
    margin: 0 5px;
}
nav ul li a {
    color: white;
    text-decoration: none;
    line-height: 70px;
    font-size: 18px;
    padding: 8px 15px;
}
nav ul li a:hover {
    color: cyan;
    border-radius: 5px;
    box-shadow: 0 0 5px #33ffff,
                0 0 5px #66ffff;
}
nav ul ul li a:hover {
    color: cyan;
    box-shadow: none;
}
nav ul ul {
    position: absolute;
    top: 90px;
    border-top: 3px solid cyan;
    opacity: 0;
    visibility: hidden;
    transition: top .3s;
    z-index: 1;
}

nav ul ul ul {
    border-top: none;
}
nav ul li:hover > ul {
    top: 70px;
    opacity: 1;
    visibility: visible;
}
nav ul ul li {
    position: relative;
    margin: 0px;
    width: 180px;
    float: none;
    display: list-item;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
nav ul ul ul li {
    width: 210px
}
nav ul ul li a {
    line-height: 50px;
}
nav ul ul ul li {
    position: relative;
    top: -70px;
    left: 150px;
} 

span .fa-plus {
    margin-left: 40px;
    font-size: 15px;
}
.show, .icon, input {
    display: none;
}

@media all and (max-width: 968px) {
    nav ul {
        margin-left: 0px;
        float: left;
    }
    nav .logo {
        padding-left: 30px;
        width: 100%;
    }
    nav ul li, nav ul ul li {
        display: block;
        width: 100%;
    }
    nav ul ul {
        top: 70px;
        position: static;
        border-top: none;
        float: none;
        display: none;
        opacity: 1;
        visibility: visible;
    }
    nav ul ul ul li{
        position: static;
    }
    nav ul ul li {
        border-bottom: 0px;
    }
    nav ul ul a {
        padding-left: 40px;
    }
    nav ul ul ul a {
        padding-left: 10px;
    }

    
    .show {
        display: block;
        color: white;
        font-size: 18px;
        padding: 0 20px;
        line-height: 70px;
        cursor: pointer;
    }
    .show:hover {
        color: cyan;
    }
    .icon {
        display: block;
        color: white;
        position: absolute;
        right: 40px;
        line-height: 70px;
        font-size: 25px;
        cursor: pointer;
    }
    nav ul li a:hover {
        box-shadow: none;
    }
    .show + a, ul {
        display: none;
    }
    [id^=btn]:checked + ul {
        display: block;
    }
}



/* Bandera */
.flag {
    width: 24px; /* Ajusta el tamaño de las imágenes de las banderas */
    height: auto;
    margin-right: 5px;
}


/*Para Banner de pagina principal video*/

.hero-video-container {
  width: 100%;
  height: 100vh; /* pantalla completa en desktop */
  overflow: hidden;
  position: relative;
}

.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-video-container {
    height: 90vh; /* más alto en móviles */
  }
}






/* Flecha para ir al top de la pagina */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #0099ff, #1dff28); /* Los colores vibrantes */
    color: white;
    padding: 15px;
    border-radius: 10px; /* Esquinas más suaves */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    text-decoration: none;
    font-size: 1.5rem;
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9; /* Ligero toque de transparencia */
}

.scroll-to-top:hover {
    transform: scale(1.15); /* Ligero aumento al pasar el mouse */
    opacity: 1;
}

.scroll-to-top i {
    pointer-events: none;
    font-size: 1.8rem; /* Tamaño un poco más grande para destacar */
}


@media (max-width: 768px) {
    .scroll-to-top {
      bottom: 20px; /* Ajustamos la posición */
      right: 20px; /* Más cercana al borde */
      padding: 12px; /* Botón un poco más pequeño */
      font-size: 1.2rem; /* Ícono más compacto */
    }
  }



/*----- Nosotros-----*/

.servicios{
    background-color: #FFFF;
    height: 100vh;
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 100px;
}
h1{
	font-size: 21px;
	font-weight: 600;
}

p{
	color: #777;
	font-size: 20px;
	font-weight: 300;
	line-height: 22px;
	padding: 10px;
}

.row{
    margin-left: 60px;
    margin-right: 60px;
	margin-top: 5%;
	display: flex;
	justify-content: space-between;
}
.servicios-col{
	flex-basis: 31%;
	background: #fff3f3;
	border-radius: 10px;
	margin-bottom: 5%;
	padding: 20px 12px;
	box-sizing: border-box;
	transition: 0.5s;
}
h3{
	text-align: center;
	font-weight: 600;
	margin: 10px 0;
}
.servicios-col:hover{
	box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}

.section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background: #777;
}
.section img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
}
.section div {
    max-width: 500px;
    margin: 0 20px;
}
.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}


.reverse {
    flex-direction: row-reverse;
}
@media (max-width: 768px) {
    .section {
        flex-direction: column;
        text-align: center;
    }
    .reverse {
        flex-direction: column;
    }
}


.btn, .boton, .btn-video {
  background-color: var(--color-accent);
  color: white;
  font-family: 'Montserrat', sans-serif;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn:hover, .boton:hover, .btn-video:hover {
  background-color: var(--color-gold);
  color: var(--color-primary);
  transform: scale(1.05);
}


/* Circulos 100% programas*/
.circulos {
  display: flex;
  flex-wrap: wrap; /* Permite que los elementos bajen en móviles */
  justify-content: center;
  align-items: center;
  gap: 20px; /* Espacio entre círculos */
  padding: 20px;
  background: #000;
    
}

.circulos .text h2 {
  color: var(--color-white);   /* Números en blanco */
  font-size: 2rem;
  font-weight: 700;
}

.circulos .text small {
  font-size: 1.2rem; /* tamaño del texto (Premiere, JS, etc.) */
  display: block;
  margin-top: 5px;
}

/* Ajustes para pantallas grandes */
@media (min-width: 1024px) {
  .circulos .text h2 {
    font-size: 2.5rem;
  }
  .circulos .text small {
    font-size: 1.5rem;
  }
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
  .circulos .text h2 {
    font-size: 2rem;
  }
  .circulos .text small {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .circulos .text h2 {
    font-size: 1.8rem;
  }
  .circulos .text small {
    font-size: 1rem;
  }
}


.box {
    position: relative;
    margin: 50px;
    
}
.box .text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    color: #ffffff;
}
.box .text .h2 {
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 1px;
}
.box .text .small{
    font-size: 18px;
    display: block;
}
.circle {
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.circle .points{
    width: 3px;
    height: 15px;
    background: #0007;
    position: absolute;
    border-radius: 3px;
    transform: rotate(calc(var(--i)*var(--rot))) translateY(-100px);
}
.points.marked {
    animation: glow 0.04s linear forwards;
    animation-delay: calc(var(--i)*0.03s);
}

@keyframes glow {
    0%
    {
        background: #0007;
        box-shadow: none;
        
    }
    100%
    {
        background: var(--bgColor);
        box-shadow: var(--bgColor);
    }
}

/* Media Query para pantallas pequeñas */
@media (max-width: 768px) {
    .box {
        flex: 1 1 140px; /* Ajuste menor en pantallas pequeñas */
    }

    .circle {
        max-width: 140px; /* Reducir tamaño en móviles */
    }
}

/* Responsive */
@media (max-width: 768px) {
    .circulos {
        flex-direction: column;
    }
    .box {
        flex: 1 1 140px;
    }

    .circle {
        max-width: 140px;
    }
}





/* Sección principal */
.programas {
    padding: 40px 0;
    background-color: #fff;
}

.categoria {
    margin-bottom: 40px;
}

.categoria h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #2d3e50;
}

.tarjetas {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.tarjeta {
    background-color: #2d3e50;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 1.2em;
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.tarjeta:hover {
    transform: translateY(-5px);
    background-color: #1e2a37;
}

    


/*seccion blog pagina*/

.blog-section {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ddd;
    flex-wrap: wrap; /* Asegura que los elementos se ajusten en pantallas pequeñas */
}
.blog-section img {
    width: 45%;
    height: auto;
    margin: 10px;
}
.blog-section .text {
    max-width: 50%;
    padding: 10px;
    box-sizing: border-box;
}
.blog-section:nth-child(even) {
    flex-direction: row-reverse;
}

/* Estilo Responsivo del Blog */
@media (max-width: 768px) {
    .blog-section {
        flex-direction: column; /* Cambia a una dirección vertical en pantallas pequeñas */
        text-align: center;
    }
    .blog-section img {
        width: 90%;
        margin: 10px auto; /* Centra las imágenes */
    }
    .blog-section .text {
        max-width: 100%;
        padding: 0 10px; /* Reduce los márgenes laterales */
    }
}

@media (max-width: 480px) {
    .blog-section img {
        width: 100%; /* Se asegura de que las imágenes ocupen todo el ancho disponible */
    }

}




/*imagen de creacion de videos musicales index*/
.container-video {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 50px;
    max-width: 1200px;
    margin: auto;
}
.text-column {
    flex: 1;
    padding-right: 20px;
    min-width: 300px;
}
.text-column h2 {
    font-size: 36px;
    color: #FFD700;
    font-weight: 600;
}
.text-column p {
    font-size: 18px;
    line-height: 1.6;
}
.btn-video {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 15px;
    padding: 10px 20px;
    background: #FFD700;
    color: #000;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    font-weight: bold;
}
.image-column {
    flex: 1;
    text-align: center;
    min-width: 300px;
}
.image-column img {
    max-width: 100%;
    border-radius: 10px;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }
    .text-column {
        padding-right: 0;
    }
}

h2{
	font-weight:400;
	text-align: center;
	padding: 20px 0;
	font-size: 20px;
}


h5 {
    font-weight: 400;
    text-align: center;
    padding: 20px 0;
    font-size: 40px;
}

.linea{
	background: #faf332;
	height: 5px;
	width: 100%;
	display: block;
}

.galeria{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	width: 95%;
	margin: auto;
	grid-gap: 10px;
	grid-gap: 10px;
	padding: 40px 0;
	overflow: hidden;
}

.galeria a:hover img {
	filter: blur(2px);
	transform: rotate(10deg) scale(1.3);

}


/*Aqui va .galeria-web para que funcione*/
.galeria .web{
    
    width: 100%;
    height: 100vh;
    display: flex;  
    padding: 10px 10px;
}



/*.galeria img{
	width: 100%;
	vertical-align: top;
	object-fit: cover;
	transition: transform 0.5s;
}
*/

.galeria a:hover img{
	
	transform: rotate(10deg) scale(1.3);
}



.galeria a{
    text-decoration: none;
}



.light-box{
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .5);
	transition: transform .3s ease-in-out;
	width: 100%;
	height: 100vh;
	z-index: 1000;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: scale(0);
}


.light-box img{
	width: 45vw;
	max-height: 100vh;
}

.light-box:target{
	transform: scale(1);
}

.close{
	display: block;
	position: absolute;
	top: 40px;
	right: 40px;
	color: #fff;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;	
}

.next{
	display: block;
	color: #fff;
	height: 30px;
	width: 30px;
	line-height: 30px;
	text-align: center;
}

.services-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    padding: 40px;
    background-color: #616161;
    align-items: center;
}
.services-info {
    max-width: 400px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.service {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.service:hover {
    transform: translateY(-5px);
}
h2 {

    font-size: 2em;
}
h3 {
    color: #000000;
    font-size: 1.5em;
}
h6 {
    color: #000000;
    font-size: 1.5em;
    margin-left: 60px;
    margin-right: 60px;
}
p {
    color: #000000;
}

@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .services-info {
        max-width: 100%;
    }
}

@media screen and (max-width:400px){ 
	.galeria{
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}
	.close{
		top: 20px;
		right: 20px;
	}
}

@media  screen and (max-width:767px){
    .galeria-web{
        display: grid;
    }    
}


/** Globales Contacto**/

img {
    max-width: 100%;
}

.contenedor {
    width: 100%;
    max-width: 120rem; /** = 1200px; **/
    margin: 0 auto;
}
h1 {
    font-size: 3.8rem;
}
h2 {
    font-size: 3.4rem;
}
h3 {
    font-size: 2rem;
}
h4 {
    font-size: 2.6rem;
}


/** Utilidades Contacto**/
.seccion {
    margin-top: 2rem;
    margin-bottom: 2rem;
    background: #F5F5F5;
}
.fw-300 {
    font-weight: 300;
}
.centrar-texto {
    text-align: center;
}
.d-block {
    display: block!important;
}
.contenido-centrado {
    max-width: 800px;
}



/** Botones Contacto **/
.boton {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.8rem;
    padding: 1rem 3rem;
    margin-top: 3rem;
    display: inline-block;
    text-align: center;
    border: none;
    display: block;
    flex: 0 0 100%;
}
@media (min-width: 768px) {
    .boton {
        display: inline-block;
        flex: 0 0 auto;
    }
}
.boton:hover {
    cursor: pointer;
}
.boton-amarillo {
    background-color: #E08709;
}
.boton-verde {
    background-color: #008a93;
}


/** Contacto Home **/
.imagen-contacto {
    background-image: url(../images/banner2);
    background-position: center center;
    background-size: cover;
    height: 40rem;
    display: flex;
    align-items: center;
}
.contenido-contacto {
    flex: 0 0 95%;
    color: #ffffff;
}
.contenido-contacto h2 {
    color: #000000;
}


.container-bar {
    width: 100%;
    max-width: 55px;
    position: fixed;
    left: 0;
    top: 25%;
}

.container-bar a {
    display: block;
    padding: 15px;
    text-decoration: none;
    font-size: 20px;
    position: relative;
    transition: all 500ms ease;
    color: #fff;
}

.container-bar a:hover {
    background: #1c1c1c;
}


.container-bar .icon-whatssap {
    background: #25d366;
    border-radius: 0px 5px 0px 0px;
}

.container-bar .icon-messenger {
    background: #006AFF;
}

.container-bar .icon-telegram {
    background: #0088cc;
}

.container-bar .icon-correo {
    background: #747473;
}

.container-bar .icon-google {
    background: #db4a39;
    border-radius: 0px 0px 5px 0px;
}

.container-bar a:hover #title {
    opacity: 1;
    visibility: visible;
    margin-left: 35px;
}

.container-bar #title{
    position: fixed;
    background: #1c1c1c;
    padding: 6px;
    border-radius: 3px;
    font-size: 15px;
    margin-top: -4px;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;

}

.container-bar #title:after {
    position: absolute;
    content: '';
    border-left: 7px solid transparent;
    border-right: 6px solid #1c1c1c;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    right: 100%;
    top: 8px;

}



/** Contacto **/
.contacto p {
    font-size: 1.4rem;
    color: #4f4f4f;
    margin: 2rem 0 0 0;
}
legend {
    font-size: 2rem;
    color: #4f4f4f;
}
label {
    font-weight: 600;
    text-transform: uppercase;
    display: block;
}


input[type="radio"]{
    width: 20px;
    margin: 0;
}
select {
    -webkit-appearance: none;
    appearance: none;
}
textarea {
    height: 10rem;
}
.forma-contacto {
    max-width:30rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}




/** Iconos Nosotros **/
@media (min-width: 768px) {
    .iconos-nosotros {
        display: flex;
        justify-content: space-between;
    }
}
.icono {
    text-align: center;
}
@media (min-width: 768px) {
    .icono {
        flex-basis: calc(33.3% - 1rem);
    }
}
.icono h3 {
    text-transform: uppercase;
}


/* Nosotros **/
@media (min-width: 768px) {
    .contenido-nosotros {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 2rem;
    }
}

.texto-nosotros blockquote {
    font-weight: 900;
    font-size: 2rem;
    margin: 0;
    padding: 1rem 0 3rem 0;
}





/** Iconos Nosotros **/
@media (min-width: 768px) {
    .iconos-nosotros {
        display: flex;
        justify-content: space-between;
    }
}
.icono {
    text-align: center;
}
@media (min-width: 768px) {
    .icono {
        flex-basis: calc(33.3% - 1rem);
    }
}
.icono h3 {
    text-transform: uppercase;
}
/** Anuncios **/

@media (min-width: 768px) {
    .contenedor-anuncios{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}
.anuncio {
    border: 1px solid #B5B5B5;
    background-color: #F5F5F5;
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
    .anuncio {
        flex: 0 0 calc(33.3% - 1rem);
    }
}
.contenido-anuncio {
    padding: 2rem;
}
.contenido-anuncio h3, 
.contenido-anuncio p  {
    margin: 0;
}
.precio {
    color: #71B100;
    font-weight: 700;
}
.iconos-caracteristicas {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-evenly;
    flex: 1;
    max-width: 500px;
}
.iconos-caracteristicas li {
    /* flex: 1; */
    display: flex;
}
.iconos-caracteristicas li img {
    margin-right: 2rem;
}
.ver-todas {
    display: flex;
    justify-content: flex-end;
}


/** Contacto Home **/
.imagen-contacto {
    background-image: url(../images/banner2.jpg);
    background-position: center center;
    background-size: cover;
    height: 20rem;
    display: flex;
    align-items: center;
}
.contenido-contacto {
    flex: 0 0 95%;
    color: #ffffff;
}
.contenido-contacto h2 {
    color: #d60606;
}
.contenido-contacto p {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
}



/* Formulario de Contacto y Mapa*/

/* Estilos específicos para el formulario */
.contact-form {
    position: relative;
    z-index: 5; /* Prioridad para el formulario */
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 50px auto;
}


nav {
    position: relative;
    z-index: 10; /* Menú tiene mayor prioridad sobre el formulario */
}

nav input[type="text"] {
    position: relative;
    z-index: 15; /* Inputs del menú reciben prioridad solo en el contexto del menú */
}


.contact-form input,
.contact-form textarea {
    position: relative;
    z-index: 10;
    pointer-events: auto;
    display: block; /* Aseguramos que no sean ocultos */
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: #f9f9f9;
    color: #333;
}

.contact-form select {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: #f9f9f9;
    color: #333;
}

.contact-form select:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Botón del formulario */
.contact-form .btn-submit {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background-color: #007BFF;
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.contact-form .btn-submit:hover {
    background-color: #0056b3;
}

/* Aseguramos que el menú no interfiera */
nav input[type="text"] {
    position: relative;
    z-index: 30; /* Prioridad superior para el input del menú */
    pointer-events: auto; /* Garantiza que el input del menú siga funcional */
}



.hidden {
    display: none; /* Oculta el mensaje inicialmente */
}

#confirmationMessage {
    margin-top: 20px;
    padding: 15px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
}




/* footer section styling */
footer.footer-index {
    background: #000; /* Fondo negro */
    color: #fff; /* Texto blanco */
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer.footer-index .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

footer.footer-index .footer-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
    text-align: left; /* Alinear texto a la izquierda */
}

footer.footer-index .footer-column .logo img {
    width: 150px; /* Tamaño del logo */
}

footer.footer-index .footer-column-enlaces h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: cyan; /* Color cian para los encabezados */
}

footer.footer-index .footer-column-enlaces ul {
    list-style: none;
    padding: 0;
}

footer.footer-index .footer-column-enlaces ul li {
    margin: 5px 0;
}

footer.footer-index .footer-column-enlaces ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer.footer-index .footer-column-enlaces ul li a:hover {
    color: cyan; /* Efecto hover */
}

footer.footer-index .redes-sociales {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

footer.footer-index .redes-sociales a {
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

footer.footer-index .redes-sociales a:hover {
    color: #00ff00; /* Verde neón */
    text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00; /* Efecto neón */
}

footer.footer-index .redes-sociales  h4 {
    font-size: 1.5rem;
}

footer.footer-index .rights {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #aaa;
}

/* Responsive Footer */
@media (max-width: 768px) {
    footer.footer-index .footer-content {
        flex-direction: column;
        align-items: center;
    }

    footer.footer-index .footer-column {
        width: 100%;
        margin-bottom: 20px;
    }

   

    footer.footer-index .footer-column-enlaces ul {
        text-align: center;
    }

    footer.footer-index .footer-column-enlaces ul li {
        margin: 10px 0;
    }
}

/* Centrar todo en dispositivos pequeños */
@media (max-width: 768px) {
    footer.footer-index {
        display: flex;
        flex-direction: column; /* Organizar contenido en una sola columna */
        align-items: center; /* Centrar todos los elementos */
        text-align: center; /* Centrar texto */
    }

    footer.footer-index .logo {
        margin-bottom: 20px; /* Espacio debajo del logo */
        text-align: center; /* Centrar logo */
    }

    footer.footer-index .logo img {
        width: 150px; /* Tamaño del logo */
        display: inline-block;
    }

    footer.footer-index .footer-column-enlaces ul {
        text-align: center; /* Centrar los enlaces */
    }

    footer.footer-index .footer-column-enlaces ul li {
        margin: 10px 0; /* Espaciado entre enlaces */
    }

    footer.footer-index .redes-sociales {
        justify-content: center; /* Centrar los íconos de redes sociales */
        margin-top: 20px; /* Espaciado arriba */
    }

    footer.footer-index .rights {
        margin-top: 20px; /* Espaciado arriba */
        text-align: center; /* Centrar derechos */
    }
}


@media (max-width: 768px) {
    footer.footer-index .footer-column-enlaces ul {
        display: block; /* Asegura que las listas sean visibles */
        padding: 0;
        margin: 0;
        text-align: center; /* Centrar los enlaces en responsive */
    }

    footer.footer-index .footer-column-enlaces ul li {
        margin: 10px 0; /* Espaciado entre enlaces */
        display: block; /* Asegurar visibilidad de los elementos de lista */
    }

    footer.footer-index .footer-column-enlaces ul li a {
        color: #fff; /* Color blanco para los enlaces */
        text-decoration: none; /* Elimina el subrayado */
        font-size: 1rem; /* Ajuste del tamaño de fuente */
        display: inline-block; /* Asegura que los enlaces no se oculten */
        transition: color 0.3s ease; /* Efecto suave para hover */
    }

    footer.footer-index .footer-column-enlaces ul li a:hover {
        color: cyan; /* Cambia el color al pasar el cursor */
    }
}


@media (min-width: 1024px) {
    footer.footer-index .footer-content {
        justify-content: space-around; /* Separar más las columnas */
        gap: 40px; /* Espaciado adicional entre columnas */
    }

    footer.footer-index .footer-column {
        margin: 20px; /* Más margen entre columnas */
    }

    footer.footer-index .footer-column-enlaces ul li {
        margin: 10px 0; /* Más espacio entre los enlaces */
    }

    footer.footer-index .redes-sociales {
        gap: 30px; /* Más espacio entre íconos de redes sociales */
    }
}

/* Estilos para pagina de Politica y Privacidad*/

main-politica {
    padding: 20px;
    background-color: #121212; /* Fondo más oscuro para resaltar el contenido */
}



/* Sección Política de Privacidad */
.privacy .container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.privacy h1 {
    color: #002f6c;
    text-align: center;
    margin-bottom: 20px;
}

.privacy h2 {
    color: #004085;
    margin-top: 20px;
    border-bottom: 2px solid #d9e2ef;
    padding-bottom: 5px;
}

.privacy p {
    color: #555;
    margin: 10px 0;
    text-align: justify;
}

.privacy a {
    color: #004085;
    text-decoration: underline;
}

.privacy a:hover {
    color: #002f6c;
}



/*Terminos y Condiciones*/

/* Estilos específicos para la sección de Términos y Condiciones */
.terms {
    background-color: white; /* Mantén un fondo limpio solo para esta sección */
    color: #333; /* Texto oscuro para mayor legibilidad */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra suave */
    max-width: 800px;
    margin: 20px auto;
}

.terms h1 {
    color: var(--color-primary); /* Utiliza el color principal que ya tienes definido */
    text-align: center;
    margin-bottom: 20px;
}

.terms h2 {
    color: var(--color-secondary); /* Usa un color secundario existente, si tienes */
    margin-top: 20px;
    border-bottom: 2px solid #d9e2ef;
    padding-bottom: 5px;
}

.terms p {
    color: #555; /* Texto de párrafo legible */
    text-align: justify;
}

.terms a {
    color: var(--color-accent); /* Usa el color de acento existente */
    text-decoration: underline;
}

.terms a:hover {
    color: var(--color-primary);
}

/* Responsivo */
@media (max-width: 768px) {
    .terms {
        padding: 15px;
    }
}



/* Sección Política de Cookies */
.cookies .container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cookies h1 {
    color: #002f6c;
    text-align: center;
    margin-bottom: 20px;
}

.cookies h2 {
    color: #004085;
    margin-top: 20px;
    border-bottom: 2px solid #d9e2ef;
    padding-bottom: 5px;
}

.cookies p {
    color: #555;
    margin: 10px 0;
    text-align: justify;
}

.cookies ul {
    margin-left: 20px;
    color: #555;
}

.cookies ul li {
    margin: 8px 0;
}

.cookies a {
    color: #004085;
    text-decoration: underline;
}

.cookies a:hover {
    color: #002f6c;
}

/* Responsividad */
@media (max-width: 768px) {
    .cookies .container {
        padding: 15px;
    }

    .footer {
        padding: 15px;
    }
}


/* Sección Aviso Legal */
.legal .container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.legal h1 {
    color: #002f6c;
    text-align: center;
    margin-bottom: 20px;
}

.legal h2 {
    color: #004085;
    margin-top: 20px;
    border-bottom: 2px solid #d9e2ef;
    padding-bottom: 5px;
}

.legal p {
    color: #555;
    margin: 10px 0;
    text-align: justify;
}

.legal a {
    color: #004085;
    text-decoration: underline;
}

.legal a:hover {
    color: #002f6c;
}

/* Responsividad */
@media (max-width: 768px) {
    .legal .container {
        padding: 15px;
    }

    .footer {
        padding: 15px;
    }
}



/*Seccion modificada de Bienvenidad*/
.contenedor {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.seccion {
  padding: 4rem 0;
  background-color: #f9f9f9;
}

.fw-300 {
  font-weight: 300;
}

.centrar-texto {
  text-align: center;
}

.linea {
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffa500;
  margin: 1rem auto;
  border-radius: 2px;
}

.intro-landing p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #ffa500;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e69500;
}

.btn {
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transform: scale(1);
}

.btn:hover {
  transform: scale(1.05);
}
