
#contenedor{
    width: 75%;
    margin: auto ;
    height: auto;
}
header{
    margin: 0;
    display: flex;
    justify-content: center;
    align-items:center;
    border-bottom: 1px solid;
}
header img{
    width:60px;
}

nav{
    display:flex;
    justify-content:center;
    align-items: center;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: 30px;
}

nav a{
    text-decoration: none;
    font-size: 15px;
    margin-left: 50px;
    color: black;
    cursor: pointer;
    font-weight: bold;
}
nav a:hover{
    text-decoration: underline;
}
aside iframe{
    margin: 20px 20px 20px 20px;
    flex: 2;
}
section{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10PX;
}
#jauja{
    flex: 1;
    margin: 10px;                   
    border-radius: 36px;
    background-color:rgb(32, 92, 20,0.3);
    padding: 20px;
    flex-wrap: wrap;
    width: 30%;
    max-width:100%;
}
hr{
    background-color: green;
    width: 100%;
    height: 2px;
    border: none;
}
#jauja h2{
    font-size: 50px;
    text-align: center;
    margin: 0;
    font-weight: bold;
}
#jauja hr{
    background-color: grey;
    height:1 px;
    width: 60%;
    margin-bottom: 0px;
    margin-left: 20%;
}
#jauja p{
    text-align: start;
    padding: 10px;
    font-size: 20px;
    margin-bottom:0px ;
    margin-top: 0px;
}

.boton a{
  text-decoration: none;
  color: white;
}
.boton{
    background-color: green;
    border-radius: 5px;
    padding: 5px 20px 5px 20px;
    text-align: center;
    color: white;
    border: none;  
    margin-left: 40%;
    font-size: 25px;
    cursor: pointer;
}
.boton:hover{
    background-color: black;
}

h1{
    text-align: center;
    margin-bottom: 0px;
}

/* ====== SECCIÓN GENERAL ====== */
.slider-section {
  max-width: 140%;
  margin: 10px auto;
  padding: 10px;
  border-radius: 10px;
  background: linear-gradient(rgb(32, 92, 20), rgb(0, 0, 0,0.3));
    width: 100%;
    transition: all 1.5s ease-in-out;
    flex-wrap: wrap;
}

/* ====== BLOQUE DE SLIDE ====== */
.slide-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1px;
  flex-wrap: wrap;
  padding-left:10px;
  transition: all 1.5s ease-in-out;
}

/* ====== IMAGEN ====== */
.slide-img {
  width: 600px;
  height: 500px;
  object-fit: cover;
  border-radius: 5px;
  transition: all 1.5s ease-in-out;
}



/* ====== TEXTO ====== */
.slide-text {
  width: 400px;
  color: #000000;
  padding: 10px;
  border-radius: 10px;
  margin-left: 20px;
}

.slide-text h3 {
  color: #ebebeb;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 15px;
}

.slide-text p {
  font-size: 20px;
  line-height: 1.6;
}

.carousel-control-prev-icon:hover{
    background-color: rgb(0, 0, 0,0.3);
}

.carousel-control-next-icon:hover{
    background-color: rgb(0, 0, 0,0.2);
}

/* ====== ANIMACIÓN ====== */
@keyframes fadeInRight {
  from {
    opacity: 2;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ====== RESPONSIVO ====== */
@media (max-width: 768px) {
  .slide-box {
    flex-direction: column;
    text-align: center;
  }

  .slide-img {
    width: 100%;
    height: 280px;
  }

  .slide-text {
    width: 100%;
    padding: 20px;
  }

  .slide-text h3 {
    font-size: 1.6rem;
  }

  .slide-text p {
    font-size: 1rem;
  }
}


footer{
    border: 1px solid green;
    display: flex;
    justify-content:space-between;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    margin-top:20px ;
    width: 100%;
}

footer p{
    font-size: 18px;
    margin-left: 38%;
    flex-wrap: wrap;
    margin-top: 20px;
    
}

#redes-sociales{ 
    padding: 10px;

}


#redes-sociales a{
    text-decoration: none;
    padding: 10px;
}

