/*      /* ========== BLOQUE CSS ========== */
    * {
      margin: 0;
      padding: 0;
     /* box-sizing: border-box;*/
    }

    body {
      font-family: 'Inter', sans-serif;
      background: linear-gradient(145deg, #0b2b1f 0%, #0a2a1c 100%);
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    /*  padding: 2rem; */
    }

    /* Contenedor principal del slider */
    .slider-container {
      /*max-width: 1280px;*/
      width: 100%;
      margin: 0 auto;
      background: rgba(10, 35, 25, 0.55);
      backdrop-filter: blur(2px);
      /*border-radius: 2.5rem; */
      /*padding: 1rem;*/
      box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    /* Estructura del slider */
    .slider {
      position: relative;
   /*   border-radius: 2rem;*/
      overflow: hidden;
      background-color: #0f2c1f;
      box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.5);
    }

    /* Slides wrapper */
    .slides-wrapper {
      position: relative;
      width: 100%;
      overflow: hidden;
      /*border-radius: 1.8rem;*/
    }

    .slides {
      display: flex;
      transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      will-change: transform;
    }

    /* Cada slide ocupa el 100% del ancho */
    .slide {
      min-width: 100%;
      position: relative;
      aspect-ratio: 16 / 9;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      display: flex;
      align-items: flex-end;
    }

    /* Overlay sofisticado degradado verde oscuro */
    .slide::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, 
        rgba(3, 25, 15, 0.9) 0%,
        rgba(8, 45, 30, 0.6) 40%,
        rgba(2, 20, 12, 0.3) 100%);
      z-index: 1;
      pointer-events: none;
    }

    /* Contenido textual (título, descripción, botón) */
    .slide-content {
      position: relative;
      z-index: 2;
      padding: 2rem 3rem 3rem 3rem;
      width: 100%;
      max-width: 750px;
      color: #f1f7f2;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
      animation: fadeUp 0.5s ease-out;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(25px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .slide-content h2 {
      font-size: clamp(1.8rem, 5vw, 3rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
      color: #e2ffea;
      border-left: 5px solid #2b825b;
      padding-left: 1.2rem;
    }

    .slide-content p {
      font-size: clamp(0.95rem, 2.5vw, 1.1rem);
      line-height: 1.5;
      margin-bottom: 1.8rem;
      font-weight: 400;
      opacity: 0.9;
      max-width: 85%;
    }

    /* Botón estilo profesional verde oscuro */
    .btn-slide {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      background: #1e4d38;
      color: white;
      border: none;
      padding: 0.85rem 2rem;
      font-size: 0.95rem;
      font-weight: 600;
      border-radius: 40px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
      text-decoration: none;
      font-family: 'Inter', sans-serif;
      letter-spacing: 0.3px;
      backdrop-filter: blur(4px);
      background: linear-gradient(105deg, #1f5e43, #154e36);
      border: 1px solid rgba(90, 180, 130, 0.4);
    }

    .btn-slide i {
      font-size: 1rem;
      transition: transform 0.2s;
    }

    .btn-slide:hover {
      background: linear-gradient(105deg, #2b7454, #1b573e);
      transform: translateY(-3px);
      box-shadow: 0 12px 22px -8px rgba(0, 0, 0, 0.4);
      border-color: rgba(110, 210, 150, 0.6);
    }

    .btn-slide:hover i {
      transform: translateX(5px);
    }

    /* Navegación: flechas */
    .slider-nav {
      position: absolute;
      top: 50%;
      width: 100%;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      padding: 0 1.2rem;
      z-index: 20;
      pointer-events: none;
    }

    .nav-btn {
      background: rgba(20, 50, 35, 0.75);
      backdrop-filter: blur(8px);
      width: 48px;
      height: 48px;
      border-radius: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.25s;
      border: 1px solid rgba(75, 155, 110, 0.6);
      pointer-events: auto;
      color: #e2ffea;
      font-size: 1.4rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
			opacity: 0.45; /* 0 = transparente, 1 = opaco */
    }

    .nav-btn:hover {
      background: #2b6e4c;
      transform: scale(1.05);
      border-color: #81c99b;
      color: white;
    }

    /* Dots / indicadores */
    .dots-container {
      display: flex;
      justify-content: center;
      gap: 0.9rem;
      padding: 1.2rem 0 0.8rem 0;
      background: transparent;
    }

    .dot {
      width: 48px;
      height: 5px;
      background-color: #2c5d46;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s ease;
      opacity: 0.65;
    }

    .dot.active {
      background-color: #9fd3b0;
      width: 68px;
      opacity: 1;
      box-shadow: 0 0 6px #78b798;
    }

    /* Toast personalizado */
    .custom-toast-notify {
      position: fixed;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #0a2f1f;
      backdrop-filter: blur(12px);
      color: #e0f5e8;
      padding: 12px 28px;
      border-radius: 50px;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: 0.9rem;
      box-shadow: 0 10px 20px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
      border: 1px solid #317a58;
      z-index: 9999;
      letter-spacing: 0.3px;
      transition: opacity 0.4s ease;
      pointer-events: none;
    }
    .custom-toast-notify::before {
      content: "🌱";
      margin-right: 8px;
      font-size: 1.1rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .slider-container { padding: 0.5rem; }
      .slide-content { padding: 1.5rem 1.8rem 2rem 1.8rem; }
      .slide-content p { max-width: 100%; }
      .nav-btn { width: 38px; height: 38px; font-size: 1rem; }
      .dot { width: 32px; height: 4px; }
      .dot.active { width: 48px; }
      .btn-slide { padding: 0.65rem 1.5rem; font-size: 0.85rem; }
    }
    @media (max-width: 480px) {
      .slide-content h2 { padding-left: 0.8rem; }
      .slide-content { padding: 1.2rem 1.2rem 1.8rem; }
    }
    .btn-slide:active { transform: scale(0.97); }
    ::selection { background: #236e4c; color: #f0fff0; }
 