/* ===========================
   Pescadería - styles.css
   Mantiene tu estructura de clases (header/hero/paintCard/etc.)
   =========================== */

   :root{
    /* Base marina clara */
    --bg: #f6fbff;
    --bg2:#eaf6ff;
    --card: rgba(255,255,255,.92);
    --alt: #ffffff;
  
    --txt:#0b1b2a;
    --muted:#4a637a;
    --line: rgba(12, 44, 72, .14);
  
    /* Acentos */
    --primary:#0ea5e9;   /* celeste océano */
    --primary2:#22c55e;  /* verde fresco (detalle opcional) */
  
    --radius:18px;
    --shadow: 0 22px 60px rgba(10, 40, 70, .14);
    --shadowSoft: 0 12px 30px rgba(10, 40, 70, .10);
  
    --topbar-h: 70px;
  }
  
  *{ box-sizing:border-box; }
  html{ scroll-behavior:smooth; }
  html, body{ overflow-x:hidden; }
  
  body{
    margin:0;
    min-height:100vh;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  
    background-color:#f2f3f5;
    background-image:linear-gradient(
      rgba(255,255,255,.65),
      rgba(255,255,255,.65)
    ),
      url("../multimedia/fondobody.webp");
  
    background-repeat: repeat;
    background-size:  auto;     /* probá 600–900 */
    background-position: 0 0;
  
    background-attachment: scroll;
  }
  
  a{ color:inherit; text-decoration:none; }
  img{ max-width:100%; display:block; }
  .container{ width:min(1100px, 92%); margin:0 auto;  }
  .contnos{width:min(1100px, 92%); margin:0 auto; background: #eaf6ff;
     padding: 8px; border: 1px solid rgba(125, 203, 240, 0.938); border-radius: 12px;}
  .muted{ color:var(--muted); }
  
  /* ===========================
     Header
     =========================== */
  .header{
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(246,251,255,.78);
    border-bottom: 1px solid var(--line);
  }
  
  .header__inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 14px;
    min-height: var(--topbar-h);
    position: relative;
  }
  
  .brand{
    display:flex;
    align-items:center;
    gap: 12px;
  }
  
  .brand__logo{
    width: 44px;
    height: 44px;
    display:grid;
    place-items:center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgb(246, 248, 248), rgb(250, 252, 251));
    border: 1px solid rgba(14,165,233,.25);
    box-shadow: var(--shadowSoft);
    font-size: 20px;
  }
  
  .brand__text h1{
    margin:0;
    font-size: 16px;
    line-height: 1.05;
    letter-spacing: -.01em;
  }
  .brand__text small{
    display:block;
    color: var(--muted);
    margin-top: 4px;
  }
  
  .nav{
    display:flex;
    gap: 16px;
    align-items:center;
  }
  .nav a{
    font-weight: 600;
    color: rgba(11,27,42,.82);
    padding: 10px 10px;
    border-radius: 12px;
    transition: background-color .2s ease, transform .2s ease;
  }
  .nav a:hover{
    background: rgba(14,165,233,.10);
    transform: translateY(-1px);
  }
  
  /* Toggle móvil */
  /* botón hamburguesa */
/* Desktop */


