:root {
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface-alt: #F6F1EB;
  --ink: #2F2419;
  --muted: #7A6A58;
  --accent: #B8744F;
  --cta: #1F5D43;
  --cta-hover: #184532;
  --line: #E6D8C4;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 20px 45px rgba(47, 36, 25, 0.12);
  --shadow-hover: 0 30px 65px rgba(31, 93, 67, 0.18);
  --gradient-soft: linear-gradient(180deg, rgba(247, 244, 240, 0.65), rgba(255, 255, 255, 0));
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: linear-gradient(180deg, #FFFFFF 0%, #F7F4EF 60%, #FFFFFF 100%);
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -.01em;
  margin: 0 0 .75rem;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

p {
  margin: 0 0 1rem;
}

a {
  color: inherit;
}

.small {
  font-size: .9rem;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

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

.section {
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.section--muted {
  background: var(--surface);
  border-top: 1px solid rgba(47, 36, 25, 0.06);
  border-bottom: 1px solid rgba(47, 36, 25, 0.06);
}

.section-gradient {
  position: relative;
  overflow: hidden;
}

.section-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

.section-gradient>* {
  position: relative;
  z-index: 1;
}

.section-gradient.b2b-banner::before {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  opacity: 1;
}

.section-intro {
  margin-bottom: 2.5rem;
}

.section-intro.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

.eyebrow {
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
}

.list-check {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 0;
}

.list-check li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .6rem;
  color: var(--muted);
}

.list-check li::before {
  content: "•";
  color: var(--cta);
  position: absolute;
  left: 0;
  top: .2rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(47, 36, 25, 0.08);
  box-shadow: 0 12px 35px rgba(47, 36, 25, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  font-weight: 500;
  color: var(--ink);
}

.nav-list a:hover {
  color: var(--accent);
}

.nav-cta {
  margin-left: .5rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: .4rem;
  cursor: pointer;
}

.nav-line {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.6rem;
  border-radius: 1.25rem;
  font-weight: 600;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.btn--primary {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 16px 35px rgba(31, 93, 67, 0.25);
}

.btn--primary:hover {
  background: var(--cta-hover);
  transform: translateY(-3px);
  box-shadow: 0 22px 45px rgba(31, 93, 67, 0.28);
}

.btn--ghost {
  border-color: rgba(47, 36, 25, 0.2);
  color: var(--ink);
  background: transparent;
}

.btn--ghost:hover {
  background: rgba(47, 36, 25, 0.05);
  transform: translateY(-2px);
}

/* Hero */
.hero {
  padding: clamp(5rem, 9vw, 7rem) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3.5rem;
  align-items: center;
}

.hero-copy .sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 48ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.2rem;
}

.hero-highlights div {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  border: 1px solid rgba(47, 36, 25, 0.08);
  box-shadow: 0 15px 40px rgba(47, 36, 25, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-highlights div:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.hero-highlights .stat {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cta);
}

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}

.hero-media img.fade-out {
  opacity: 0;
}

/* Benefits */
.quick-benefits {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  margin-top: -3rem;
  box-shadow: 0 25px 60px rgba(47, 36, 25, 0.08);
  overflow: visible;
}

.doodle-divider {
  position: absolute;
  top: -140px;
  right: 2rem;
  width: 200px;
  height: auto;
  z-index: 10;
  pointer-events: none;
  filter: drop-shadow(0 10px 15px rgba(47, 36, 25, 0.1));
}

.doodle-bongo {
  position: absolute;
  top: -160px;
  right: 4rem;
  width: 160px;
  height: auto;
  z-index: 10;
  pointer-events: none;
  filter: drop-shadow(0 10px 15px rgba(47, 36, 25, 0.1));
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid rgba(47, 36, 25, 0.08);
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 40px rgba(47, 36, 25, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-hover);
}

.benefit-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  color: #fff;
  background: radial-gradient(circle at top left, #E5B493, #C37B53);
  box-shadow: 0 12px 25px rgba(183, 116, 79, 0.3);
}

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

/* Product highlight */
.product-highlight {
  background: linear-gradient(180deg, rgba(244, 236, 226, 0.65), rgba(255, 255, 255, 0));
}

.product-feature {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  border: 1px solid rgba(47, 36, 25, 0.08);
  box-shadow: 0 30px 70px rgba(47, 36, 25, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.product-feature__media {
  position: relative;
}

.product-feature__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  padding: .4rem 1rem;
  border-radius: 999px;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-feature__details {
  padding-right: 1rem;
}

.product-list-check {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 1.5rem;
}

.product-list-check li {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .6rem;
  color: var(--muted);
}

.product-list-check li::before {
  content: "✓";
  color: var(--cta);
  font-weight: 600;
}

.product-price {
  font-size: 2rem;
  font-weight: 600;
  color: var(--cta);
  margin: 0 0 1rem;
}

.card-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.product-list {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid rgba(47, 36, 25, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 18px 40px rgba(47, 36, 25, 0.07);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.product-card__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

/* Steps */
.how-it-works {
  overflow: visible;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid rgba(47, 36, 25, 0.08);
  box-shadow: 0 18px 40px rgba(47, 36, 25, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.step-number {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F4ECE2, #FFFFFF);
  border-radius: 50%;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 12px 25px rgba(47, 36, 25, 0.1);
}

/* B2B */
.b2b-banner {
  background: linear-gradient(120deg, #1F5D43, #16392C);
  color: #fff;
  box-shadow: 0 25px 60px rgba(31, 93, 67, 0.35);
}

.b2b-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.b2b-content .btn {
  background: #fff;
  color: var(--cta);
  box-shadow: none;
}

.b2b-content .btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Calidad */
.quality {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.quality-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid rgba(47, 36, 25, 0.08);
  box-shadow: 0 16px 40px rgba(47, 36, 25, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.testimonial-card p {
  font-size: 1rem;
  color: var(--ink);
}

.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  color: var(--muted);
  font-weight: 600;
}

.testimonial-meta img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

/* FAQ */
.accordion {
  max-width: 780px;
  margin: 0 auto 2rem;
}

.acc-item {
  border: 1px solid rgba(47, 36, 25, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  margin-bottom: .8rem;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(47, 36, 25, 0.07);
  transition: transform 0.3s ease;
}

.acc-item:hover {
  transform: translateY(-3px);
}

.acc-trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.acc-trigger::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.acc-item.is-open .acc-trigger::after {
  transform: rotate(45deg);
}

.acc-panel {
  display: none;
  padding: 0 1.5rem 1.2rem;
  color: var(--muted);
}

.acc-item.is-open .acc-panel {
  display: block;
}

.faq-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

/* Footer */
.site-footer {
  padding: 3rem 0;
  background: #111;
  color: #fff;
}

.site-footer img {
  height: 50px;
  width: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: .4rem;
}

.footer-nav a {
  text-decoration: none;
  color: #fff;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}

/* Product page shared styles */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: start;
}

.product-media {
  position: sticky;
  top: 110px;
}

.product-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.product-copy h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.product-copy .price {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--cta);
}

.product-ctas {
  margin-top: 2rem;
}

.table-responsive {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

th {
  background: var(--surface-alt);
  font-weight: 600;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(47, 36, 25, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.benefit-item .icon {
  font-size: 1.8rem;
}

.microcopy {
  color: var(--muted);
  max-width: 65ch;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.breadcrumb {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 0.5rem;
}

/* Responsive */
@media (max-width: 960px) {
  .hero {
    padding-top: 5rem;
  }

  .nav-toggle {
    display: inline-block;
    position: relative;
    z-index: 101;
  }

  .nav-list {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background: var(--bg) !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    padding: 6rem 1rem 6rem !important;
    gap: 1rem !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    text-align: center !important;
    transform: translateY(-100%);
    transition: transform .35s ease-out;
    font-size: 1.2rem;
    z-index: 99 !important;
    box-shadow: none !important;
  }

  .nav-list.is-open {
    transform: translateY(0);
  }

  .nav-cta {
    display: none !important;
  }

  .product-feature {
    padding: 1.8rem;
  }

  .product-card__ctas {
    flex-direction: column;
  }

  .b2b-content {
    text-align: center;
  }

  .product-media {
    position: static;
  }

  .doodle-divider {
    width: 140px;
    top: -100px;
    right: 1rem;
  }

  .doodle-bongo {
    width: 160px;
    top: -110px;
    right: 1rem;
  }
}

@media (max-width: 600px) {
  .hero-ctas {
    flex-direction: column;
  }

  .faq-cta {
    flex-direction: column;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 1rem 0;
  z-index: 200;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-inner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink);
}

.btn--sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
}