html, body{
  height: 100%;
  margin: 0;
}

body{
  background: url("./images/marmol.webp") center / cover no-repeat fixed;
  padding-top: 84px; /* ajusta 78–96px si lo ves muy alto/bajo */
}

/* =========================
   OFFSET PARA ANCLAS (SEO + NAV FIXED)
   Evita que el header tape los títulos
========================= */
section[id]{
  scroll-margin-top: 96px;
}

    /* =========================
      NAVIGATION MENU
      ========================= */

    /* Header fijo arriba */
    .site-header{
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
    
      background: rgba(8,8,8,.65);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255,255,255,.1);
    }

    /* Contenedor del menú */
    .site-nav{
      max-width: 1200px;
      margin: 0 auto;
      padding: 16px 24px;

      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* Logo */
    .site-logo{
      text-decoration: none;
      color: #fff;
      font-weight: 800;
      font-size: 20px;
      letter-spacing: .02em;
    }

    .site-logo img{
      height: 48px;
      width: auto;
      display: block;
    }

    /* Links del centro */
    .site-links{
      display: flex;
      gap: 28px;
    }

    .site-links a{
      text-decoration: none;
      color: #fff;
      letter-spacing: .14em;
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      font-weight: 700;
      font-size: 20px;
      position: relative;
      padding-bottom: 6px;
    }
    
    .site-links a::after{
      content: "";
      position: absolute;
      left: 50%;
      bottom: 0;
      width: 0;
      height: 2px;
      background-color: #b11a29;
      transition: all 0.25s ease;
    }
    
    .site-links a:hover{
      color: #b11a29;
    }
    
    .site-links a:hover::after{
      width: 100%;
      left: 0;
    }

    /* Botón WhatsApp */
    .site-cta{
      text-decoration: none;
      background: #25D366;
      color: #fff;
      padding: 12px 18px;
      border-radius: 10px;
    
      display: inline-flex;
      align-items: center;
      gap: 8px;
    
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      font-weight: 700;
      font-size: 14px;
    
      transition: 
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
    }
    
    .site-cta:hover{
      background-color: #1ebe5d;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    }
    
    .site-cta__icon{
      font-size: 18px;
      color: #fff;
      transition: transform 0.2s ease;
    }
    
    .site-cta:hover .site-cta__icon{
      transform: translateX(2px);
    }
    
    /* ===== MENÚ MÓVIL (HAMBURGUESA) ===== */

    .menu-toggle{
      display: none;
      background: transparent;
      border: 0;
      color: #fff;
      font-size: 22px;
      cursor: pointer;
    }

    .mobile-menu{
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;

      background: rgba(8,8,8,.92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255,255,255,.12);

      padding: 14px 24px;
    }

    .mobile-menu a{
      display: block;
      padding: 12px 0;
      color: #fff;
      text-decoration: none;

      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      font-weight: 700;
      letter-spacing: .08em;
    }

    .mobile-menu a:hover{
      color: #b11a29;
    }

    .site-nav{
      position: relative;
    }

    /* Responsive: en móvil ocultamos links desktop y mostramos hamburguesa */
    @media (max-width: 900px){
      .site-links{
        display: none;
      }

    

      .menu-toggle{
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .mobile-menu.is-open{
        display: block;
      }

      .mobile-cta{
        display: inline-flex;
        margin-top: 10px;
      }
    }

/* ===== 
HOME HERO (PRIMER SLIDE / SEO H1) 
===== */
.home-hero{
  padding: 64px 0 64px;
  position: relative;
}

.home-hero::before,
.home-hero::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;

  background: linear-gradient(
    90deg,
    rgba(212,175,55,0) 0%,
    rgba(255,215,120,.95) 20%,
    rgba(212,175,55,1) 50%,
    rgba(255,215,120,.95) 80%,
    rgba(212,175,55,0) 100%
  );

  box-shadow:
    0 0 8px rgba(212,175,55,.6),
    0 0 18px rgba(212,175,55,.4);

  pointer-events: none;
}

.home-hero::before{
  top: 18px;
}

.home-hero::after{
  bottom: 18px;
}

.home-hero__container{
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}

.home-hero__title{
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  margin: 0 0 12px;
  color: rgba(255,255,255,.92);
  font-weight: 800;
}

.home-hero__subtitle{
  margin: 0 0 18px;
  color: rgba(255,255,255,.78);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  max-width: 62ch;
}

.home-hero__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.home-hero__ghost{
  text-decoration: none;
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.18);
  padding: 12px 18px;
  border-radius: 10px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.home-hero__ghost:hover{
  border-color: rgba(255,255,255,.32);
}

.home-hero__img{
  width: 100%;
  height: auto;
  display: block;
  max-width: 560px;
  margin-left: auto;
}

@media (max-width: 900px){
  .home-hero{
    padding: 40px 0 16px;
  }

  .home-hero__container{
    grid-template-columns: 1fr;
  }

  .home-hero__img{
    max-width: 100%;
    margin: 12px 0 0;
  }
}


 /* =========================
       OSTRICH BENEFITS PAGE (OBP)
       Tipografía moderna sin serif: Inter + Montserrat
       ========================= */
  
    .ostrich-benefits-page{
      /* Variables de diseño */
      --bg-0:#070708;
      --bg-1:#0b0b0d;
      --bg-2:#111116;
  
      --ink-0: rgba(255,255,255,.92);
      --ink-1: rgba(255,255,255,.78);
      --ink-2: rgba(255,255,255,.62);
  
      --line: rgba(255,255,255,.10);
      --line-2: rgba(255,255,255,.16);
  
      --accent: #ff6a2a;
      --accent-2: #ffc36a;
  
      --shadow: 0 18px 48px rgba(0,0,0,.55);
  
      --font-title: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
      --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  
      position: relative;
      overflow: hidden;

      


      color: var(--ink-0);
      padding: clamp(24px, 3vw, 34px) 0;
      font-family: var(--font-body);
      text-rendering: geometricPrecision; 
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
  
    /* Mármol oscuro “simulado” + textura */
    .ostrich-benefits-page .obp-bg{
        display: none;
      }

    .ostrich-benefits-page .obp-container{
      width: min(1200px, 92%);
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
  
    /* HERO */
    .ostrich-benefits-page .obp-hero{
      padding: 12px 0 12px;
      border-bottom: 1px solid var(--line);
      margin-bottom: 6px;
    
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 26px;
      align-items: start;
    
      position: relative;
      overflow: visible; /* clave para que pueda “salirse” */
    }
    
    .ostrich-benefits-page .obp-hero__left{
      position: relative;
      z-index: 3; /* texto encima */
    }
    
    .ostrich-benefits-page .obp-hero__right{
      position: absolute;
      right: -70px;   /* mueve hacia la derecha */
      top: -30px;     /* sube la imagen */
      width: 52%;     /* controla tamaño del bloque */
      z-index: 1;     /* imagen detrás */
      pointer-events: none;
    }
    
    .ostrich-benefits-page .obp-hero__img{
      width: 100%;
      max-width: 620px;   /* limita el tamaño */
      height: auto;
      object-fit: contain;
      border-radius: 0;
      border: none;
      box-shadow: none;
      background: transparent;
    }
    
    
    /* hace que las cajas “suban” y crucen la zona de la imagen */
    .ostrich-benefits-page .obp-grid{
      position: relative;
      z-index: 4;
      margin-top: -10px;  /* menos invasivo que -110px */
    }
        
    .ostrich-benefits-page .obp-eyebrow{
      margin: 0 0 10px;
      color: var(--ink-2);
      font-size: 12px;
      letter-spacing: .18em;
      text-transform: uppercase;
      font-weight: 600;
    }
  
    .ostrich-benefits-page .obp-title{
      font-family: var(--font-title);
      margin: 0 0 14px;
      font-size: clamp(28px, 3.1vw, 46px);
      line-height: 1.08;
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .ostrich-benefits-page .obp-title__tagline{
      display: block;
      font-style: italic;
      font-family: var(--font-body);
      font-size: clamp(18px, 2.2vw, 30px);
      font-weight: 600;
      opacity: .95;
    }
  
    .ostrich-benefits-page .obp-subtitle{
      margin: 0 0 22px;
      max-width: 78ch;
      color: var(--ink-1);
      font-size: 16px;
      line-height: 1.65;
      font-weight: 400;
    }
    
    .ostrich-benefits-page .obp-actions{
      display:flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 6px;
    }
  
    /* BUTTONS */
    .ostrich-benefits-page .obp-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding: 12px 16px;
      border-radius: 999px;
      text-decoration:none;
      font-weight: 700;
      font-size: 14px;
      border: 1px solid transparent;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      will-change: transform;
      font-family: var(--font-body);
      letter-spacing: 0.02em;
    }
  
    .ostrich-benefits-page .obp-btn--primary{
      background: radial-gradient(150px 90px at 30% 20%, rgba(255,195,106,.35), transparent 55%),
                  linear-gradient(180deg, rgba(255,106,42,.95), rgba(255,106,42,.78));
      color: #0b0b0d;
      box-shadow: 0 14px 38px rgba(255,106,42,.18);
    }
  
    .ostrich-benefits-page .obp-btn--ghost{
      background: rgba(255,255,255,.04);
      border-color: var(--line-2);
      color: var(--ink-0);
    }
  
    .ostrich-benefits-page .obp-btn:hover{
      transform: translateY(-1px);
      box-shadow: 0 16px 44px rgba(0,0,0,.55);
    }
  
    .ostrich-benefits-page .obp-btn--primary:hover{
      box-shadow: 0 18px 52px rgba(255,106,42,.22);
    }
  
    /* GRID */
    .ostrich-benefits-page .obp-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap: 28px;
      align-items:start;
    }
  
    /* Typography blocks */
    .ostrich-benefits-page .obp-h2{
      font-family: var(--font-title);
      margin: 0 0 12px;
      font-size: 20px;
      line-height: 1.25;
      font-weight: 800;
      letter-spacing: -0.01em;
    }
  
    .ostrich-benefits-page .obp-p{
      margin: 0 0 18px;
      color: var(--ink-1);
      line-height: 1.75;
      font-size: 15px;
      font-weight: 400;
      letter-spacing: 0.01em;
    }
  
    /* CARDS */
    .ostrich-benefits-page .obp-cards{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 14px;
      margin-top: 16px;
    }
  
    .ostrich-benefits-page .obp-card{
      position: relative;
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 16px 16px;
      background:
        radial-gradient(220px 180px at 20% 10%, rgba(255,195,106,.12), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.045), rgba(0,0,0,0));
      box-shadow: var(--shadow);
    }
    
    .ostrich-benefits-page .obp-icon{
      width: 34px;
      height: 34px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
      background: rgba(255,255,255,.06);
      border: 1px solid var(--line);
    }
    
    .ostrich-benefits-page .obp-icon svg{
      width: 20px;
      height: 20px;
      color: rgba(255,255,255,.90);
    }
    
  
    .ostrich-benefits-page .obp-card__title{
      font-family: var(--font-title);
      margin: 0 0 8px;
      font-size: 15px;
      font-weight: 800;
      letter-spacing: -0.01em;
    }
  
    .ostrich-benefits-page .obp-card__text{
      margin: 0;
      color: var(--ink-1);
      font-size: 14px;
      line-height: 1.7;
      font-weight: 400;
    }
  
    /* ASIDE */
    .ostrich-benefits-page .obp-aside{
      display:grid;
      gap: 14px;
    }
  
    .ostrich-benefits-page .obp-media{
      border-radius: 22px;
      border: 1px solid var(--line);
      overflow:hidden;
      min-height: 280px;
      background:
        radial-gradient(420px 240px at 20% 10%, rgba(255,106,42,.16), transparent 60%),
        radial-gradient(340px 220px at 85% 25%, rgba(255,195,106,.12), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,0));
      box-shadow: var(--shadow);
      position:relative;
    }
  
    .ostrich-benefits-page .obp-media::after{
      content:"";
      position:absolute;
      inset:-80px -120px;
      background: radial-gradient(circle at 35% 40%, rgba(255,106,42,.20), transparent 60%);
      filter: blur(22px);
      opacity: .55;
      pointer-events:none;
    }
  
    .ostrich-benefits-page .obp-media__placeholder{
      height:100%;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      text-align:center;
      padding: 20px;
      color: var(--ink-2);
      gap: 6px;
      position:relative;
      z-index:1;
      font-family: var(--font-body);
    }
  
    .ostrich-benefits-page .obp-media__placeholder span{
      color: var(--ink-0);
      font-weight: 800;
      letter-spacing: 0.01em;
    }
  
    .ostrich-benefits-page .obp-panel{
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 16px 16px;
      background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,0));
      box-shadow: var(--shadow);
    }

    /* Desktop: panel "se monta" sobre la imagen (como referencia) */
