/* =========================
   Pet-friendly UI (cálido)
   ========================= */

:root{
  --bg: #fff7ee;
  --surface: rgba(255,255,255,.78);
  --card: rgba(255,255,255,.90);
  --text: #1f2937;
  --muted: #6b7280;

  --brand: #ff7a59;      /* coral */
  --brand-2: #ffd166;    /* amarillo suave */
  --accent: #2a9d8f;     /* verde agua */
  --wa: #25D366;

  --line: rgba(31,41,55,.10);
  --shadow: 0 18px 50px rgba(31,41,55,.12);
  --radius: 18px;

  --container: 1100px;
  --header-h: 84px;
}

*{ box-sizing: border-box; }
html, body{
  overflow-x: hidden;
}


html{scroll-behavior:smooth}


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, 0.55),
    rgba(255, 255, 255, 0.55)
  ),
  url("../multimedia/fondobody3.webp");


background-repeat: repeat;
background-size:  100% 50vh;     /* 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(100% - 32px, var(--container));
  margin-inline: auto;
}

/* =========================
   Header
   ========================= */
.header{
  
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  top: 0;
  z-index: 30;
  background: rgba(255, 247, 238, .75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand{
  display: flex;
  gap: 10px;
  align-items: center;
}

.brand__logo{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,122,89,.22), rgba(255,209,102,.22));
  border: 1px solid rgba(255,122,89,.20);
}

.brand__text strong{ display:block; font-size: 16px; }
.brand__text small{ display:block; color: var(--muted); margin-top: 2px; }

.nav{
  display: flex;
  gap: 14px;
  align-items: center;
}
.nav a{
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(31,41,55,.86);
}
.nav a:hover{
  background: rgba(255,255,255,.55);
}

.burger{
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.65);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

.header__cta{ display: none; }

/* =========================
   Buttons
   ========================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  user-select: none;
}

.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: linear-gradient(180deg, var(--brand), #ff5a3c);
  color: white;
  box-shadow: 0 12px 30px rgba(255, 90, 60, .28);
}

.btn--primary:hover{
  box-shadow: 0 16px 40px rgba(255, 90, 60, .34);
}

.btn--soft{
  background: rgba(255,255,255,.70);
  border-color: var(--line);
  color: rgba(31,41,55,.90);
}

.btn--soft:hover{
  background: rgba(255,255,255,.86);
  border-color: rgba(31,41,55,.16);
}

.btn--wa{
  background: linear-gradient(180deg, rgba(37,211,102,1), rgba(18,180,80,1));
  color: white;
  border: none;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .25);
}

.btn--wa:hover{
  box-shadow: 0 16px 40px rgba(37, 211, 102, .30);
}

/* =========================
   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 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;
  }
  
  /* 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);
  }
  
  
  

/* =========================
   Sections
   ========================= */
.section{
  padding: 46px 0;
}

.section__head{
  margin-bottom: 18px;
}

.section__head h2{
  margin: 0 0 6px;
  font-size: 26px;
  letter-spacing: -0.01em;
}

.section__head p{
  margin: 0;
  color: var(--muted);
}

/* Steps */
.steps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.step{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 25px rgba(31,41,55,.06);
}

.step h3{ margin: 0 0 6px; }
.step p{ margin: 0; color: rgba(31,41,55,.76); }

/* =========================
   Filters
   ========================= */
.filters{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 16px;
}

.chip{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.62);
  border-radius: 999px;
  padding: 9px 12px;
  cursor: pointer;
  font-weight: 700;
  color: rgba(31,41,55,.84);
  transition: background .15s ease, transform .15s ease, border-color .15s ease;
}
.chip:hover{ background: rgba(255,255,255,.80); }
.chip:active{ transform: translateY(1px); }

.chip.is-active{
  background: linear-gradient(180deg, rgba(255,122,89,.20), rgba(255,209,102,.22));
  border-color: rgba(255,122,89,.22);
}

