body{
  font-family: 'Poppins', sans-serif;
}

h1,h2,h3{
  font-family: 'Raleway', sans-serif;
  font-weight:600;
}


/* ===============================================
   🟢 AJUSTE GLOBAL DE SECCIONES
   =============================================== */
.story-content {
  text-align: left !important;
}

.story-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.story-content p {
  margin-bottom: 18px;
  line-height: 1.6;
}

.icon-text h5 {
  
  margin-bottom: 12px !important;
  font-size: 1.2rem;
}

ul li {
  margin-bottom: 10px;
}




    /* ================== TARJETA ================== */
    .leyenda-card {
      background: rgba(239, 239, 239, 0.92);
      border-radius: 30px;
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      min-height: 380px;
    }

    /* ================== MEDIA UNIFORME EN CARRUSEL ================== */

.leyenda-img {
  width: 100%;
  height: 420px;          /* 🔥 ALTURA FIJA */
  overflow: hidden;
  position: relative;
}

/* Imagen y video iguales */
.leyenda-img img,
.leyenda-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


    .leyenda-content {
      padding: 40px 45px;
    }

    .leyenda-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #eaf4f2;
      color: #2b585a;
      font-size: 0.85rem;
      padding: 7px 16px;
      border-radius: 50px;
      margin-bottom: 15px;
      font-weight: 500;
    }
.leyenda-content h2 {
  font-size: 2.1rem;
  color: #1f4c57;      /* Azul elegante */
  font-weight: 700;   /* Más gruesa */
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}


    .leyenda-content h4 {
      font-size: 1.6rem;
      color: #1f4c57;
      margin-bottom: 18px;
      font-weight: 400;
    }

    .leyenda-content p {
      font-size: 1.1rem;
      line-height: 1.8;
     text-align: justify;  
      color: #373737;
    }



    

    /* ================== CAJA FINAL ================== */
    .leyenda-footer {
      
      display: flex;
      align-items: center;
      gap: 16px;
      background: #f6f9fa;
      border-radius: 28px;
      padding: 16px 20px;
    }

    .leyenda-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #ddebea;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .leyenda-icon i {
      font-size: 1.3rem;
      color: #3b6e71;
      align-items: center;   /* 🔥 CENTRA VERTICALMENTE */
    }

    .leyenda-footer span {
      font-size: 0.9rem;
      color: #6b7f84;
    }

    /* ================== SWIPER ================== */
    .swiper {
      padding-bottom: 60px;
    }

    .swiper-pagination-bullet {
      background: #b9d6d3;
      opacity: 1;
    }

    .swiper-pagination-bullet-active {
      background: #3b6e71;
    }

    /* ================== RESPONSIVE ================== */
    @media (max-width: 992px) {
      .leyenda-card {
        grid-template-columns: 1fr;
      }
    }

    
/* --- CONSEJO BOX PREMIUM AZUL (ELEGANTE Y SUAVE) --- */
.consejo-box {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  border-radius: 18px;

  /* Bordes asimétricos refinados */
  border-left: 6px solid #1f4c57;
  border-right: 2px solid #1f4c57;

  max-width: 520px;
  width: 100%;
  margin-top: 25px;
  margin-left: auto;
  margin-right: 0;

  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* HEADER ELEGANTE */
.consejo-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* ICONO */
.consejo-header i {
  font-size: 1.3rem;
  color: #1f4c57;
  margin-top: 4px;
  align-items: center;   /* 🔥 CENTRA VERTICALMENTE */
}

/* TEXTO DEL CONSEJO */
.consejo-header span {
  font-size: 0.95rem;
  font-weight: 400;          /* DELGADA */
  font-style: italic;        /* CURSIVA */
  color: #3d3d3d;
  line-height: 1.8;
  text-align: justify;
  font-family: 'Segoe UI', 'Georgia', serif;
  align-items: center;   /* 🔥 CENTRA VERTICALMENTE */
}


/* ================= INTRO LEYENDAS ================= */
.intro-content{
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 5px 40px 30px 40px; /* arriba - lados - abajo */
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* TITULO */
.intro-content h2{
  font-size: 2.3rem;
  font-weight: 500;
  color: #1f4c57;
  margin-bottom: 14px;
  letter-spacing: 1px;
  line-height: 1.2;
}

/* TEXTO */
.intro-content p{
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  margin: 0;
}

/* ✅ RESPONSIVO TABLET */
@media (max-width: 992px){
  .intro-content{
    padding: 28px 25px;
  }

  .intro-content h2{
    font-size: 2rem;
  }

  .intro-content p{
    font-size: 1rem;
  }
}

/* ✅ RESPONSIVO CELULAR */
@media (max-width: 576px){
  .intro-content{
    padding: 22px 18px;
    border-radius: 16px;
  }

  .intro-content h2{
    font-size: 1.5rem;
    letter-spacing: 0.5px;
  }

  .intro-content p{
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

.resaltado {
  font-weight: 600;     /* negrita suave */
  color: #073c55;       /* azul elegante */
}

.leyenda-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.leyenda-img img,
.leyenda-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.swiper-slide {
  height: auto;
}

.leyenda-card {
  min-height: 420px;
}

/* ===== BOTÓN HAMBURGUESA ===== */
.menu-btn {
  position: fixed;
  top: 22px;
  right: 20px;
  z-index: 1200;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #000;
  display: none;
}

@media (max-width: 992px) {

  .menu-btn {
    display: block;
  }

}



@media (max-width: 576px) {

  /* Imagen vertical tipo retrato */
  .leyenda-img {
    height: 440px;        /* 🔥 FORMATO VERTICAL */
    aspect-ratio: 3 / 4; /* proporción retrato */
  }

  .leyenda-img img,
  .leyenda-img video {
    object-fit: cover;
    object-position: center;
  }
}


@media (max-width: 576px) {

  .leyenda-card {
    min-height: auto;
    border-radius: 22px;
  }

  .leyenda-content {
    padding: 20px;
  }

  .leyenda-content h2 {
    font-size: 1.4rem;
  }

  .leyenda-content p {
    font-size: 1rem;
    line-height: 1.6;
  }
}


/* ===============================
   ESCALA GLOBAL (COMO 90% ZOOM)
   =============================== */

body{
  zoom: 0.9;
}

/* En celulares mejor no reducir tanto */
@media (max-width: 768px){
  body{
    zoom: 1;
  }
}