@media (min-width: 981px){
  .ostrich-benefits-page .obp-aside{
    position: relative;
  }

  .ostrich-benefits-page .obp-media{
    z-index: 1;
  }

  .ostrich-benefits-page .obp-panel{
    position: relative;
    z-index: 2;
    margin-top: -64px;   /* ajusta: -40 a -90 según te guste */
  }
}
  
    /* TABLE */
    .ostrich-benefits-page .obp-table{
      width:100%;
      border-collapse: collapse;
      font-size: 14px;
      font-family: var(--font-body);
    }
  
    .ostrich-benefits-page .obp-table th,
    .ostrich-benefits-page .obp-table td{
      padding: 12px 10px;
      border-bottom: 1px solid var(--line);
      text-align:left;
      vertical-align:top;
    }
  
    .ostrich-benefits-page .obp-table th{
      width:48%;
      color: var(--ink-2);
      font-weight: 600;
      letter-spacing: 0.01em;
    }
  
    .ostrich-benefits-page .obp-table td{
      color: var(--ink-0);
      font-weight: 700;
    }
  
    .ostrich-benefits-page .obp-note{
      margin: 12px 0 0;
      color: var(--ink-2);
      font-size: 12px;
      line-height: 1.6;
      font-family: var(--font-body);
    }
  
   /* CTA */
   .ostrich-benefits-page .obp-cta{
    margin-top: 28px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 22px;
    padding: 22px 22px;
    background: rgba(20,20,20,0.85);
    backdrop-filter: blur(6px);
    box-shadow:
      0 0 0 1px rgba(212,175,55,0.15),
      0 12px 35px rgba(0,0,0,0.35);
  
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    }
    
    .ostrich-benefits-page .obp-cta__actions{
      display:flex;
      gap: 12px;
      flex-wrap: wrap;
    
      /* ✅ Para que el grupo de botones se centre */
      justify-content: center;
      width: 100%;
    }

    .ostrich-benefits-page .obp-cta__text{
      width: 100%;
    }
  
    /* Responsive */
    @media (max-width: 980px){
      .ostrich-benefits-page{
        padding: 44px 0;
      }
    
      .ostrich-benefits-page .obp-grid{
        grid-template-columns: 1fr;
      }
    
      .ostrich-benefits-page .obp-cards{
        grid-template-columns: 1fr;
      }
    
      /* ✅ Paso 3: HERO responsivo */
      .ostrich-benefits-page .obp-hero{
        grid-template-columns: 1fr;
      }
    
      .ostrich-benefits-page .obp-hero__right{
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        pointer-events: auto;
      }

      .ostrich-benefits-page .obp-grid{
        margin-top: 0;
      }

      .ostrich-benefits-page .obp-hero__img{
        max-width: 100%;
      }

      .ostrich-benefits-page .obp-panel{ 
        margin-top: 0; 
      }

      .ostrich-benefits-page .obp-media{
         min-height: 240px; 
        }
    }


    /* =========================
      PRESENTACIONES
    ========================= */
    .presentations{
      padding: 1px 0;
    }

    .presentations__container{
      width: min(1200px, 92%);
      margin: 0 auto;
    }

    .presentations__header{
      text-align: center;
      margin-bottom: 22px;
    }

    .presentations__title{
      margin: 0 0 6px;
      font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
      font-weight: 800;
      font-size: clamp(26px, 3.2vw, 42px);
      color: rgba(255,255,255,.92);
    }

    .presentations__subtitle{
      margin: 0;
      font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
      color: rgba(255,255,255,.75);
      font-size: 14px;
      line-height: 1.6;
    }

    .presentations__grid{
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 22px;
    }

    .present-card{
      position: relative;
      scroll-margin-top: 96px;
    
      /* base clara premium */
      background: linear-gradient(
        180deg,
        rgba(255,255,255,.98) 0%,
        rgba(245,245,245,.95) 100%
      );
    
      border-radius: 18px;
      overflow: hidden;
    
      /* borde fino (doble) */
      border: 1px solid rgba(255,255,255,.28);
      box-shadow:
        0 24px 60px rgba(0,0,0,.38),
        0 10px 18px rgba(0,0,0,.22),
        inset 0 1px 0 rgba(255,255,255,.85),
        inset 0 -1px 0 rgba(0,0,0,.05);
    
      display: flex;
      flex-direction: column;
      height: 100%;
    
      transition: transform .25s ease, box-shadow .25s ease;
    }
    
        /* textura tipo mármol (sutil) */
        .present-card::before{
          content: "";
          position: absolute;
        
          /* ✅ La textura solo abajo (zona texto), NO sobre la imagen */
          top: 170px;    /* igual al height de .present-card__img */
          left: 0;
          right: 0;
          bottom: 0;
        
          background:
            radial-gradient(600px 260px at 20% 10%, rgba(255,255,255,.35), transparent 60%),
            radial-gradient(500px 240px at 80% 30%, rgba(0,0,0,.03), transparent 62%),
            linear-gradient(120deg, rgba(0,0,0,.025), transparent 40%, rgba(0,0,0,.015) 60%, transparent 100%);
          opacity: .35;
          pointer-events: none;
        }

        /* brillo premium en el borde superior */
    .present-card::after{
      content: "";
      position: absolute;
      left: 10px;
      right: 10px;
      top: 10px;
      height: 1px;
      background: rgba(255,255,255,.45);
      opacity: .25;
      pointer-events: none;
    }

    .present-card__thumb{
      display: block;
      width: 100%;
      padding: 0;
      border: 0;
      background: transparent;
      cursor: pointer;
    }

    .present-card__img{
      width: 100%;
      height: 170px;
      object-fit: cover;
      display: block;
      border-bottom: 1px solid rgba(0,0,0,.08);
      transition: transform .35s ease, filter .35s ease;
    }

    @media (hover: hover){
      .present-card__thumb:hover .present-card__img{
        transform: scale(1.02);
        filter: contrast(1.05) saturate(1.05);
      }
    }


    .present-card__body{
      padding: 16px;
    
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .present-card__title{
      margin: 0 0 8px;
      font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
      font-weight: 800;
      letter-spacing: .02em;
      font-size: 18px;
      color: #111;
    }

    .present-card__desc{
      margin: 0 0 12px;
      font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
      color: rgba(0,0,0,.75);
      font-size: 14px;
      line-height: 1.55;
    
      flex: 1; /* ✅ hace que la descripción “rellene” y empuje el precio/botón hacia abajo */
    }

    .present-card__price{
      margin: 0 0 12px;
      font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
      font-weight: 800;
      color: #b11a29;
      font-size: 16px;
    }

    .present-card__price span{
      font-weight: 600;
      color: rgba(0,0,0,.55);
      font-size: 13px;
    }

    .present-card__btn{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      text-decoration: none;
      background: #25D366;
      color: #fff;
      padding: 12px 14px;
      border-radius: 10px;
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      font-weight: 800;
      font-size: 14px;
      transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
    }

    .present-card__btn:hover{
      background-color: #1ebe5d;
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0,0,0,.22);
    }

    @media (hover: hover){
      .present-card:hover{
        transform: translateY(-3px);
        box-shadow:
          0 30px 70px rgba(0,0,0,.45),
          0 12px 22px rgba(0,0,0,.25),
          inset 0 1px 0 rgba(255,255,255,.90),
          inset 0 -1px 0 rgba(0,0,0,.06);
      }
    }

    /* =========================
  MODAL / LIGHTBOX IMÁGENES
========================= */
  .img-modal{
    position: fixed;
    inset: 0;
    display: none;
    z-index: 3000;
  }

  .img-modal.is-open{
    display: block;
  }

  .img-modal__overlay{
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0,0,0,.72);
    cursor: pointer;
  }

  .img-modal__content{
    position: relative;
    width: min(920px, 92vw);
    margin: 10vh auto 0;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(10,10,10,.9);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 22px 60px rgba(0,0,0,.55);
  }

  .img-modal__img{
    width: 100%;
    height: auto;
    display: block;
  }

  .img-modal__close{
    position: absolute;
    top: 10px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(0,0,0,.45);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
  }

  .img-modal__close:hover{
    background: rgba(0,0,0,.65);
  }


    /* SLOGAN (una línea en escritorio) */
    .presentations__slogan{
      margin: 18px 0 0;
      text-align: center;
      font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
      font-weight: 700;
      color: rgba(255,255,255,.85);
      white-space: nowrap;
    }

    /* Responsive */
    @media (max-width: 980px){
      .presentations__grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .presentations__slogan{
        white-space: normal; /* en móvil sí puede brincar de línea */
      }
    }

    @media (max-width: 640px){
      .presentations__grid{
        grid-template-columns: 1fr;
      }
    }

    /* =========================
      HIGHLIGHTS (Por qué avestruz)
    ========================= */
    .highlights{
      padding: 34px 0;
    }

    .highlights__container{
      width: min(1200px, 92%);
      margin: 0 auto;
    }

    .highlights__header{
      text-align: center;
      margin-bottom: 22px;
    }

    .highlights__title{
      margin: 0 0 6px;
      font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
      font-weight: 800;
      font-size: clamp(26px, 3.2vw, 42px);
      color: rgba(255,255,255,.92);
    }

    .highlights__subtitle{
      margin: 0;
      font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
      color: rgba(255,255,255,.75);
      font-size: 14px;
      line-height: 1.6;
    }

    .highlights__grid{
      margin-top: 22px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .highlight-card{
      border-radius: 18px;
      padding: 18px 16px;
      border: 1px solid rgba(255,255,255,.12);

      background:
        radial-gradient(520px 240px at 15% 20%, rgba(255,255,255,.08), transparent 60%),
        radial-gradient(520px 240px at 85% 10%, rgba(177,26,41,.12), transparent 65%),
        linear-gradient(180deg, rgba(0,0,0,.40), rgba(0,0,0,.10));

      box-shadow:
        0 24px 60px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.10);

      backdrop-filter: blur(6px);
    }

    .highlight-card__icon{
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;

      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.14);

      font-size: 20px;
      margin-bottom: 10px;
    }

    .highlight-card__title{
      margin: 0 0 8px;
      font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
      font-weight: 800;
      font-size: 16px;
      color: rgba(255,255,255,.92);
    }

    .highlight-card__text{
      margin: 0;
      font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
      color: rgba(255,255,255,.74);
      font-size: 14px;
      line-height: 1.6;
    }

    /* Responsive */
    @media (max-width: 980px){
      .highlights__grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px){
      .highlights__grid{
        grid-template-columns: 1fr;
      }
    }

    /* =========================
      CTA – INVITACIÓN A PROBAR
    ========================= */
    .cta-trial{
      padding: 24px 0;
    }

    .cta-trial__container{
      width: min(1100px, 92%);
      margin: 0 auto;

      background: #ffffff;
      border-radius: 28px;

      padding: clamp(36px, 5vw, 64px);
      text-align: center;

      box-shadow:
        0 40px 90px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.9);
    }

    .cta-trial__title{
      margin: 0 0 12px;
      font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
      font-weight: 800;
      font-size: clamp(28px, 3.5vw, 44px);
      color: #111;
    }

    .cta-trial__text{
      margin: 0 auto 28px;
      max-width: 60ch;

      font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
      font-size: 16px;
      line-height: 1.65;
      color: rgba(0,0,0,.75);
    }

    .cta-trial__btn{
      margin-bottom: 18px;
    }

    .cta-trial__note{
      margin: 0;
      font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
      font-size: 13px;
      color: rgba(0,0,0,.55);
    }

    /* =========================
   NOSOTROS – DEL RANCHO A TU MESA
========================= */
.about{
  padding: 24px 0;
}

