@charset "utf-8";
/* CSS Document */
/*=============================================
ESCRITORIO (XL revisamos en 1366px en adelante)
=============================================*/
/* 1. Definición */
@font-face {
  font-family: 'PaytoneOne'; /* Usa un nombre simple y corto */
  src: url('PaytoneOne-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* 2. Aplicación */
* {
  /* Usamos exactamente el mismo nombre de arriba, entre comillas */
  font-family: 'PaytoneOne', sans-serif;
}

/* No necesitas declararlo en el body si ya lo pusiste en el selector universal (*) */
/******************************************************************
MENU ACTUAL
***************************************************************/

  /**************************************************************
  BANNER PRINCIPAL
  ******************************************************/
.hero{
   background-image: url("../imagenes/banner.png");
    background-repeat: no-repeat;
    background-size: 100% 100%; /* Fuerza a la imagen a estirarse a todo el ancho y alto */
    background-position: center;
    min-height: 100vh;
    width: 100%;
    height: auto;
    padding-bottom: 20px;
    position: relative;

}
.btn-amarillo{
  position: absolute;
  top:77%;
  left: 21%;
  border: solid 1px #ffd407;
  background-color: #ffd407;
  padding: auto;
  color: #fff;
  border-radius: 20px 20px 20px 20px;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 10px;
  padding-bottom: 10px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s;
}
.btn-amarillo:hover {
  background-color: #ffd407;
  transform: scale(1.05);
  color: #000;
}
a {
    text-decoration: none;    /* Quita el subrayado */
    color: inherit;           /* Hace que el color sea el mismo que el del texto padre */
    cursor: default;          /* (Opcional) Quita la "manito" para que no parezca link */
    outline: none;            /* Quita el borde que sale al hacer clic o tabular */
}

/* Para asegurar que no cambie de color al visitarlo o pasar el mouse */
a:visited, a:hover, a:active {
    color: inherit;
    text-decoration: none;
}

/* Ajustes para móviles */
@media (max-width: 575.98px) {
   .hero{
   background-image: url("../imagenes/logo2.png");
    background-repeat: no-repeat;
    background-size: 100% 100%; /* Fuerza a la imagen a estirarse a todo el ancho y alto */
    background-position: center;
    min-height: 90vh;
    width: 100%;
    height: auto;
    padding-bottom: 20px;
    /*position: relative;*/
    /* --- ESTO ES LO QUE DEBES AGREGAR --- */
    display: flex;             /* Activa el modo flexible */
    flex-direction: column;    /* Alinea los hijos en columna (uno abajo del otro) */
    justify-content: center;   /* Centra verticalmente cuando la dirección es columna */
    align-items: center;       /* Centra horizontalmente (opcional, pero suele usarse en héroes) */
    position: relative;

  }
/*.btn-amarillo{
  position: absolute;
  top:360px;
  left: 75px;
  border: solid 1px #ffd407;
  background-color: #ffd407;
  padding: auto;
  color: #fff;
  border-radius: 20px 20px 20px 20px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s;
  font-size: 13px;
}*/
.btn-amarillo {
  position: absolute;
  /* Ajusta estos valores según dónde deba caer exactamente el botón */
  top: 70%;   /* En lugar de 360px */
  left: 23%;  /* En lugar de 75px */
  
  border: solid 1px #ffd407;
  background-color: #ffd407;
  color: #fff;
  border-radius: 20px;
  padding: 5px 10px;
  cursor: pointer;
  font-weight: 700;
 /* transition: transform 0.2s;*/
  font-size: 13px;
  
  /* Esto asegura que el punto de anclaje sea el centro del botón */
  /*transform: translate(-50%, -50%); */
}

}
@media (min-width: 576px) and (max-width: 767.98px) {
   .hero{
   background-image: url("../imagenes/logo2.png");
    background-repeat: no-repeat;
    background-size: 100% 100%; /* Fuerza a la imagen a estirarse a todo el ancho y alto */
    background-position: center;
    min-height: 90vh;
    width: 100%;
    height: auto;
    padding-bottom: 20px;
    /*position: relative;*/
    /* --- ESTO ES LO QUE DEBES AGREGAR --- */
    display: flex;             /* Activa el modo flexible */
    flex-direction: column;    /* Alinea los hijos en columna (uno abajo del otro) */
    justify-content: center;   /* Centra verticalmente cuando la dirección es columna */
    align-items: center;       /* Centra horizontalmente (opcional, pero suele usarse en héroes) */
    position: relative;
}

.btn-amarillo{
  position: absolute;
  top:70%;
  left: 23%;
  border: solid 1px #ffd407;
  background-color: #ffd407;
  padding: auto;
  color: #fff;
  border-radius: 20px 20px 20px 20px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s;
  font-size: 14px;
}
   
}

@media (min-width: 768px) and (max-width: 991.98px) {
       .hero{
   background-image: url("../imagenes/logo2.png");
    background-repeat: no-repeat;
    background-size: 100% 100%; /* Fuerza a la imagen a estirarse a todo el ancho y alto */
    background-position: center;
    min-height: 90vh;
    width: 100%;
    height: auto;
    padding-bottom: 20px;
    /*position: relative;*/
    /* --- ESTO ES LO QUE DEBES AGREGAR --- */
    display: flex;             /* Activa el modo flexible */
    flex-direction: column;    /* Alinea los hijos en columna (uno abajo del otro) */
    justify-content: center;   /* Centra verticalmente cuando la dirección es columna */
    align-items: center;       /* Centra horizontalmente (opcional, pero suele usarse en héroes) */
      }

.btn-amarillo{
  position: absolute;
  top: 70%;
  left: 23%;
  border: solid 1px #ffd407;
  background-color: #ffd407;
  padding: auto;
  color: #fff;
  border-radius: 20px 20px 20px 20px;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 10px;
  padding-bottom: 10px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s;
  font-size: 14px;
}
   

  
  
}
@media (min-width: 992px) and (max-width: 1119.98px) {
    .hero{
   background-image: url("../imagenes/logo2.png");
    background-repeat: no-repeat;
    background-size: 100% 100%; /* Fuerza a la imagen a estirarse a todo el ancho y alto */
    background-position: center;
    min-height: 100vh;
    width: 100%;
    height: auto;
    padding-bottom: 20px;
   
    display: flex;             /* Activa el modo flexible */
    flex-direction: column;    /* Alinea los hijos en columna (uno abajo del otro) */
    justify-content: center;   /* Centra verticalmente cuando la dirección es columna */
    align-items: center;       /* Centra horizontalmente (opcional, pero suele usarse en héroes) */
    position: relative;
}

.btn-amarillo{
  position: absolute;
  top: 70%;
  left: 23%;
  border: solid 1px #ffd407;
  background-color: #ffd407;
  padding: auto;
  color: #fff;
  border-radius: 20px 20px 20px 20px;
  padding-left: 35px;
  padding-right: 35px;
  padding-top: 10px;
  padding-bottom: 10px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s;
  font-size: 14px;
}
   

   

}
/**************************************************************
  CELEBRACION
  ******************************************************/
.celebracion{
  background-image: url("../imagenes/fondoR.png");
    background-repeat: no-repeat;
    background-size: 100% 100%; /* Fuerza a la imagen a estirarse a todo el ancho y alto */
    background-position: center;
    min-height: 65vh;
    width: 100%;
    height: auto;
    padding-bottom: 0px;
}

  

.text-warning {
  color: #eb7d33 !important; /* El tono naranja/amarillo del diseño */
}
.separador-header-inicio{
  padding-top: 1px;
}
/* Detalles de "ESTD 1962" */
.line-divider {
  height: 2px;
  width: 100px;
  background-color:  #eb7d33;
}

.estd-text, .year-text {
  letter-spacing: 4px;
  font-size: 0.9rem;
  font-weight: 300;
}

/* Ajustes de texto para la descripción */
.description-box p {
  font-weight: 200;
  text-align: justify;
  line-height: 1.6;
  
}
/* Columna Relativa para el Bonche */
        .div-relativo-bonche {
            position: relative;
            overflow: visible !important; 
        }
        .div-text-principal {
           position: relative; 
            overflow: visible !important;
      }   

        /* Estilos de la Flor (Bonche) */
        .bonche-div {
            position: absolute;
            /* Posicionamiento para que sobresalga arriba a la derecha */
            top: -250px; 
            right: -90px;
            z-index: 10;
            pointer-events: none; /* Para que no interfiera si hay enlaces debajo */
            
        }

        .bonche-div img {
            width: 230px; /* Tamaño ajustable */
            height: auto;
            /* Filtro opcional para resaltar si el fondo es muy oscuro */
            filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.2));
        }

         .guaca-div {
            position: absolute;
            /* Posicionamiento para que sobresalga arriba a la derecha */
            bottom: -300px;
            left: -90px;
            z-index: 10;
            pointer-events: none; /* Para que no interfiera si hay enlaces debajo */
            
        }

        .guaca-div img {
            width: 200px; /* Tamaño ajustable */
            height: auto;
            /* Filtro opcional para resaltar si el fondo es muy oscuro */
            
        }



