:root{
  --ink:#102238;
  --muted:#6e8095;
  --blue:#438ccc;
  --blue-dark:#1e5f99;
  --ice:#eef7ff;
  --line:#dbeaf6;
  --white:#fff;
  --shadow:0 18px 55px rgba(30,73,112,.12);
  --radius:26px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Montserrat,system-ui,sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.6;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(1180px,calc(100% - 40px));
  margin:auto;
}

/* =========================
   NAVEGACIÓN
========================= */

.site-header{
  position:absolute;
  inset:0 0 auto;
  z-index:30;
}

.nav-wrap{
  width:min(1280px,calc(100% - 48px));
  height:92px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

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

.brand-paw{
  width:48px;
  height:48px;
  border:2px solid currentColor;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:22px;
}

.brand-copy{
  display:grid;
  line-height:1;
}

.brand-copy strong{
  font-size:28px;
  letter-spacing:.04em;
}

.brand-copy small{
  margin-top:6px;
  font-size:10px;
  letter-spacing:.3em;
}

.main-nav{
  display:flex;
  gap:34px;
  font-weight:700;
  text-transform:uppercase;
  font-size:13px;
  letter-spacing:.03em;
}

.main-nav a{
  position:relative;
}

.main-nav a::after{
  content:"";
  position:absolute;
  left:0;
  right:100%;
  bottom:-8px;
  height:2px;
  background:var(--blue);
  transition:.25s;
}

.main-nav a:hover::after{
  right:0;
}

.menu-toggle{
  display:none;
  border:0;
  background:#fff;
  width:44px;
  height:44px;
  border-radius:50%;
  font-size:18px;
  color:var(--ink);
  box-shadow:0 8px 25px rgba(0,0,0,.1);
}

/* =========================
   HERO
========================= */

.hero{
  position:relative;
  min-height:820px;
  overflow:hidden;
  background:#f8fbff;
  display:flex;
  align-items:center;
}

.hero-art{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.hero-shade{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(255,255,255,.98) 0%,
    rgba(255,255,255,.93) 29%,
    rgba(255,255,255,.46) 49%,
    rgba(255,255,255,0) 68%
  );
}

.hero-content{
  position:relative;
  z-index:2;
  padding-top:85px;
}

.hero-copy{
  max-width:570px;
}

.eyebrow{
  margin:0 0 12px;
  text-transform:uppercase;
  font-weight:800;
  letter-spacing:.14em;
  font-size:13px;
  color:var(--blue);
}

.hero-eyebrow{
  color:var(--blue-dark);
}

.hero h1{
  font-size:clamp(50px,5.3vw,82px);
  line-height:1.03;
  letter-spacing:-.055em;
  margin:0 0 24px;
  font-weight:900;
}

.hero h1 span{
  color:var(--blue);
}

.hero-lead{
  font-size:20px;
  color:#43566b;
  max-width:560px;
  margin:0 0 30px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.btn{
  min-height:54px;
  padding:0 24px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  font-weight:800;
  transition:.25s;
}

.btn-primary{
  background:var(--blue);
  color:#fff;
  box-shadow:0 12px 28px rgba(67,140,204,.3);
}

.btn-primary:hover{
  transform:translateY(-2px);
  background:var(--blue-dark);
}

.btn-ghost{
  background:rgba(255,255,255,.75);
  border:1px solid var(--line);
  backdrop-filter:blur(8px);
}

.hero-trust{
  display:flex;
  gap:0;
  margin-top:48px;
}

.hero-trust div{
  display:flex;
  align-items:center;
  gap:10px;
  padding-right:24px;
  margin-right:24px;
  border-right:1px solid #b8cde0;
  max-width:165px;
  font-size:12px;
  font-weight:700;
}

.hero-trust div:last-child{
  border:0;
  margin:0;
  padding:0;
}

.hero-trust i{
  font-size:25px;
  color:var(--blue);
}

.scroll-cue{
  position:absolute;
  z-index:3;
  bottom:18px;
  left:50%;
  transform:translateX(-50%);
  width:52px;
  height:52px;
  border-radius:50%;
  background:#fff;
  color:var(--blue);
  display:grid;
  place-items:center;
  box-shadow:0 8px 30px rgba(25,74,115,.18);
}

/* =========================
   DIFERENCIADORES
========================= */

.why-strip{
  position:relative;
  z-index:5;
  margin-top:-1px;
  background:#fff;
  border-bottom:1px solid #edf3f8;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  padding:28px 0;
}

.why-grid article{
  display:flex;
  gap:14px;
  align-items:center;
}

.why-grid i{
  width:46px;
  height:46px;
  border-radius:15px;
  background:var(--ice);
  display:grid;
  place-items:center;
  color:var(--blue);
  font-size:19px;
  flex:0 0 auto;
}

.why-grid div{
  display:grid;
}

.why-grid strong{
  font-size:14px;
}

.why-grid span{
  font-size:12px;
  color:var(--muted);
}

/* =========================
   SECCIONES GENERALES
========================= */

.section{
  padding:104px 0;
}

.section-alt{
  background:linear-gradient(180deg,#f6fbff 0%,#fff 100%);
}

.section-heading{
  max-width:790px;
  margin-bottom:50px;
}

.section-heading.centered{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.section-heading h2,
.about-copy h2,
.story-copy h2,
.contact-box h2{
  font-size:clamp(36px,4vw,58px);
  line-height:1.07;
  letter-spacing:-.04em;
  margin:0 0 18px;
}

.section-heading p:not(.eyebrow),
.about-copy p,
.story-copy p,
.contact-box>div>p{
  font-size:18px;
  color:var(--muted);
}

/* =========================
   COLECCIONES
========================= */

.collection-head{
  display:flex;
  align-items:center;
  gap:20px;
  border-radius:24px;
  padding:24px 28px;
  margin:48px 0 28px;
}

.collection-head.dogs{
  background:linear-gradient(135deg,#eef6ff,#f8fbff);
  border:1px solid #dceaf6;
}

.collection-head.cats{
  background:linear-gradient(135deg,#edf8ff,#f8fdff);
  border:1px solid #d8edf8;
  margin-top:76px;
}

.collection-icon{
  width:64px;
  height:64px;
  border-radius:20px;
  display:grid;
  place-items:center;
  background:#fff;
  color:var(--blue);
  font-size:25px;
  box-shadow:0 10px 28px rgba(53,100,145,.1);
  flex:0 0 auto;
}

.collection-head span{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--blue);
  font-weight:800;
}

.collection-head h3{
  font-size:30px;
  margin:2px 0 0;
}

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

/* =========================
   PRODUCTOS
========================= */

.product-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
  align-items:stretch;
}

.feline-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.product-card{
  position:relative;
  display:flex;
  flex-direction:column;
  min-width:0;
  min-height:100%;
  padding:18px 18px 22px;
  border-radius:24px;
  background:#fff;
  border:1px solid #e0edf6;
  box-shadow:0 12px 35px rgba(31,73,108,.07);
  transition:.28s;
  overflow:hidden;
}

.product-card::before{
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:8px;
  background:var(--accent,#dceaf6);
}

.product-card:hover{
  transform:translateY(-7px);
  box-shadow:var(--shadow);
}

/*
  Todos los productos tienen exactamente
  el mismo espacio visual.
*/

.product-visual{
  position:relative;
  width:100%;
  height:260px;
  margin-bottom:17px;
  border-radius:18px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(
    160deg,
    color-mix(in srgb,var(--accent,#dceaf6) 25%,#fff),
    #fff
  );
}

/*
  La imagen se centra dentro de ese espacio,
  sin deformarse ni pegarse a los bordes.
*/

.product-visual img{
  width:86%;
  height:86%;
  max-width:none;
  max-height:none;
  margin:auto;
  padding:0;
  display:block;
  object-fit:contain;
  object-position:center center;
}

/*
  Las fotos de botellas tienen más espacio vacío
  dentro de sus propios archivos, por eso se amplían.
*/

.product-card.accent-blue .product-visual img,
.product-card.accent-sky .product-visual img,
.product-card.accent-lilac .product-visual img,
.product-card.accent-gray .product-visual img{
  width:94%;
  height:94%;
}

/*
  Las bolsas se mantienen ligeramente más pequeñas
  para no tocar los bordes del recuadro.
*/

.product-card.accent-yellow .product-visual img,
.product-card.accent-green .product-visual img,
.product-card.accent-ice .product-visual img,
.product-card.accent-catblue .product-visual img,
.product-card.accent-mint .product-visual img{
  width:88%;
  height:88%;
}

.product-fallback{
  display:none;
  width:100%;
  height:100%;
  place-items:center;
  font-size:72px;
  color:color-mix(
    in srgb,
    var(--accent,#438ccc) 70%,
    #234
  );
}

.pill{
  align-self:flex-start;
  padding:7px 10px;
  border-radius:999px;
  background:#eff6fb;
  color:var(--blue-dark);
  font-size:10px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.product-card h3{
  font-size:22px;
  line-height:1.15;
  margin:12px 0 8px;
}

.product-card p{
  font-size:14px;
  color:var(--muted);
  margin:0 0 17px;
}

.product-card strong{
  margin-top:auto;
  padding-top:8px;
  color:var(--blue-dark);
  font-size:13px;
}

.product-card strong i{
  margin-left:6px;
  transition:.2s;
}

.product-card:hover strong i{
  transform:translateX(4px);
}

.new-badge{
  position:absolute;
  top:18px;
  right:18px;
  z-index:2;
  background:var(--accent);
  color:#fff;
  padding:7px 11px;
  border-radius:999px;
  font-size:10px;
  font-weight:900;
  letter-spacing:.08em;
}

.featured-product{
  border-color:color-mix(
    in srgb,
    var(--accent) 40%,
    #fff
  );
}

.future-product{
  opacity:.82;
}

.accent-yellow{
  --accent:#efad25;
}

.accent-cardio{
  --accent:#a84662;
}

.accent-blue{
  --accent:#69a9d6;
}

.accent-sky{
  --accent:#8ec8e8;
}

.accent-lilac{
  --accent:#9c8bd2;
}

.accent-green{
  --accent:#76aa77;
}

.accent-ice{
  --accent:#86b7d6;
}

.accent-gray{
  --accent:#818c9b;
}

.accent-catblue{
  --accent:#69a9d6;
}

.accent-mint{
  --accent:#7fbdaf;
}

/* =========================
   HISTORIAS
========================= */

.story-banner{
  padding:76px 0;
  background:linear-gradient(120deg,#14304c,#1f5c8c);
  color:#fff;
}

.story-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:55px;
  align-items:center;
}

.story-copy .eyebrow{
  color:#9ed2ff;
}

.story-copy h2{
  font-size:clamp(36px,4vw,54px);
}

.story-copy p{
  color:#d3e5f4;
}

.text-link{
  font-weight:800;
  color:#fff;
}

.story-icons{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.story-icons div:nth-child(5){
  grid-column:1/-1;
  justify-self:center;
  width:min(100%,280px);
}

.story-icons div{
  display:flex;
  align-items:center;
  gap:13px;
  padding:18px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:20px;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(8px);
}

.story-icons i{
  font-size:28px;
  color:#9ed2ff;
}

.story-icons span{
  line-height:1.25;
  font-size:13px;
}

.story-icons b{
  font-size:15px;
}

/* =========================
   MANADA
========================= */

.pack-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.pack-card{
  background:#fff;
  border:1px solid #dceaf5;
  border-radius:22px;
  padding:16px;
  text-align:center;
  box-shadow:0 10px 30px rgba(22,70,105,.06);
}

.pack-card img{
  width:100%;
  aspect-ratio:1.05;
  object-fit:cover;
  border-radius:16px;
}

.pack-card h3{
  font-size:20px;
  margin:14px 0 6px;
}

.pack-card p{
  font-size:13px;
  color:var(--muted);
  margin:0;
}

.pack-card.memorial h3 i{
  font-size:12px;
  color:#a84662;
}

/* =========================
   NOSOTROS
========================= */

.about-section{
  background:#fff;
}

.about-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:center;
}

.about-visual{
  min-height:470px;
  border-radius:32px;
  background:linear-gradient(145deg,#edf7ff,#d9ecfb);
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.about-visual::before{
  display:none;
}

.lab-card,
.heart-card{
  position:absolute;
  display:flex;
  align-items:center;
  gap:12px;
  padding:20px;
  border-radius:22px;
  background:rgba(255,255,255,.88);
  box-shadow:0 16px 45px rgba(32,79,116,.14);
  font-weight:800;
}

.lab-card{
  left:40px;
  top:90px;
}

.heart-card{
  right:34px;
  bottom:85px;
}

.lab-card i,
.heart-card i{
  width:50px;
  height:50px;
  border-radius:16px;
  background:var(--ice);
  display:grid;
  place-items:center;
  color:var(--blue);
  font-size:22px;
}

.about-points{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:26px;
}

.about-points span{
  padding:9px 13px;
  border-radius:999px;
  background:var(--ice);
  font-size:12px;
  font-weight:700;
}

.about-points i{
  color:var(--blue);
  margin-right:6px;
}

/* =========================
   CONTACTO
========================= */

.contact-section{
  padding-top:40px;
}

.contact-box{
  background:linear-gradient(135deg,#eff8ff,#fff);
  border:1px solid #dbeaf5;
  border-radius:32px;
  padding:48px;
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:45px;
  align-items:center;
}

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

.contact-grid a{
  display:flex;
  align-items:center;
  gap:13px;
  background:#fff;
  border:1px solid #e1edf6;
  border-radius:18px;
  padding:17px;
  transition:.2s;
}

.contact-grid a:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 28px rgba(32,80,116,.1);
}

.contact-grid i{
  font-size:24px;
  color:var(--blue);
  width:34px;
}

.contact-grid span{
  display:grid;
  font-size:12px;
  color:var(--muted);
}

.contact-grid b{
  font-size:14px;
  color:var(--ink);
}

/* =========================
   FOOTER
========================= */

.site-footer{
  margin-top:100px;
  background:#102238;
  color:#d8e5ef;
  padding:60px 0 20px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.5fr repeat(3,1fr);
  gap:50px;
}

.footer-brand .brand{
  color:#fff;
}

.footer-brand p{
  max-width:300px;
  font-size:13px;
  color:#9fb2c2;
}

.site-footer h4{
  color:#fff;
  margin:0 0 14px;
}

.site-footer>div>div:not(.footer-brand){
  display:flex;
  flex-direction:column;
  gap:8px;
}

.site-footer a{
  font-size:13px;
  color:#b9c9d5;
}

.socials{
  display:flex;
  flex-direction:row !important;
  gap:10px !important;
}

.socials a{
  width:38px;
  height:38px;
  border:1px solid #35506a;
  border-radius:50%;
  display:grid;
  place-items:center;
}

.footer-bottom{
  margin-top:42px;
  padding-top:18px;
  border-top:1px solid #29435b;
  display:flex;
  justify-content:space-between;
  font-size:11px;
  color:#8fa5b6;
}

/* =========================
   TABLETA
========================= */

@media(max-width:1000px){

  .product-grid,
  .feline-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .pack-grid{
    grid-template-columns:repeat(4,1fr);
  }

  .hero{
    min-height:720px;
  }

  .hero-shade{
    background:linear-gradient(
      90deg,
      rgba(255,255,255,.97),
      rgba(255,255,255,.78) 55%,
      rgba(255,255,255,.1)
    );
  }

  .story-grid,
  .about-grid,
  .contact-box{
    grid-template-columns:1fr;
  }

  .contact-box{
    padding:38px;
  }

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

  .product-visual{
    height:270px;
  }
}

/* =========================
   CELULAR
========================= */

@media(max-width:760px){

  .container{
    width:min(100% - 28px,620px);
  }

  .site-header{
    position:absolute;
  }

  .nav-wrap{
    width:calc(100% - 28px);
    height:74px;
  }

  .brand-paw{
    width:40px;
    height:40px;
    font-size:18px;
  }

  .brand-copy strong{
    font-size:21px;
  }

  .brand-copy small{
    font-size:8px;
  }

  .menu-toggle{
    display:grid;
    place-items:center;
  }

  .main-nav{
    display:none;
    position:absolute;
    top:65px;
    left:0;
    right:0;
    background:rgba(255,255,255,.97);
    border:1px solid #dfeaf3;
    border-radius:18px;
    padding:18px;
    flex-direction:column;
    gap:15px;
    box-shadow:0 15px 40px rgba(25,63,95,.14);
  }

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

  .hero{
    display:block;
    min-height:auto;
    padding-top:74px;
    background:#fff;
  }

  .hero-art{
    position:relative;
    width:100%;
    height:auto;
    max-height:none;
    object-fit:contain;
    object-position:center;
  }

  .hero-shade{
    display:none;
  }

  .hero-content{
    padding:26px 0 44px;
  }

  .hero-copy{
    max-width:none;
  }

  .hero h1{
    font-size:43px;
  }

  .hero-lead{
    font-size:16px;
  }

  .hero-actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .btn{
    width:100%;
  }

  .hero-trust{
    display:grid;
    grid-template-columns:1fr;
    gap:11px;
    margin-top:26px;
  }

  .hero-trust div{
    border:0;
    margin:0;
    padding:0;
    max-width:none;
  }

  .scroll-cue{
    display:none;
  }

  .why-grid{
    grid-template-columns:1fr;
    padding:22px 0;
  }

  .section{
    padding:72px 0;
  }

  .section-heading h2,
  .about-copy h2,
  .story-copy h2,
  .contact-box h2{
    font-size:37px;
  }

  .collection-head{
    padding:20px;
  }

  .collection-icon{
    width:54px;
    height:54px;
  }

  .collection-head h3{
    font-size:24px;
  }

  .product-grid,
  .feline-grid{
    grid-template-columns:1fr;
  }

  .product-visual{
    height:320px;
  }

  .product-visual img{
    width:88%;
    height:88%;
  }

  .product-card.accent-blue .product-visual img,
  .product-card.accent-sky .product-visual img,
  .product-card.accent-lilac .product-visual img,
  .product-card.accent-gray .product-visual img{
    width:96%;
    height:96%;
  }

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

  .about-visual{
    min-height:340px;
  }

  .lab-card{
    left:20px;
    top:55px;
  }

  .heart-card{
    right:18px;
    bottom:50px;
  }

  .contact-box{
    padding:28px;
  }

  .contact-grid{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .footer-brand{
    grid-column:1/-1;
  }

  .footer-bottom{
    gap:12px;
    flex-direction:column;
  }
}

/* =========================
   CELULAR PEQUEÑO
========================= */

@media(max-width:430px){

  .hero h1{
    font-size:38px;
  }

  .product-visual{
    height:285px;
  }

  .pack-grid{
    grid-template-columns:1fr 1fr;
    gap:12px;
  }

  .pack-card{
    padding:10px;
  }

  .pack-card h3{
    font-size:17px;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-brand{
    grid-column:auto;
  }
}
