body, html {
    margin: 0;
    padding: 0;
    background-color: #0c2840;
}

.sidebar{
    font-size: 0.8rem;
    width: auto;
    margin: 0;
    padding: 0;
    justify-content: space-between;
    display: flex;
    align-items: center;
    background-color: #05233d;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.sidebar img{
    padding: 1px;
    padding-left: 50px;
    width: auto;
    height: 70px;
}

.sidebar ul{
    margin-bottom: 30px;
    padding-right: 100px;
}

.sidebar a{
    text-align: center;
    text-decoration: none;
    color: #d6d6d6;
}

.sidebar a:hover{ 
    color: #ffffff;
}

.sidebar li{
    font-size: 18px;
    padding-bottom: 10px;
    text-align: center;
    display: inline-block; 
    margin: 0 40px;
    font-family: 'Poppins';
}

.info-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
  background-image: url('img/banner-2.png');
}

.contenedor-banner {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  width: 90%;
}

.img-banner img {
  max-width: 600px;
  height: auto;
}

.texto-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.texto-banner p{
  font-family:'Poppins'; 
  text-align: center;
  font-size: 26px;
  line-height: 1.3;
  color: #ffffff;
  padding-bottom: 30px;
}

.texto-banner h1{
    text-align: center;
    font-size: 80px;
    font-family:'Poppins';
    color: #0c2840;
    text-shadow:
        -1px -1px 0 white,
         1px -1px 0 white,
        -1px  1px 0 white,
         1px  1px 0 white;
}

.more-info {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
  background-color: #0c2840;
}


.contenedor-info {
    padding-top: 50px;
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: 1200px;
  
}

.texto-info{
    padding-left: 400px;
}

.texto-info li{
    color: #d6d6d6;
    font-size: 17px;
    font-family:'Poppins';
    line-height: 1.3;
    padding-bottom: 10px;
}

.texto-info p{
  font-family:'Poppins'; 
  text-align: left;
  font-size: 17px;
  line-height: 1.3;
  color: #d6d6d6;
  padding-bottom: 10px;
}

.texto-info h1{
    text-align: center;
    font-size: 30px;
    font-family:'Poppins';
    color: #ffffff;
}

.imagenes-superpuestas {
  position: relative;
  width: 600px;  /* puedes ajustar este valor */
  height: 600px;
  margin: 60px;
  margin-top: 100px;
  margin-bottom: 0px;
}

.img {
  position: absolute;
  width: 300px;
  height: 480px;
  object-fit: cover;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgb(0, 0, 0);
  border-radius: 10px;
  transition: transform 0.3s ease;
  
}

/* Posiciones individuales */
.img1 {
  top: 30px;
  left: -70px;
  z-index: 2;
  transform: rotate(-12deg);
}

.img2 {
  top: 0;
  left: 120px;
  z-index: 3;
  transform: rotate(0deg);
}

.img3 {
  top: 30px;
  left: 310px;
  z-index: 2;
  transform: rotate(12deg);
}

.img:hover {
  transform: scale(1.05);
  z-index: 10;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .contenedor-info {
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    gap: 30px;
  }
  .imagenes-superpuestas {
    width: 90vw;
    height: 50vw;
    min-width: 220px;
    min-height: 180px;
    max-width: 350px;
    max-height: 300px;
    margin: 20px 0 0 0;
  }
  .img {
    width: 150px;
    height: 100px;
  }
  .img1 { left: -30px; top: 10px; transform: rotate(-12deg); }
  .img2 { left: 60px; top: 0; transform: rotate(0deg); }
  .img3 { left: 150px; top: 10px; transform: rotate(12deg); }
  .texto-info {
    padding-left: 0;
    padding-right: 0;
    width: 90vw;
    max-width: 400px;
  }
  .texto-info h1 {
    font-size: 22px;
  }
  .texto-info p, .texto-info li {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .sidebar {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 10px 0 0 0;
    width: 100vw;
    background-color: #0c2840;
    box-sizing: border-box;
  }
  .sidebar ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100vw;
    margin: 0;
    padding: 0 0 0 0;
    background-color: #0c2840;
    box-sizing: border-box;
    position: relative;
    z-index: 1001;
  }
  .sidebar li {
    display: inline-block;
    margin: 0 10px;
    font-size: 15px;
    padding-bottom: 0;
    color: #d6d6d6;
    background: none;
  }
  .sidebar img {
    padding-left: 0;
    height: 40px;
    margin-bottom: 8px;
    display: block;
    margin: 0 auto;
  }
  body {
    padding-top: 80px;
  }
  .contenedor-info {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
  .imagenes-superpuestas {
    display: flex;
    justify-content: center;
    align-items: center;
    position: static;
    margin: 0 auto 0 auto;
    width: 100vw;
    max-width: 100vw;
    height: 220px;
  }
  .img {
    position: relative;
    left: unset !important;
    right: unset !important;
    top: unset !important;
    margin: 0 8px;
    width: 90px;
    height: 130px;
    transform: none !important;
    z-index: 1;
  }
  .texto-banner p {
    font-size: 15px;
    padding-bottom: 18px;
  }
  .texto-banner h1 {
    font-size: 32px;
  }
}

.contenedor-btn-banner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 0;
  padding: 0;
  box-sizing: border-box;
}

.btn-banner {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  font-size: 26px;
  line-height: 1.3;
  color: #ffffff;
  padding: 18px 32px;
  background: rgba(12, 40, 64, 0.85);
  border-radius: 18px;
  display: block;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  border: none;
  margin: 0;
  margin-bottom: 30px;
  transition: background 0.2s, transform 0.2s;
}

.btn-banner:hover, .btn-banner:focus {
  background: #0c2840;
  transform: translateY(-2px) scale(1.03);
}

.btn-info {
  background-color: #0c2840;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 24px 0 32px 0;
}

.bttn-info {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  font-size: 22px;
  line-height: 1.3;
  color: #0c2840;;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  display: block;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  border: 2px solid #0c2840;
  margin: 0;
  transition: background 0.2s, transform 0.2s;
}

.bttn-info:hover, .bttn-info:focus {
  background: #ffffff;
  transform: translateY(-2px) scale(1.03);
}

@media (max-width: 600px) {
  .btn-banner {
    font-size: 18px;
    padding: 14px 18px;
    border-radius: 12px;
  }
  .contenedor-btn-banner {
    margin-top: 12px;
  }
  .bttn-info {
    font-size: 15px;
    padding: 10px 16px;
    border-radius: 10px;
  }
  .btn-info {
    margin: 16px 0 24px 0;
  }
}

@media (min-width: 601px) {
  .info-banner {
    padding-top: 100px;
  }
}

@media (max-width: 600px) {
  .info-banner {
    padding-top: 90px;
  }
}

.contenedor-footer {
  background: #05233d !important;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px 12px 40px;
  box-sizing: border-box;
}

.logo-footer {
  display: flex;
  align-items: center;
}

.logo-footer img {
  height: 48px;
  width: auto;
  display: block;
  margin: 0 16px 0 0;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.10));
}

.texto-footer {
  text-align: left;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

.contacto-footer {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  text-align: left;
  font-size: 15px;
}

@media (max-width: 800px) {
  .contenedor-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 16px 12px 16px;
    gap: 10px;
  }
  .logo-footer {
    margin-bottom: 8px;
  }
  .contacto-footer {
    text-align: left;
    width: 100%;
  }
}