/* Ajustes para móviles */
@media (max-width: 575.98px) {
    .container-videos {
        padding-top: 250px; /* Menos espacio en móviles */
    }
    .vueltas_seccion {
  background-image: url("../imagenes/fondoVuelltas2.png");
    background-repeat: no-repeat;
    background-size: 100% 100%; /* Fuerza a la imagen a estirarse a todo el ancho y alto */
    background-position: center;
    min-height: 100vh;
    width: 100%;
    height: auto;
    padding-bottom: 10px;

}
.vueltas-text{
  padding-top: 10px;
  padding-bottom: 0px;
}
.description-box p {
  font-weight: normal;
  text-align: justify;
  line-height: 1.6;
  font-size: 14px;
  padding-left: 10px;
  padding-right: 10px;
  
}

}
@media (min-width: 576px) and (max-width: 767.98px) {
    .container-videos {
        padding-top: 200px; /* Menos espacio en móviles */
    }
    .vueltas_seccion {
  background-image: url("../imagenes/fondoVuelltas2.png");
    background-repeat: no-repeat;
    background-size: 100% 100%; /* Fuerza a la imagen a estirarse a todo el ancho y alto */
    background-position: center;
    min-height: 100vh;
    width: 100%;
    height: auto;
    padding-bottom: 10px;

}
.vueltas-text{
  padding-top: 0px;
  padding-bottom: 0px;
}
   
}