/* Botón hamburguesa (oculto en desktop) */
.nav__toggle{
  display:none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 18px;
  cursor:pointer;
}
  
  /* ===========================
     Botones (mantiene tus clases)
     =========================== */
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap: 8px;
    padding: 14px 22px;
    min-height: 48px;
  
    font-size: 15px;
    font-weight: 700;
    border-radius: 14px;
    border: 1px solid transparent;
  
    cursor:pointer;
    user-select:none;
    white-space:nowrap;
  
    transition:
      transform .25s ease,
      box-shadow .25s ease,
      background-color .25s ease,
      color .25s ease,
      border-color .25s ease;
  }
  
  .btn--small{ padding: 10px 14px; min-height: 40px; font-size: 14px; border-radius: 12px; }
  
  .btn--primary{
    background: linear-gradient(135deg, var(--primary), #39bdf7);
    color: #052433;
    box-shadow:
      0 16px 40px rgba(14,165,233,.30),
      inset 0 1px 0 rgba(255,255,255,.35);
  }
  .btn--primary:hover{
    transform: translateY(-2px);
    box-shadow:
      0 20px 55px rgba(14,165,233,.38),
      inset 0 1px 0 rgba(255,255,255,.35);
  }
  
  .btn--ghost{
    background: rgba(255,255,255,.72);
    border-color: rgba(14,165,233,.22);
    color: rgba(11,27,42,.88);
    box-shadow: 0 10px 24px rgba(10, 40, 70, .10);
  }
  .btn--ghost:hover{
    transform: translateY(-2px);
    background: rgba(255,255,255,.86);
  }
  
  .header__cta{ padding: 12px 16px; min-height: 44px; }
  
  /* =========================
   Hero
   ========================= */
   .hero{
    background:transparent; /* fondo oscuro elegante */
    padding:80px 0;
  }
  
  .hero__inner{
    display:grid;
    grid-template-columns: 1.1fr .9fr; /* izquierda más ancha */
    align-items:center;
    gap:60px;
  }
  
  /* LADO IZQUIERDO */
  .hero__left{
    display:flex;
    flex-direction:column;
    gap:40px;
  }
  .hero__content{display: grid;
  grid-template-columns: auto;}
  .hero__content h1{
    font-size: clamp(36px, 5vw, 52px);
    line-height:1.05;
    margin:0;
    color: #000;
  }
  
  .hero__content p{
    font-size:18px;
    color:rgba(255,255,255,.7);
    margin:12px 0 0;
  }
  
  /* BOTONES */
  .hero__actions{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  /* LADO DERECHO (VIDEO) */
  .hero__right{
    display:flex;
    justify-content:flex-end;
  }
  
  .hero__video{
    width:100%;
    max-width:420px;        /* tamaño elegante */
    aspect-ratio: 9 / 16;   /* mantiene vertical */
    border-radius:28px;
    object-fit:cover;
    box-shadow:0 30px 80px rgba(0,0,0,.6);
  }
  
 
  /* ===========================
     Secciones
     =========================== */
  .section{
    padding: 64px 0;
    
  }
  
  .section--alt{
    background: transparent;
    border-top: 1px solid rgba(12, 44, 72, .10);
    border-bottom: 1px solid rgba(12, 44, 72, .10);
  }
  
  .section h2{
    margin: 0 0 10px;
    font-size: 34px;
    letter-spacing: -.01em;
  }
  
  .section__subtitle{
    margin: 0 0 28px;
    color: var(--muted);
    font-weight: 650;
  }
  
  .hero__actions{
    position: relative;
    z-index: 5;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 18px;
  
    
    transform: translateY(8px);
    transition: opacity .6s ease, transform .6s ease;
  }
  
 
  /* ===========================
     About (usa tus clases paint-about)
     =========================== */
  .paint-about{
    display:grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 22px;
    align-items:start;
  }
  
  .paint-about__main p{ line-height: 1.7; }
  
  .paint-about__badges{
    display:flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
  }
  
  .paint-badge{
    display:inline-flex;
    align-items:center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(14,165,233,.10);
    border: 1px solid rgba(14,165,233,.18);
    color: rgba(11,27,42,.85);
    font-weight: 700;
  }
  
  .paint-photo img{
    border-radius: 18px;
    border: 1px solid rgba(12, 44, 72, .12);
    box-shadow: var(--shadowSoft);
  }
  
  .paint-panel{
    margin-top: 14px;
    background: rgba(255,255,255,.85);
    border: 1px solid rgba(12, 44, 72, .12);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadowSoft);
  }
  .paint-panel__title{ margin: 0 0 10px; font-size: 18px; }
  .paint-panel__list{ margin: 0 0 14px; padding-left: 18px; color: rgba(11,27,42,.80); }
  .paint-panel__list li{ margin: 6px 0; }
  
  /* ===========================
     Promos / Cards (paintCard)
     =========================== */

    .promos{font-size: 25px;
      display: flex;
    justify-content: center;}
/* CONTENEDOR DE BOTONES DE CATALOGO */
.fishFilters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 20px auto 40px;
  padding: 12px 16px;

  max-width: 1100px;

  /* efecto vidrio sobre fondo celeste */
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);

  border-radius: 999px;

  box-shadow: 
    0 10px 30px rgba(13, 82, 105, 0.15),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