/* Eyebrow editorial premium */
.about__eyebrow{
  margin: 0 0 14px;
  text-align: center;

  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;

  color: rgba(255,255,255,.55);
}

.about__eyebrow::after{
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin: 10px auto 0;
  background: rgba(177,26,41,.85);
  border-radius: 999px;
}


.about__container{
  width: min(1100px, 92%);
  margin: 0 auto;
}

.about__title{
  margin: 0 0 28px;
  text-align: center;

  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  color: rgba(255,255,255,.92);
}

.about__content{
  max-width: 72ch;
  margin: 0;

  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,.78);
}

.about__content p{
  margin: 0 0 18px;
}

.about__content strong{
  color: rgba(255,255,255,.92);
}
/* Layout 2 columnas (texto + imagen) */
.about__grid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: start;
}

/* Contenedor premium de imagen */
.about__media{
  margin: 0;
  border-radius: 22px;
  overflow: hidden;

  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(420px 240px at 20% 10%, rgba(255,255,255,.07), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.10));

  box-shadow:
    0 28px 70px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.10);
}

/* Imagen nítida (sin blur) */
.about__img{
  display: block;
  width: 100%;
  height: 340px;      /* ajusta 300–420 si quieres */
  object-fit: cover;  /* recorte elegante tipo premium */
  object-position: 50% 15%;
}