@media (min-width: 768px) and (max-width: 991.98px) {
   .container-videos {
        padding-top: 200px; /* Menos espacio en móviles */
    }
  .vueltas_seccion {
    background-image: url("../imagenes/fondoVueltas.png");
    background-repeat: no-repeat;
    background-size: 100% 100%; /* Fuerza a la imagen a estirarse a todo el ancho y alto */
    background-position: center;
    min-height: 100vh;
    width: 100%;
    height: auto;
    padding-bottom: 10px;

  }
  .vueltas-text{
    padding-top: 200px;
    padding-bottom: 0px;
  }
   

  
  
}

/*=============================================
    PROGRAMACION 
=============================================*/
.programacion{
  background-image: url("../imagenes/fondoProg.png");
    background-repeat: no-repeat;
    background-size: 100% 100%; /* Fuerza a la imagen a estirarse a todo el ancho y alto */
    background-position: center;
    min-height: 85vh;
    width: 100%;
    height: auto;
    padding-bottom: 0px;
  position: relative;
}
.section-relativa-feria{
  position: relative;
}
.border-top-custom{
  border-top: solid 1px #FFF;
  border-bottom:  solid 1px #FFF;
  padding-bottom: 2px;
  padding-top: 2px;

    
}
.numero-box img{
  height: 80px;
  
}
.btn-prog-completa{
  border: solid 2px #fff;
  border-radius: 20px 20px 20px 20px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  cursor: pointer;
}
.div-64{
  position: absolute;
  
  bottom: -90px;
  right: -20px;
}
.div-64 img{
  width: 180px;
  height: auto;
}
/********************************************************************
TEXTO FERIA NACIONAL DE LA GANADERIA
**************************************************************/
.div-text-principal{
  text-align: justify;
  
}


/*=============================================
     GALERIA DE TURISMO 
=============================================*/
.turismo{
  max-height: 95hv;
}
.text-azul-feria { color: #004a99; }
.text-naranja-feria { color: #ff6600; }

.mosaico-item {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}

/* Altura de la imagen principal */
.card-grande {
  height: 600px;
}

/* Las pequeñas se calculan para que sumadas den 600px */
.card-pequena {
  height: calc(300px - 0.5rem); /* 0.5rem compensa la mitad del gap (g-3) */
}

.mosaico-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Recorta la imagen para llenar el espacio sin deformarse */
  display: block;
}

.mosaico-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
}

.coco-div{
  position: absolute;
  right: -80px;
  bottom: -50px;
  
}
.coco-div img{
  height: 360px;
  width: auto;
}