/* BOTONES */
.fishFilterBtn {
  border: none;
  padding: 12px 18px;

  border-radius: 999px;

  font-size: 0.95rem;
  font-weight: 700;
  color: #0c4f63;

  background: rgba(255, 255, 255, 0.85);

  cursor: pointer;
  transition: all 0.25s ease;

  box-shadow: 0 6px 18px rgba(10, 70, 90, 0.12);
}

/* HOVER */
.fishFilterBtn:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(10, 70, 90, 0.18);
}

/* ACTIVO */
.fishFilterBtn.active {
  background: linear-gradient(135deg, #0c6c89, #1098b7);
  color: #ffffff;

  box-shadow: 
    0 12px 28px rgba(12, 108, 137, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

/* CLICK */
.fishFilterBtn:active {
  transform: scale(0.96);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .fishFilters {
    border-radius: 20px;
    padding: 14px;
  }

  .fishFilterBtn {
    font-size: 0.88rem;
    padding: 10px 14px;
  }
}

     /*Cardess*/
     .fishGrid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 22px;
      max-width: 1200px;
      margin: 0 auto;
      align-items: stretch;
    }
    
    .fishGrid > .fishCard {margin-left: 20px;
      width: 90%;
      min-width: 0;
    }
    
    .fishCard {
      background: rgba(255, 255, 255, 0.88);
      border: 1px solid rgba(255, 255, 255, 0.7);
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 18px 40px rgba(9, 76, 98, 0.12);
      backdrop-filter: blur(8px);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    
    .fishCard:hover {
      transform: translateY(-6px);
      box-shadow: 0 22px 46px rgba(9, 76, 98, 0.17);
    }
    
    .fishCard .paintCard__media {
      position: relative;
      overflow: hidden;
    }
    
    .fishCard .paintCard__media img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }
    
    .fishCard .paintCard__tag {
      position: absolute;
      top: 14px;
      left: 14px;
      background: rgba(8, 56, 73, 0.88);
      color: #fff;
      padding: 0.38rem 0.7rem;
      border-radius: 999px;
      font-size: 0.74rem;
      font-weight: 800;
      letter-spacing: 0.04em;
    }
    
    .fishCard .paintCard__body {
      padding: 1rem 1rem 1.1rem;
    }
    
    .fishCard .paintCard__title {
      margin: 0 0 0.45rem;
      color: #07384a;
      font-size: 1.2rem;
    }
    
    .fishCard .paintCard__desc {
      margin: 0 0 1rem;
      color: #406674;
      line-height: 1.5;
    }
    
    .fishCard .paintCard__footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
    }
    
    .fishCard .paintCard__price {
      margin: 0;
      font-weight: 800;
      color: #0e6885;
    }
    
    .fishCard.is-hidden {
      display: none;
    }
    
    @media (max-width: 1100px) {
      .fishGrid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }
    
    @media (max-width: 768px) {
      .fishGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    
    @media (max-width: 520px) {
      .fishGrid {
        grid-template-columns: 1fr;
      }
    }
  
  
  
  /* ===========================
     Calc
     =========================== */
  .calc{
    width: min(620px, 100%);
    margin: 0 auto;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(12, 44, 72, .12);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadowSoft);
    display:grid;
    gap: 12px;
  }
  
  .calc label{
    display:grid;
    gap: 6px;
    font-weight: 700;
    color: rgba(11,27,42,.85);
  }
  
  .calc input, .calc select, .contact input, .contact textarea{
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(12, 44, 72, .16);
    background: rgba(255,255,255,.92);
    outline: none;
    font: inherit;
  }
  
  .calc input:focus, .calc select:focus, .contact input:focus, .contact textarea:focus{
    border-color: rgba(14,165,233,.55);
    box-shadow: 0 0 0 4px rgba(14,165,233,.15);
  }
  
  .calc__result{
    padding: 12px;
    border-radius: 14px;
    border: 1px dashed rgba(12, 44, 72, .24);
    font-weight: 900;
    background: rgba(14,165,233,.08);
  }
  
  /* ===========================
     Reviews
     =========================== */
  .reviews-demo{
    padding: 64px 0;
  }
  .reviews-demo__head{
    text-align:center;
    margin-bottom: 18px;
  }
  .reviews-demo__subtitle{ color: var(--muted); font-weight: 650; margin: 0; }
  
  .reviews-demo__grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 20px;
  }

  .heart {
    display: inline-block;
    color: red;
    font-size: 24px;
    animation: latido 1s infinite;
  }
  
  @keyframes latido {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
  }
  .review-stars{
    color: #f5b301;
    letter-spacing: 1px;
  }
  .review-card{
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(12, 44, 72, .12);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadowSoft);
  }
  .review-badge{
    display:inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 12px;
    background: rgba(34,197,94,.12);
    border: 1px solid rgba(34,197,94,.20);
  }
  .review-text{ margin: 12px 0; color: rgba(11,27,42,.78); font-weight: 650; line-height: 1.5; }
  .review-meta{
    display:flex;
    justify-content:space-between;
    color: rgba(11,27,42,.82);
    font-weight: 800;
  }
  .reviews-demo__notice{
    margin-top: 18px;
    background: rgba(255,255,255,.70);
    border: 1px solid rgba(12, 44, 72, .10);
    border-radius: 18px;
    padding: 14px;
    text-align:center;
  }
  
  .reviews-demo__btn {
    display: inline-block;
    padding: 12px 18px;
    background-color: #969e9e; /* gris clarito */
    color: #111; /* negro */
    font-size: 14px;
    font-weight: 800;
    border-radius: 10px;
    border: 1px solid #070707;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  /* hover (clave para que se sienta “vivo”) */
  .reviews-demo__btn:hover {
    background-color: #e5e5e5;
    border-color: #d0d0d0;
    transform: translateY(-1px);
  }
  
  /* click */
  .reviews-demo__btn:active {
    transform: translateY(0);
    background-color: #dcdcdc;
  }

  /* ===========================
     Contacto
     =========================== */
  .contact{
    display:grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 18px;
    align-items:start;
  }
  .contact__info{
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(12, 44, 72, .12);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadowSoft);
  }
  .infoBox h3{ margin: 0 0 6px; }
  .infoBox p{ margin: 0 0 12px; color: rgba(11,27,42,.78); font-weight: 650; }
  
  .contact__form{
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(12, 44, 72, .12);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadowSoft);
    display:grid;
    gap: 12px;
  }
  .mens{ display:grid; gap: 8px; }
  .mensaj{ resize: vertical; min-height: 160px; }
  
  .map{
    margin-top: 18px;
    border-radius: 18px;
    overflow:hidden;
    border: 1px solid rgba(12, 44, 72, .12);
    box-shadow: var(--shadowSoft);
  }
  .map iframe{ width:100%; height: 320px; border:0; }
  .seo-local{border-top: 1px solid rgba(12, 44, 72, .10);
    background: rgba(255,255,255,.60);
    margin-bottom: 0;
  padding-bottom: 40px;
  }
  /* ===========================
     WhatsApp flotante
     =========================== */
  .wa-float{
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display:grid;
    place-items:center;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(12, 44, 72, .12);
    box-shadow: var(--shadow);
    z-index: 80;
    transition: transform .2s ease;
  }
  .wa-float:hover{ transform: translateY(-2px); }
  .wa-float img{ width: 60px; height: 60px; }
  
  /* ===========================
     Footer
     =========================== */
  .footer{
    border-top: 1px solid rgba(12, 44, 72, .10);
    background: rgba(255,255,255,.60);
    margin-top: 0;

  }
  .footer__inner{
    display:flex;
    align-items:center;
    justify-content:start;
    gap: 8px;
    padding: 18px 0;
  }
  .redes{ width: 40px; height: 40px; opacity: .85; }
  .redes:hover{ opacity: 1; }
  
  /* ===========================
     Side card
     =========================== */
     .side-card{
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 9999;
      
        max-width: 320px;
        padding: 16px 18px;
        border-radius: 16px;
      
        background: #e7d912;
        color: #eaf6ff;
      
        box-shadow: 0 18px 40px rgba(0,0,0,.35);
      
        opacity: 0;
        transform: translateY(-12px);
        pointer-events: none;
      
        transition:
          opacity .4s ease,
          transform .4s ease;
      }
      
      /* estado visible */
      .side-card.is-visible{
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }
      
      .side-card__title{
        font-weight: 700;
        margin: 0 0 6px;
      }
      
      .side-card__text{
        margin: 0;
        font-size: 14px;
        opacity: .9;
      }
      
     
      
      
  
  /* ===========================
     Modal
     =========================== */
  .modal{
    border: none;
    border-radius: 18px;
    padding: 0;
    overflow:hidden;
    width: min(920px, 92vw);
    box-shadow: var(--shadow);
  }
  .modal::backdrop{
    background: rgba(0,0,0,.55);
  }
  .modal img{ width:100%; height:auto; display:block; }
  .modal__close{
    position:absolute;
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(0,0,0,.35);
    color: #fff;
    cursor:pointer;
  }
  