/* =========================
   Product Grid
   ========================= */
.grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(31,41,55,.07);
  transition: transform .15s ease, box-shadow .15s ease;
}

.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(31,41,55,.10);
}

.card__media{
  height: 140px;
  background:
    radial-gradient(140px 90px at 30% 35%, rgba(255,122,89,.25), transparent 70%),
    radial-gradient(140px 90px at 70% 30%, rgba(42,157,143,.22), transparent 70%),
    linear-gradient(135deg, rgba(255,255,255,.85), rgba(255,255,255,.50));
}

.card__body{
  padding: 14px 14px 16px;
}

.card__title{
  margin: 0 0 6px;
  font-size: 16px;
}

.card__meta{
  margin: 0 0 12px;
  color: rgba(31,41,55,.72);
  font-size: 14px;
}

.card__actions{
  display: flex;
  gap: 10px;
  align-items: center;
}

/* =========================
   Quick Order
   ========================= */
.quick{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 12px 30px rgba(31,41,55,.06);
}

.quick__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.field{
  display: grid;
  gap: 6px;
}

.field span{
  font-weight: 700;
  color: rgba(31,41,55,.86);
}

.field input,
.field textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(31,41,55,.12);
  background: rgba(255,255,255,.75);
  padding: 12px 12px;
  outline: none;
  font: inherit;
}

.field input:focus,
.field textarea:focus{
  border-color: rgba(255,122,89,.40);
  box-shadow: 0 0 0 4px rgba(255,122,89,.12);
  background: rgba(255,255,255,.92);
}

.field--full{ grid-column: 1 / -1; }

.quick__actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.hint{
  margin: 0;
  color: rgba(31,41,55,.65);
  font-size: 13px;
}

/* =========================
   Contact
   ========================= */
.contact{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.contact__info{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 25px rgba(31,41,55,.06);
}

.contact__info p{ margin: 0 0 10px; color: rgba(31,41,55,.78); }
.contact__info strong{ color: rgba(31,41,55,.92); }

.contact__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.contact__map{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.55);
}

.contact__map iframe{
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
}

/* =========================
   Footer
   ========================= */
.footer{
  padding: 26px 0 40px;
  border-top: 1px solid var(--line);
  background: rgba(255, 247, 238, .55);
}

.footer__inner{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__small{
  color: rgba(31,41,55,.62);
  font-size: 13px;
  margin: 0;
}

/* =========================
   Floating WhatsApp
   ========================= */
.fab-wa{
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  
  color: white;
  box-shadow: 0 18px 50px rgba(37, 211, 102, .28);
  border: 0;
  z-index: 40;
}

/* Toast */
.toast{
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%) translateY(12px);
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(31,41,55,.12);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 18px 45px rgba(31,41,55,.14);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  backdrop-filter: blur(10px);
}

.toast.is-show{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(37,211,102,1), rgba(18,180,80,1));
  box-shadow: 0 10px 20px rgba(37,211,102,.28);
}

.toast__text{
  font-weight: 800;
  color: rgba(31,41,55,.86);
  font-size: 14px;
}


/* =========================
   Responsive
   ========================= */
@media (max-width: 920px){

  .steps{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .contact{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .nav{
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    background: rgba(255,255,255,.82);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    box-shadow: var(--shadow);
  }

  .nav.is-open{ display: flex; }

  .nav a{
    padding: 10px 12px;
    border-radius: 14px;
  }

  .burger{ display: inline-flex; }
  .header__cta{ display: inline-flex; }

  .grid{ grid-template-columns: 1fr; }
  .quick__grid{ grid-template-columns: 1fr; }
}
@media (max-width: 790px){
  .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;}
   
   
   
   
    .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;
    }
  
    .hero__content p{
      font-size:14px;
    }
  
    .hero__actions{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
  
  }
  
  /*Aparicion del texto y botones del hero*/
  @media (max-width: 600px){

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