@media (max-width: 767.98px) {
  .card-grande { height: 400px; }
  .card-pequena { height: 250px; }
}
/*=============================================
      DEPARTAMENTO DE FIESTA
=============================================*/
/* Colores de Identidad */
.text-azul-feria { color: #004a99; }
.text-naranja-feria { color: #ff6600; }

/* Configuración del Grid Mosaico */
.mosaico-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 15px;
}

.mosaico-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

/* Posicionamiento de las piezas */
.card-grande {
  grid-row: 1 / span 2; /* Ocupa las dos filas de la izquierda */
}

.mosaico-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ajuste perfecto sin deformar */
  transition: transform 0.5s ease;
}

.mosaico-item:hover img {
  transform: scale(1.05);
}

/* Estilo del texto sobre la imagen */
.mosaico-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: white;
}

/* --- MARQUESINA ANIMADA --- */
.marquee-container{
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
}

.marquee-track{
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.item-marquee{
    white-space: nowrap;
    margin-right: 60px;
    font-size: clamp(14px,2vw,28px);
    font-weight: bold;
    color: #000;
}

@keyframes marquee {

    from{
        transform: translateX(0);
    }

    to{
        transform: translateX(-50%);
    }

}

/* --- RESPONSIVIDAD --- */
@media (max-width: 768px) {
  .mosaico-container {
    grid-template-columns: 1fr; /* Una sola columna en móvil */
    grid-template-rows: auto;
  }
  
  .card-grande {
    grid-row: auto;
    height: 350px;
  }
  
  .card-concierto, .card-turismo {
    height: 250px;
  }
}

/*=============================================
       LAS VUELTAS DE LA FERIA
=============================================*/
.vueltas_seccion {
  background-image: url("../imagenes/fondoVueltas.png");
    background-repeat: no-repeat;
    background-size: 100% 100%; /* Fuerza a la imagen a estirarse a todo el ancho y alto */
    background-position: center;
    min-height: 90vh;
    width: 100%;
    height: auto;
    padding-bottom: 20px;

}
.vueltas-text{
  padding-top: 220px;
  padding-bottom: 0px;
}

/* Ajuste para que los videos bajen y dejen ver el título que está en tu fondo */
.container-videos {
    padding-top: 15%; /* Usa porcentajes para que sea más responsive */
    padding-bottom: 50px;
}

/* Contenedor principal del video */
.video-card {
    /*border-radius: 20px;*/
    overflow: hidden;
    /*border: 4px solid #fff;*/
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: scale(1.02);
}

/* Capa sobre la imagen */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Oscurece un poco la imagen */
    transition: background 0.3s ease;
}

.video-card:hover .video-overlay {
    background: rgba(0, 0, 0, 0.5); /* Se oscurece más al pasar el mouse */
}

/* Botón Play */
.play-btn {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e30613; /* Rojo institucional */
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(255,255,255,0.5);
}

/* Si no usas FontAwesome, aquí un triángulo básico con CSS para el play */
.play-btn i::before {
    content: "";
    display: inline-block;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid currentColor;
    margin-left: 5px;
}

/* Estilo de los textos sobre la imagen */
.video-title {
    font-size: 1.1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin: 0;
}  
    


/* Marquesina */
.marquee-container {
    white-space: nowrap;
    overflow: hidden;
    border-bottom: 2px solid #000;
    padding: 10px;
}