/* ===========================
   CARRUSEL GALERÍA
=========================== */

.fishCarouselSection{
  padding: 70px 0;
}

.fishCarouselHead{
  text-align:center;
  margin-bottom: 30px;
}

.fishCarouselHead h2{
  font-size: 38px;
  margin-bottom: 10px;
  color: #083849;
}

.fishCarouselHead p{
  max-width: 700px;
  margin: 0 auto;
  color: #4a6672;
  line-height: 1.6;
  font-weight: 600;
}

.fishCarouselWrapper{
  position: relative;
  overflow: hidden;
}

.fishCarouselTrack{
  display: flex;
  gap: 18px;

  overflow-x: auto;
  scroll-behavior: smooth;

  scrollbar-width: none;
}

.fishCarouselTrack::-webkit-scrollbar{
  display:none;
}

.fishSlide{
  min-width: 320px;
  flex: 0 0 auto;

  border-radius: 24px;
  overflow: hidden;

  background: rgba(255,255,255,.85);

  box-shadow:
    0 18px 40px rgba(9, 76, 98, 0.14);

  transition:
    transform .28s ease,
    box-shadow .28s ease;
}

.fishSlide:hover{
  transform: translateY(-6px);

  box-shadow:
    0 24px 52px rgba(9, 76, 98, 0.18);
}