/* Responsive: en móvil se apila */
@media (max-width: 900px){
  .about__grid{
    grid-template-columns: 1fr;
  }

  .about__img{
    height: 260px;
  }
}

/* =========================
   FOOTER / CONTACTO (PREMIUM)
========================= */
.site-footer{
  margin-top: 44px;
  border-top: 1px solid rgba(255,255,255,.10);

  background:
    radial-gradient(700px 260px at 10% 0%, rgba(177,26,41,.16), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.82));
}

.site-footer__container{
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 54px 0;

  display: grid;
  grid-template-columns: 1.15fr .9fr .7fr 1fr; /* 4 columnas */
  gap: 34px;
  align-items: start;
}

.footer-title{
  margin: 0 0 14px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width: 26px;
  height: 2px;
  background: rgba(177,26,41,.95);
  border-radius: 999px;
}

/* Marca */
.footer-brand__logo img{
  height: 52px;
  width: auto;
  display: block;
}

.footer-brand__text{
  margin: 16px 0 18px;
  max-width: 44ch;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
}

.footer-social{
  display: flex;
  gap: 12px;
}

.footer-social__link{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: rgba(255,255,255,.88);
  text-decoration: none;

  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}

.footer-social__link:hover{
  transform: translateY(-2px);
  border-color: rgba(177,26,41,.55);
  background: rgba(177,26,41,.12);
}