.marquee-content {
    display: inline-block;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

/* Ajustes para móviles */
@media (max-width: 575.98px) {
    .container-videos {
        padding-top: 250px; /* Menos espacio en móviles */
    }
    .vueltas_seccion {
  background-image: url("../imagenes/fondoVuelltas2.png");
    background-repeat: no-repeat;
    background-size: 100% 100%; /* Fuerza a la imagen a estirarse a todo el ancho y alto */
    background-position: center;
    min-height: 100vh;
    width: 100%;
    height: auto;
    padding-bottom: 10px;

}
.vueltas-text{
  padding-top: 10px;
  padding-bottom: 0px;
}

}
@media (min-width: 576px) and (max-width: 767.98px) {
    .container-videos {
        padding-top: 200px; /* Menos espacio en móviles */
    }
    .vueltas_seccion {
  background-image: url("../imagenes/fondoVuelltas2.png");
    background-repeat: no-repeat;
    background-size: 100% 100%; /* Fuerza a la imagen a estirarse a todo el ancho y alto */
    background-position: center;
    min-height: 100vh;
    width: 100%;
    height: auto;
    padding-bottom: 10px;

}
.vueltas-text{
  padding-top: 0px;
  padding-bottom: 0px;
}
   
}

@media (min-width: 768px) and (max-width: 991.98px) {
   .container-videos {
        padding-top: 200px; /* Menos espacio en móviles */
    }
  .vueltas_seccion {
    background-image: url("../imagenes/fondoVueltas.png");
    background-repeat: no-repeat;
    background-size: 100% 100%; /* Fuerza a la imagen a estirarse a todo el ancho y alto */
    background-position: center;
    min-height: 100vh;
    width: 100%;
    height: auto;
    padding-bottom: 10px;

  }
  .vueltas-text{
    padding-top: 200px;
    padding-bottom: 0px;
  }
   

  
  
}

/*=============================================
       VISITA
=============================================*/
.planea-visita {
    background-image: url("../imagenes/fondoVisita.png");
    background-repeat: no-repeat;
    background-size: cover; /* Cambiado a cover para mejor visualización */
    background-position: center;
    min-height: 90vh;
    width: 100%;
    display: flex;
    align-items: center; /* Centrado vertical */
    padding: 50px 0;
}

.container-planea {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-left {
    max-width: 500px; /* Evita que el texto se extienda demasiado a la derecha */
    text-align: left;
}

.textPlano {
    color: white;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.titulo-principal {
    font-size: 3.5rem; /* Ajusta según necesites */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-orange { color: #F37021; } /* Color naranja de la feria */
.text-white { color: white; }

.descripcion-feria {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* --- Botones --- */
.botones-container {
    display: flex;
    gap: 15px;
}

.btn-azul {
    background-color: #008AD2;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}
/*
.btn-azul:hover{
  color: #F37021;

}
*/
.btn-outline {
    border: 2px solid white;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-outline:hover {
    background-color: white;
    color: #333;
}
/* --- RESPONSIVE DESIGN --- */

/* Ajustes para móviles */
@media (max-width: 575.98px) {
   .planea-visita {
    background-image: url("../imagenes/fondoVisita2.png");
    background-repeat: no-repeat;
    background-size: cover; /* Cambiado a cover para mejor visualización */
    background-position: center;
    min-height: 90vh;
    width: 100%;
    display: flex;
    align-items: center; /* Centrado vertical */
    padding: 50px 0;
}

    .container-planea {
        width: 100%;
    }

    .content-left {
        max-width: 100%;
        text-align: center; /* Centramos el texto en móviles para mejor estética */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .titulo-principal {
        font-size: 2.2rem;
    }

    .botones-container {
        flex-direction: column; /* Botones uno sobre otro en pantallas muy pequeñas */
        width: 80%;
        gap: 10px;
    }

    .btn-azul, .btn-outline {
        width: 100%; /* Botones de ancho completo para facilitar el clic táctil */
        text-align: center;
    }

}
@media (min-width: 576px) and (max-width: 767.98px) {
  .planea-visita {
    background-image: url("../imagenes/fondoVisita2.png");
    background-repeat: no-repeat;
    background-size: cover; /* Cambiado a cover para mejor visualización */
    background-position: center;
    min-height: 90vh;
    width: 100%;
    display: flex;
    align-items: center; /* Centrado vertical */
    padding: 50px 0;
    
}

    .container-planea {
        width: 100%;
    }

    .content-left {
        max-width: 100%;
        text-align: center; /* Centramos el texto en móviles para mejor estética */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .titulo-principal {
        font-size: 2.2rem;
    }

    .botones-container {
        flex-direction: column; /* Botones uno sobre otro en pantallas muy pequeñas */
        width: 50%;
        gap: 10px;
    }

    .btn-azul, .btn-outline {
        width: 100%; /* Botones de ancho completo para facilitar el clic táctil */
        text-align: center;
    }

  
  
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .planea-visita {
    background-image: url("../imagenes/fondoVisita2.png");
    background-repeat: no-repeat;
    background-size: cover; /* Cambiado a cover para mejor visualización */
    background-position: center;
    min-height: 90vh;
    width: 100%;
    display: flex;
    align-items: center; /* Centrado vertical */
    padding: 50px 0;
    
}

 .container-planea {
        width: 100%;
    }

    .content-left {
        max-width: 100%;
        text-align: center; /* Centramos el texto en móviles para mejor estética */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .titulo-principal {
        font-size: 2.2rem;
    }

    .botones-container {
        flex-direction: column; /* Botones uno sobre otro en pantallas muy pequeñas */
        width: 50%;
        gap: 10px;
    }

    .btn-azul, .btn-outline {
        width: 100%; /* Botones de ancho completo para facilitar el clic táctil */
        text-align: center;
    }


}


@media (min-width: 992px) and (max-width: 1199.98px) {
  .planea-visita {
    background-image: url("../imagenes/fondoVisita2.png");
    background-repeat: no-repeat;
    background-size: cover; /* Cambiado a cover para mejor visualización */
    background-position: center;
    min-height: 90vh;
    width: 100%;
    display: flex;
    align-items: center; /* Centrado vertical */
    padding: 50px ;
    
}

}



/*=============================================
      FOOTER
=============================================*/


/* --- RESPONSIVE --- */
/*@media (max-width: 768px) {
  
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-col.redes {
        justify-content: center;
        display: flex;
    }
    
    .iconos-sociales {
        justify-content: center;
    }
}*/
/* --- FOOTER RESPONSIVE --- */
/*
@media (max-width: 992px) {
    .footer-container {
         Pasamos de 3 columnas a 2 en tablets 
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-col.redes {
        grid-column: span 2;  Las redes sociales ocupan todo el ancho abajo 
        justify-content: center;
        display: flex;
    }

    .iconos-sociales {
        justify-content: center;
    }
}
*/
/*
@media (max-width: 768px) {
    .seccion-footer {
        background-position: 35% center;  Ajustamos el fondo para que no se pierda la esencia 
        padding-top: 40px;
        height: auto; Dejamos que crezca según el contenido 
    }

    .footer-container {
         Todo en una sola columna en móviles 
        grid-template-columns: 1fr;
        text-align: center;
        margin-top: 50px;
    }

    .footer-col.central {
        order: 1; Movemos los links arriba 
    }

    .texto-descripcion {
        order: 2; La descripción después 
        margin: 20px auto;
        max-width: 90%;
    }

    .footer-col.redes {
        order: 3;
        grid-column: span 1;
    }

    .footer-bottom h2 {
        font-size: 1.8rem; Reducimos el logo inferior
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}


*/



/**********************************
RENPOSNSIVE GENERAL
*******************************/

@media (max-width: 991.98px) {
  .textPlano{
     font-size: 12px;
  }
  .textPlanoInput{
    font-size: 26px;
  }
  .menu-div{
     position: fixed;
      top: 0px;
      background:#FFF;
    
      height: 100dvh;
      z-index: 110;
      overflow-x: hidden;
      overflow-y: auto;
      
      padding-left: 15px;
      padding-right: 15px;
 
  }
  .nomenu{
     right: -200000px;
     transform: translateY(-20000x);
  }
  .simenu{
    right: -0px;
    transform: translateY(0x);

  }
  .item-text{
      font-weight:bold;
      padding: 10px;
      border-bottom: solid 1px #007bff31;
 

    }
.tarjeta-imagen {
    max-width: 100%;
    max-width: 350px;
  }

  .imagen-contenedor {
    aspect-ratio: 4 / 3;
  }
   .footer {
  padding: 10px;
  
  max-height: 100vh;                    /* Ajusta el color del texto si lo necesitas */
}
.div-burbuja {
     bottom: -500px; /* Ajusta según altura del contenido */
}

.carousel-indicators [data-bs-target] {
  width: 15px;           /* Más ancho */
  height: 15px;          /* Más alto */
  
}
.carousel-indicators .active {
  opacity: 1;
  transform: scale(1); /* Efecto de agrandamiento al estar activo (opcional) */
}
/********************************************************************
TEXTO FERIA NACIONAL DE LA GANADERIA
**************************************************************/
.div-text-principal{
  text-align: justify;
  padding-left: 10px;
  padding-right: 10px;
}
.card-text{
 position: absolute;
  bottom: -80px;
  left: 50%; /* mover al centro horizontal */
  transform: translateX(-50%); /* centrar desde el medio */
  background: #FFF;
  padding: 5px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;

}
/* Flecha izquierda */
.carousel-control-prev-icon::after {
  
  mask-image: url("data:image/svg+xml,%3Csvg fill='none' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.5 12L6.5 8L10.5 4' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
  position: absolute;
  top: -10%;
  left: 0px;
   
}

/* Flecha derecha */
.carousel-control-next-icon::after {
  mask-image: url("data:image/svg+xml,%3Csvg fill='none' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 4L9.5 8L5.5 12' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
  position: absolute;
            right: -0px;
            top: -10%;

  
}
.div-redes-sociales-footer {
  max-width: 100%;
  padding: 0.5rem;
  left: 55% !important;
  top: 55% !important; /* o ajusta al gusto: 30%, 25%, etc. */
}



}

@media (max-width: 575.98px) {
  /* Estilos para pantallas muy pequeñas */
  .mobileMenu{
      display: block;
  }
.menu-div{
    
  width: 100%;
  
  }
  .nomenu{
   right: -200000px;
     transform: translateY(-20000x);
  }
  .simenu{
    right: -0px;
    transform: translateY(0x);

  }
  .div-text-h{
  text-align: justify;
  padding-left: 12px;
  padding-right: 12px;
}
  .div-burbuja {
    
      width: 100%;
      z-index: 10;
      left: 50%;
      bottom: -200px;

      
    }
     .tarjeta-imagen {
        max-width: 100%;
        max-width: 310px;
    }
   .div-text-turismo{
  text-align:justify;
}
.carousel2-slide {
        width: 100px;
      }

    /*  .img-slider {
        height: 120px;
        width: auto;
      }*/
      .img-slider {
      max-height: 120px;
      object-fit: contain;
      padding: 10px;
      }
      /* Estilo del SVG */
      .carousel-icon {
        width: 40px;  /* más grande */
        height: 40px;
      }
.div-text-principal{
  padding-left: 15px;
  padding-right: 15px;

}
.img-icon-res{
  height: 120px;
  width: auto;
}

.div-redes-sociales-footer {
  max-width: 100%;
  padding: 0.5rem;
  left: 60% !important;
  top: 28% !important; /* o ajusta al gusto: 30%, 25%, etc. */
}
.turismo-carrusel{
  padding-left: 10px;
  padding-right: 10px;
}

 

}

/* SM: Pequeño (teléfonos en horizontal) - Desde 576px hasta 767.98px */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Estilos para teléfonos medianos */
  .mobileMenu{
       display: block;
  }
  .menu-div{
    
    width: 70%;
    
  }

  .nomenu{
   right: -200000px;
     transform: translateY(-20000x);
  }
  .simenu{
    right: -0px;
    transform: translateY(0x);

  }
 .div-burbuja {
    
      width: 120%;
      z-index: 10;
       left: 50%;
        bottom: -100px;
     }
    .div-text-turismo{
  text-align:justify;
}
.carousel2-slide {
        width: 100px;
      }

      .img-slider {
          max-height: 120px;
          object-fit: contain;
          /*padding: 30px;*/
      }
      /* Estilo del SVG */
      .carousel-icon {
        width: 40px;  /* más grande */
        height: 40px;
      }
     .img-icon-res{
        height: 120px;
        width: auto;
    }

    .div-redes-sociales-footer {
        max-width: 100%;
        padding: 0.5rem;
        left: 55% !important;
        top: 25% !important; /* o ajusta al gusto: 30%, 25%, etc. */
      }
}

/* MD: Mediano (tablets) - Desde 768px hasta 991.98px */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* Estilos para tablets */
  .mobileMenu{
      display: block;
  }
.menu-div{
    
  width: 40%;
  
  }
  .nomenu{
   right: -200000px;
     transform: translateY(-20000x);
  }
  .simenu{
    right: -0px;
    transform: translateY(0x);

  }
  .div-burbuja {
    
      width: 130%;
      z-index: 10;
      left: 50%;
       bottom: -230px;

      
    }
     .img-slider {
        height: 200px;
        width: auto;
        
      }

      .div-redes-sociales-footer {
  max-width: 100%;
  padding: 0.5rem;
  left: 55% !important;
  top: 28% !important; /* o ajusta al gusto: 30%, 25%, etc. */
}
  
}

/* LG: Grande (laptops pequeños) - Desde 992px hasta 1199.98px */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* Estilos para laptops pequeños */

  .div-burbuja {
    
      width: 110%;
      z-index: 10;
      left: 50%;
       bottom: -420px;

      
    }
     .img-slider {
        height: 230px;
        width: auto;
        
      }
  
  
}

/* XL: Extra grande (escritorios) - Desde 1200px hasta 1399.98px */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  /* Estilos para monitores grandes */
 
}