.fishSlide img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;

  cursor: pointer;

  transition: transform .4s ease;
}

.fishSlide:hover img{
  transform: scale(1.05);
}

.fishCarouselTrack{
  scroll-snap-type: x mandatory;
}

.fishSlide{
  scroll-snap-align: center;
}

/* BOTONES */

.fishCarouselBtn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  z-index: 5;

  width: 52px;
  height: 52px;

  border: none;
  border-radius: 50%;

  cursor: pointer;

  background: rgba(255,255,255,.9);

  color: #083849;

  font-size: 22px;
  font-weight: bold;

  box-shadow:
    0 10px 24px rgba(0,0,0,.14);

  transition:
    transform .2s ease,
    background .2s ease;
}

.fishCarouselBtn:hover{
  transform: translateY(-50%) scale(1.06);
  background: white;
}

.fishCarouselBtn.prev{
  left: 10px;
}

.fishCarouselBtn.next{
  right: 10px;
}

/* MOBILE */

@media (max-width: 600px){

  .fishSlide{
    min-width: 85%;
  }

  .fishSlide img{
    height: 340px;
  }

  .fishCarouselBtn{
    width: 44px;
    height: 44px;
  }

}

  
  /* ===========================
     Responsive
     =========================== */
  @media (max-width: 980px){
   
    .grid.categories{ grid-template-columns: repeat(2, 1fr); }
    .reviews-demo__grid{ grid-template-columns: 1fr; }
    .paint-about{ grid-template-columns: 1fr; }
    .contact{ grid-template-columns: 1fr; }
  }
  
