.hero{
  padding:78px 0 58px;
  background:
    radial-gradient(circle at 82% 18%, rgba(217,11,63,.12), transparent 24%),
    radial-gradient(circle at 10% 10%, rgba(217,11,63,.05), transparent 22%),
    linear-gradient(180deg, #fff 0%, #fff6f8 100%);
  overflow:hidden;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:52px;
  align-items:center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--rojo);
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
  margin-bottom:14px;
  background:rgba(217,11,63,.08);
  border:1px solid rgba(217,11,63,.10);
  border-radius:999px;
  padding:8px 12px;
}

h1{
  font-size:clamp(36px, 5vw, 60px);
  line-height:1.03;
  margin-bottom:18px;
  letter-spacing:-0.03em;
  max-width:760px;
}

.hero p{
  color:var(--gris);
  font-size:19px;
  max-width:660px;
  margin-bottom:24px;
}

.hero-highlight{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(217,11,63,.10);
  border-radius:22px;
  padding:20px 20px 18px;
  box-shadow:0 16px 40px rgba(0,0,0,.05);
  margin-bottom:26px;
  position:relative;
  overflow:hidden;
}

.hero-highlight::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:6px;
  height:100%;
  background:linear-gradient(180deg, var(--rojo) 0%, #ef335f 100%);
}

.hero-subtexto{
  font-size:16px;
  color:#555;
  margin-top:10px;
  line-height:1.5;
  max-width:680px;
}

.hero-subtexto.fuerte{
  font-weight:700;
  color:var(--negro);
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:26px;
}

.hero-data{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:12px;
}

.chip{
  background:rgba(255,255,255,.85);
  border:1px solid rgba(0,0,0,.06);
  border-radius:999px;
  padding:11px 15px;
  font-size:14px;
  color:#333;
  box-shadow:0 8px 20px rgba(0,0,0,.04);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.chip:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 28px rgba(0,0,0,.06);
  border-color:rgba(217,11,63,.16);
}

.hero-card{
  background:rgba(255,255,255,.95);
  border:1px solid rgba(0,0,0,.06);
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.12);
  position:relative;
}

.hero-card::after{
  content:"";
  position:absolute;
  inset:auto -40px -40px auto;
  width:180px;
  height:180px;
  border-radius:50%;
  background:rgba(217,11,63,.12);
  filter:blur(24px);
  pointer-events:none;
}

.hero-image{
  width:100%;
  height:100%;
  min-height:460px;
  object-fit:cover;
  background:#f3f3f3;
  transition:transform .8s ease;
}

.hero-card:hover .hero-image{
  transform:scale(1.03);
}

.trust-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
}

.trust-card{
  background:rgba(255,255,255,.96);
  border:1px solid var(--borde);
  border-radius:24px;
  padding:30px;
  box-shadow:0 18px 45px rgba(0,0,0,.06);
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.trust-card:hover{
  transform:translateY(-6px);
  box-shadow:0 26px 60px rgba(0,0,0,.10);
  border-color:rgba(217,11,63,.14);
}

.trust-card h3{
  font-size:28px;
  margin-bottom:14px;
  line-height:1.1;
}

.trust-card p{
  color:var(--gris);
  margin-bottom:12px;
  font-size:16px;
}

.trust-haccp{
  font-weight:700;
  color:var(--negro);
}

.trust-list{
  display:grid;
  gap:12px;
  margin-top:14px;
}

.trust-list div{
  border:1px solid var(--borde);
  border-radius:16px;
  padding:13px 15px;
  background:linear-gradient(180deg, #fff 0%, #fcfcfc 100%);
  box-shadow:0 8px 22px rgba(0,0,0,.03);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.trust-list div:hover{
  transform:translateX(4px);
  box-shadow:0 12px 26px rgba(0,0,0,.05);
  border-color:rgba(217,11,63,.16);
}

.trust-image{
  border:1px solid rgba(0,0,0,.06);
  border-radius:24px;
  overflow:hidden;
  background:#f3f3f3;
  min-height:380px;
  box-shadow:0 24px 60px rgba(0,0,0,.10);
}

.trust-image img{
  width:100%;
  height:100%;
  min-height:380px;
  object-fit:cover;
  display:block;
  transition:transform .8s ease;
}

.trust-image:hover img{
  transform:scale(1.03);
}

@media (max-width: 980px){
  .hero-grid,
  .trust-grid{
    grid-template-columns:1fr;
  }

  .hero{
    padding-top:50px;
  }

  .hero-card{
    order:-1;
  }

  .hero-image{
    min-height:320px;
  }

  .trust-image,
  .trust-image img{
    min-height:300px;
  }
}