/* Listas */
.footer-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li{
  margin: 0 0 10px;
}

.footer-list a{
  text-decoration: none;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,.74);
  transition: color .2s ease;
}

.footer-list a:hover{
  color: rgba(255,255,255,.92);
}

/* Contacto */
.footer-contact__list{
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 12px;
}

.footer-contact__list li{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}

.footer-contact__list i{
  color: rgba(177,26,41,.95);
  margin-top: 2px;
}

.footer-contact__list a{
  text-decoration: none;
  color: rgba(255,255,255,.74);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 15px;
}

.footer-contact__list a:hover{
  color: rgba(255,255,255,.92);
}

.footer-cta{
  margin-top: 6px;
}

/* Barra inferior */
.site-footer__bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0 22px;
}

.site-footer__bottom{
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.footer-copy{
  margin: 0;
  color: rgba(255,255,255,.45);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 13px;
}

.footer-legal{
  display: flex;
  gap: 18px;
}

.footer-legal a{
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 13px;
}

.footer-legal a:hover{
  color: rgba(255,255,255,.85);
}

/* Responsive */
@media (max-width: 980px){
  .site-footer__container{
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px){
  .site-footer__container{
    grid-template-columns: 1fr;
  }
}


/* =========================
   SEO ACCORDION – PREMIUM OSCURO
========================= */

.seo-accordion{
  margin: 32px auto 0;
  max-width: 900px;

  border-radius: 22px;
  overflow: hidden;

  background: rgba(10,10,10,.75);
  border: 1px solid rgba(255,215,120,.25);

  backdrop-filter: blur(12px);

  box-shadow:
    0 30px 70px rgba(0,0,0,.55),
    0 0 25px rgba(212,175,55,.08);
}

/* Título */
.seo-accordion > summary{
  cursor: pointer;
  padding: 20px 26px;

  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  font-size: 18px;

  color: rgba(255,255,255,.92);
  list-style: none;
  position: relative;
}

.seo-accordion > summary::-webkit-details-marker{
  display:none;
}

.seo-accordion > summary::after{
  content: "▾";
  position: absolute;
  right: 22px;
  transition: transform .25s ease;
  color: rgba(255,215,120,.9);
}

.seo-accordion[open] > summary::after{
  transform: rotate(180deg);
}

/* Contenido */
.seo-accordion__content{
  padding: 0 26px 28px;

  font-family: "Inter", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,.78);

  border-top: 1px solid rgba(255,255,255,.08);
}

.seo-accordion__content h3{
  margin-top: 22px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: rgba(255,255,255,.92);
}