/* Mobile */
@media (max-width: 720px){
  .nav__toggle{
    display:inline-flex;
    position: relative;
    z-index: 201;
  }

  /* IMPORTANTE: apuntamos a [data-nav] para que coincida con el JS */
  [data-nav]{
    position:absolute;
    top: 100%;
    right: 4%;
    width: min(320px, 92vw);
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(12, 44, 72, .12);
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow);
    display:none;
    flex-direction:column;
    gap: 6px;
    z-index: 999; /* por si algo lo tapa */
  }

  [data-nav].is-open{ display:flex; }


  
}
  @media (max-width: 520px){
   
    
    .footer__inner{ display: flex; gap: 10px; }
    .side-card{
        left: 12px;
        right: 12px;
        top: 12px;
        max-width: none;
      }
     
      .header__cta{
        display: none;
      }
  }
  
  /* =========================
   HERO MOBILE
   ========================= */
   @media (max-width: 600px){

    .hero{ padding:0; padding-top: 84px ; min-height:90vh; width: 100%; position:relative; background:transparent; }
    .hero .hero__video{height: 90vh;}
  .hero__inner{ min-height:90vh; position:relative; }

  .hero__right{ position:absolute; inset:0; z-index:0; height: 90vh; width: 100%; }

  .hero__video{
    width:100%;
    height:100%;
    max-width:none;
    border-radius:0;
    object-fit:cover;
    object-position: 50% 20%; /* 🔥 sube el encuadre (probá 10%–35%) */
    background:#000;
    transform: translateY(-13px);
  }
   
   
   
   
    .hero__inner.container{
      width: 100%;
      max-width: none;
      margin: 0;
      padding: 0;       /* clave: sin padding lateral */
      min-height: 100svh;
    }
  
    
  
   
  

  
    /* CONTENIDO SOBRE EL VIDEO */
    .hero__left{
      position:relative;
      z-index:2;
      min-height:90vh;
      display:flex;
      flex-direction:column;
      justify-content:flex-end; /* 🔥 manda todo abajo */
      padding:0 20px 50px;
      gap:30px;
    }
  
    .hero__content h1{
      font-size:28px;
      display: none;
    }
  
    .hero__content p{
      font-size:14px;
    }
  
   
  
  }
  
  /*Aparicion del texto y botones del hero*/
  @media (max-width: 600px){

    .hero__left{
      
        opacity: 1;
        transform: none;
       
      transition: opacity .8s ease, transform .8s ease;
    }
  
    .hero__left.is-visible{
      opacity: 1;
      transform: translateY(-20px);
    }
  
  }

  @media (max-width: 600px){
    .hero__actions{
      display:flex;
      flex-direction:column;
      gap:12px;
      
      opacity:0;
      transform: translateY(-2px);
  
      animation: aparecerBotones .6s ease forwards;
      animation-delay: 14s;
    }
    .hero__actions.is-visible{
      transform: translateY(-20px);
    }
  
    @keyframes aparecerBotones{
      from{
        opacity:0;
        transform:translateY(8px);
      }
  
      to{
        opacity:1;
        transform:translateY(-80px);
      }
    }
  }