/* ===== Base ===== */
:root {
  --pink: #ec6f9c;
  --pink-soft: #f7c9da;
  --pink-bg: #fdeef3;
  --ink: #1d2433;
  --muted: #5b6473;
  --bg: #ffffff;
  --bg-alt: #f4f6fa;
  --yellow: #fbe3a6;
  --blue: #cfe0f2;
  --gray: #e3e7ee;
  --lav: #b9b8f0;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(29, 36, 51, 0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--pink); color: #fff; box-shadow: 0 10px 24px rgba(236,111,156,.35); }
.btn--outline { background: #fff; border-color: var(--ink); color: var(--ink); }
.btn--soft { background: #cdd0f7; color: #3a3d63; padding: 11px 22px; }
.btn--soft:hover { background: #bcc0f4; }
.btn--cta {
  background: linear-gradient(90deg, #b9b8f0, #9d9cec);
  color: #fff;
  padding: 17px 40px;
  font-size: 1.05rem;
  box-shadow: 0 14px 30px rgba(157,156,236,.4);
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 52px; width: auto; display: block; transition: transform .25s ease; }
.logo:hover img { transform: scale(1.05); }
.footer .logo img { height: 46px; }
.nav__links { display: flex; gap: 34px; }
.nav__links a { font-weight: 500; color: var(--ink); transition: color .2s; }
.nav__links a:hover { color: var(--pink); }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(180deg, #eef3f8 0%, #f6f8fb 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 30px;
}
.hero__brand {
  width: 150px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}
.eyebrow {
  display: inline-block;
  color: var(--pink);
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: .8rem;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.hero__lead { color: var(--muted); max-width: 520px; margin-bottom: 30px; }
.hero__lead strong { color: var(--ink); font-weight: 700; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e6e9f0;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  box-shadow: var(--shadow);
}
.hero__badge svg { color: var(--pink); }

.hero__media { position: relative; }
.hero__img {
  height: 420px;
  border-radius: 24px;
  background-image: url("Picanha Angus Yellowstone usda choice.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 60px rgba(94,36,36,.25);
  position: relative;
}
.hero__mark {
  position: absolute;
  top: -24px;
  right: 6%;
  width: 90px;
  height: 90px;
  background-image: url("o logo fb blanco.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: .85;
}

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section--alt { background: var(--bg-alt); }
.section__title {
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 48px;
  position: relative;
}
.section__title::after {
  content: "";
  display: block;
  width: 52px; height: 3px;
  background: var(--pink);
  border-radius: 3px;
  margin: 14px auto 0;
}

/* ===== Cards grids ===== */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

/* Credenciales */
.cred {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 30px;
  text-align: center;
  box-shadow: var(--shadow);
}
.cred__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 20px;
  color: var(--ink);
}
.cred__icon--yellow { background: var(--yellow); }
.cred__icon--pink { background: var(--pink-soft); }
.cred__icon--blue { background: var(--blue); }
.cred h3 { font-size: 1.12rem; margin-bottom: 10px; }
.cred p { color: var(--muted); font-size: .95rem; }

/* ===== Accordion / Diferenciadores ===== */
.accordion { display: flex; flex-direction: column; gap: 16px; max-width: 920px; margin: 0 auto; }
.acc__item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.acc__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: flex-start;
  gap: 22px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 26px 30px;
  cursor: pointer;
  font-family: inherit;
}
.acc__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink);
  flex: none;
}
.acc__icon--blue { background: var(--blue); }
.acc__icon--gray { background: var(--gray); }
.acc__text strong { display: block; font-size: 1.1rem; margin-bottom: 6px; }
.acc__text span {
  color: var(--muted);
  font-size: .95rem;
  max-height: 0;
  overflow: hidden;
  display: block;
  transition: max-height .35s ease, margin .35s ease, opacity .3s ease;
  opacity: 0;
}
.acc__item.is-open .acc__text span { max-height: 200px; opacity: 1; }
.acc__toggle {
  font-size: 1.6rem;
  color: var(--muted);
  line-height: 1;
  transition: transform .3s ease;
}
.acc__item.is-open .acc__toggle { transform: rotate(45deg); }

/* ===== Portafolio ===== */
.prod {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.prod__img {
  height: 200px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.prod__img--a { background-image: url("138.jpg"); }
.prod__img--b { background-image: url("553.jpg"); }
.prod__tag {
  position: absolute;
  top: 16px; left: 16px;
  width: 42px; height: 42px;
  background: var(--pink-soft);
  color: var(--pink);
  border-radius: 50%;
  display: grid; place-items: center;
}
.prod__body { padding: 26px 30px 34px; }
.prod__name { color: var(--pink); font-size: 1.5rem; margin-bottom: 4px; }
.prod__sub { color: var(--pink); font-style: italic; font-size: .92rem; margin-bottom: 16px; opacity: .8; }
.prod__body p:last-child { color: var(--muted); font-size: .93rem; }

/* ===== Bienestar ===== */
.welfare {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  min-height: 380px;
}
.welfare__img {
  background:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.35)),
    url("22190.jpg");
  background-size: cover;
  background-position: center;
}
.welfare__panel {
  background: var(--pink-bg);
  padding: 60px clamp(30px, 5vw, 80px);
  position: relative;
}
.welfare__brand { width: 140px; height: auto; display: block; margin-bottom: 18px; }
.welfare__panel h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 22px; }
.welfare__quote { position: relative; margin-bottom: 22px; padding-left: 40px; max-width: 480px; }
.welfare__mark {
  position: absolute;
  left: 0; top: -10px;
  font-size: 3rem;
  color: var(--pink);
  font-weight: 700;
  line-height: 1;
}
.welfare__quote em { color: var(--ink); font-weight: 500; }
.welfare__panel p { color: var(--muted); max-width: 520px; font-size: .95rem; }
.welfare__cow {
  position: absolute;
  right: 40px; bottom: 40px;
  width: 130px;
  color: var(--pink-soft);
  display: none;
}
@media (min-width: 980px) { .welfare__cow { display: block; } }

/* ===== Perfil / CTA ===== */
.profile {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
}
.cards-3--profile .profile .cred__icon { margin: 0 0 16px; }
.profile h3 { font-size: 1.05rem; margin-bottom: 8px; }
.profile p { color: var(--muted); font-size: .92rem; }
.cta-wrap { text-align: center; margin-top: 48px; }

/* ===== Footer ===== */
.footer { background: var(--ink); color: #c9cedb; padding: 40px 0; }
.footer .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer .logo { color: #fff; }
.footer p { font-size: .85rem; }

/* ===== Animations & effects ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }

/* Hero entrance */
.hero__copy > * { animation: fadeUp .7s both; }
.hero__brand { animation-delay: .05s; }
.eyebrow { animation-delay: .15s; }
.hero h1 { animation-delay: .25s; }
.hero__lead { animation-delay: .35s; }
.hero__actions { animation-delay: .45s; }
.hero__badge { animation-delay: .55s; }
.hero__media { animation: fadeUp .9s .3s both; }
.hero__img { animation: floaty 6s ease-in-out 1.2s infinite; }
.hero__mark { animation: spinSlow 22s linear infinite; }

/* Card hover lifts */
.cred, .profile, .acc__item, .prod { transition: transform .3s ease, box-shadow .3s ease; }
.cred:hover, .profile:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(29,36,51,.12);
}
.acc__item:hover { box-shadow: 0 22px 44px rgba(29,36,51,.1); }
.prod:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 56px rgba(94,36,36,.18);
}

/* Card icon pop on hover */
.cred__icon, .acc__icon { transition: transform .3s ease; }
.cred:hover .cred__icon,
.profile:hover .cred__icon { transform: scale(1.12) rotate(-6deg); }

/* Product image zoom */
.prod { position: relative; }
.prod__img { transition: transform .5s ease; }
.prod:hover .prod__img { transform: scale(1.06); }

/* Nav links underline grow */
.nav__links a { position: relative; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--pink);
  border-radius: 2px;
  transition: width .25s ease;
}
.nav__links a:hover::after { width: 100%; }

/* Button shine */
.btn--primary, .btn--cta { position: relative; overflow: hidden; }
.btn--primary::after, .btn--cta::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
}
.btn--primary:hover::after, .btn--cta:hover::after { left: 130%; }

/* CTA arrow nudge */
.btn--cta svg { transition: transform .25s ease; }
.btn--cta:hover svg { transform: translateX(5px); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__copy > *, .hero__media, .hero__img, .hero__mark { animation: none; }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__img { height: 320px; }
  .cards-3, .cards-2 { grid-template-columns: 1fr; }
  .welfare { grid-template-columns: 1fr; }
  .welfare__img { min-height: 220px; }
}
