body{
    background-color: var(--neon);
}

#estamos{
    background-color: #FFF;
}

.cuadroSucursal{
    position:relative;
    border-radius: 15px;
    overflow: hidden;
}

.cuadroSucursal img.imgSucursal{
    width: 100%;
    height: auto;
    display: block;
}

.contenidoOverlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex; 
    flex-direction: row;
}

.contenidoIzquierda {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* centrado vertical */
    align-items: flex-start; /* alinear contenido a la izquierda */
    padding-left: 5%; /* aplicás padding general aquí */
}

.contenidoDerecha {
    padding-right: 5%;
    display: flex;
    align-items: center;
}

.contenidoDerecha img{
    max-width: 250px;
    width: 100%;
    height: auto;
}
.cuadroSucursal p {
    font-size: 2rem;
    color: #FFF;
    font-weight: 700;
    line-height: 2.2rem;
    margin: 0;
}

.contenidoIzquierda .btnSaber {
    font-size: 0.9rem;
    margin-top: 1rem;
    border: none;
}

.imagesFest{
    padding-top: 4px;
    text-align: center;
}

.imagesFest img{
    border-radius: 10px;
    height: 200px;
    width: auto;
}


#contenidoOculto {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
#contenidoOculto.show {
    display: block;
    opacity: 1;
}

#ruralvia h3{
    font-size: 2rem;
    color:#FFF;
    font-weight: 700;
    line-height: 2rem;
    margin: 0;
}

#ruralvia h4{
    font-size: 1.8rem;
    color:#FFF;
    font-weight: 700;
    line-height: 2rem;
    margin: 0;
}

#ruralvia p{
    font-size: 1.4rem;
    color:#FFF;
    font-weight: 400;
    line-height: 1.8rem;
    margin: 0;
    padding-top: 1rem;;
}

.fila-lineas{
    border-top: 1px solid var(--neon);
}

.fila-lineas:not(:first-child) {
}

.contenidoEvento {
	position: absolute;
	display: flex;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: left;
	align-items: center; /* Centers the content vertically within the flex container */
	flex-direction: row;
	font-size: 1.2rem;
	color:#FFF;
	font-weight: 700;
}

.contenidoEvento > div {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.contenidoEvento p:is(:first-child){
    margin-bottom: 0.5rem; 
    color:var(--neon);
    padding: 0;
}

.contenidoEvento p:not(:first-child){
    margin-bottom: 0;
    padding: 0;
}

.contenidoEvento div:is(:first-child){
    margin-right: 2rem;;
}



#evento2{
    border-top: solid 1px var(--neon);
}

#evento2 img.img-fluid {
    width: 100vw; /* ocupa todo el ancho de la ventana */
    height: auto; /* mantiene la proporción de la imagen */
    display: block;
    object-fit: cover; /* opcional: para asegurarte que se vea bien */
    margin: 0 auto; /* centra la imagen si hiciera falta */
    max-height: 400px;
}

#evento1 img.img-fluid {
    width: 100vw; /* ocupa todo el ancho de la ventana */
    height: auto; /* mantiene la proporción de la imagen */
    display: block;
    object-fit: cover; /* opcional: para asegurarte que se vea bien */
    margin: 0 auto; /* centra la imagen si hiciera falta */
    max-height: 400px;
}

.dale h1{
    font-weight: 700;
    font-size: 3.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.dale .imgLogos{
    max-width: 400px;
    height: auto;
    
}

.dale span {
    color: var(--verdeLima);
    font-weight: 600;
    font-size: 1.8rem;
}

#daleAlPlay {
    max-height: 70vh;
    background-color: #000;
    height: 70vh;
}

video {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

#bloquePlay {
  opacity: 0;
  visibility: hidden;
  animation: fadeInPlay 1s ease-in forwards;
  animation-delay: 1.5s;
}




  video.zoom {
    position: relative;
    transform: scale(1.5);
    z-index: 1;
  }

  .navbar{
    z-index: 2;
  }
#indicadores{
    z-index: 3;
    position: relative;
    background-color: #FFF;
    margin-bottom:0 !important;
    padding-bottom: 5px;
}
.dale{
    z-index: 3;
}

#beneficios{
    z-index: 3;
    position: relative;
}
#ruralvia{
    z-index: 3;
    position: relative;
}
#daleAlPlay{
    z-index: 1;
    position: relative;
}

@keyframes fadeInPlay {
  0% {
    opacity: 0;
    visibility: visible; /* Make it take up space during animation */
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}