@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-BoldItalic.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

    /* ═══════════════════════════════════════════════
       RESET & BASE
    ═══════════════════════════════════════════════ */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --arena:       #ffffff;
      --arena-mid:   #feedc2;
      --arena-dark:  #8a7a6a;
      --text-dark:   #1c284a;
      --text-mid:    #1c284a;
      --text-light:  #3d4e6e;
      --ocean-deep:  #1c284a;
      --ocean-mid:   #2a3d6e;
      --ocean-light: #8fdffb;
      --ocean-muted: #5eb8d8;
      --white:       #ffffff;
      --red-curri: #ec452e;
    }

    html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  margin: 0;
}
    

    img { display: block; max-width: 100%; }
    a   { text-decoration: none; }
    ul  { list-style: none; }

    /* ═══════════════════════════════════════════════
       UTILITY
    ═══════════════════════════════════════════════ */
    .section-label {
      font-size: 15px;
      font-weight: 300;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--rojo);
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.4rem;
    }
    .section-label::before {
      content: '';
      display: inline-block;
      width: 32px; height: 1px;
      background: var(--rojo);
      flex-shrink: 0;
    }

    .btn-primary {
      background: var(--ocean-deep);
      color: #feedc2;
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 14px 32px;
      border: none;
      cursor: pointer;
      display: inline-block;
      transition: background 0.3s;
    }
    .btn-primary:hover { background: var(--rojo); }

    .btn-outline {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--ocean-deep);
      border: 1px solid var(--ocean-deep);
      padding: 13px 32px;
      display: inline-block;
      transition: background 0.3s, color 0.3s;
    }
    .btn-outline:hover {
      background: var(--ocean-deep);
      color: #feedc2;
    }

    .btn-ghost {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-mid);
      border-bottom: 1px solid var(--crema);
      padding-bottom: 2px;
      display: inline-block;
      transition: color 0.3s, border-color 0.3s;
    }
    .btn-ghost:hover { color: var(--ocean-deep); border-color: var(--ocean-deep); }

    /* Scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ═══════════════════════════════════════════════
       NAVIGATION
    ═══════════════════════════════════════════════ */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 3.5rem;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(254,237,194,0.4);
      transition: padding 0.3s;
    }
    .nav.scrolled { padding: 1rem 3.5rem; }

    .brand__name {
      font-family: 'Montserrat', serif;
      font-size: 22px;
      font-weight: 400;
      color: var(--text-dark);
      letter-spacing: 0.02em;
    }
    .brand__tagline {
      font-weight: 200;
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--arena-dark);
      margin-top: 2px;
    }

    .nav__links {
      display: flex;
      gap: 2.5rem;
    }
    .nav__links a {
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-mid);
      transition: color 0.3s;
    }
    .nav__links a:hover { color: var(--ocean-deep); }

    .nav__social {
      display: flex;
      gap: 1.25rem;
      align-items: center;
    }
    .nav__social a {
      font-size: 10px;
      font-weight: 300;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--arena-dark);
      transition: color 0.3s;
    }
    .nav__social a:hover { color: var(--ocean-deep); }

    /* Mobile hamburger */
    .nav__burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .nav__burger span {
      display: block;
      width: 24px; height: 1px;
      background: var(--text-dark);
      transition: transform 0.3s, opacity 0.3s;
    }
    .nav__burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav__burger.open span:nth-child(2) { opacity: 0; }
    .nav__burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    .nav__mobile {
      display: none;
      position: fixed;
      top: 64px; left: 0; right: 0;
      background: var(--arena);
      border-bottom: 1px solid var(--crema);
      padding: 2rem;
      z-index: 99;
      flex-direction: column;
      gap: 1.5rem;
    }
    .nav__mobile.open { display: flex; }
    .nav__mobile a {
      font-size: 13px;
      font-weight: 300;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-mid);
    }

    /* ═══════════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════════ */
    .hero {
      min-height: 100vh;
      background: var(--arena);
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
      padding-top: 80px;
    }

    .hero__ocean {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 38%;
      background: var(--ocean-deep);
      clip-path: polygon(0 30%, 100% 0%, 100% 100%, 0% 100%);
    }

    .hero__body {
      position: relative;
      z-index: 10;
      flex: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 2rem 3.5rem 8rem;
      gap: 3rem;
    }

    .hero__content { max-width: 700px; /* prueba 600–900 */}

   .hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.06;
  color: #1c284a;
  margin-bottom: 1.6rem;
}

.hero__title em {
  font-family: 'Montserrat', sans-serif !important;
  font-style: italic !important;
  font-weight: 800 !important;
  color: #ec452e;
  letter-spacing: -0.02em;
}

    .hero__sub {
      font-size: 13px;
      font-weight: 300;
      letter-spacing: 0.04em;
      line-height: 1.85;
      color: var(--text-light);
      margin-bottom: 2.5rem;
    }

    .hero__actions { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }

    /* Image side */
    .hero__image-wrap { display: flex; justify-content: center; align-items: center; }

    .image-frame {
      position: relative;
      width: 340px;
      height: 420px;
    }
    .image-frame::before {
      content: '';
      position: absolute;
      top: -12px; right: -12px;
      width: 100%; height: 100%;
      border: 1px solid var(--crema);
      z-index: 0;
    }
    .image-frame img {
      position: relative;
      z-index: 1;
      width: 100%; height: 100%;
      object-fit: cover;
      filter: saturate(0.9) contrast(1.05);
    }
   .image-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  z-index: 5;

  background: rgba(0, 0, 0, 0.75); /* negro con opacidad */
  color: #ffffff;

  padding: 14px 20px;

  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.7;

  backdrop-filter: blur(6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

/* Título (ej: Atún entero) */
.image-badge strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #feedc2; /* mantiene tu branding */
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}

/* Subtexto */
.image-badge span {
  opacity: 0.85;
}

    /* Stats strip */
    .hero__stats {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      z-index: 20;
      display: flex;
      justify-content: center;
      gap: 4rem;
      align-items: center;
      padding: 1.5rem 3.5rem;
    }
    .stat__num {
      font-family: 'Montserrat', sans-serif;
      font-size: 26px; font-weight: 300;
      color: var(--ocean-light);
      display: block;
    }
    .stat__label {
      font-size: 9px; font-weight: 200;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--ocean-muted);
      margin-top: 3px; display: block;
    }
    .stat-divider { color: #3a5a9a; font-size: 14px; }

    /* Scroll hint */
    .scroll-hint {
      position: absolute;
      right: 3.5rem; top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    .scroll-hint__text {
      font-size: 9px; font-weight: 200;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--arena-dark);
      writing-mode: vertical-rl;
    }
    .scroll-hint__line {
      width: 1px; height: 60px;
      background: var(--arena-mid);
      animation: scrollPulse 2s ease-in-out infinite;
    }

    /* ═══════════════════════════════════════════════
       PRODUCTS
    ═══════════════════════════════════════════════ */
    .products {
      background: var(--white);
      padding: 7rem 3.5rem;
    }

    .products__header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 4rem;
      flex-wrap: wrap;
      gap: 2rem;
    }

    .products__title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(34px, 4vw, 54px);
      font-weight: 300;
      line-height: 1.1;
      color: var(--text-dark);
    }
    .products__title em { font-style: italic; color: var(--ocean-mid); }

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

    .product-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      background: var(--arena);
    }
    .product-card__img {
      width: 100%; height: 300px;
      object-fit: cover;
      transition: transform 0.6s ease, filter 0.4s;
      filter: saturate(0.85);
    }
    .product-card:hover .product-card__img {
      transform: scale(1.04);
      filter: saturate(1);
    }

    .product-card__body {
      padding: 1.4rem 1.25rem 1.6rem;
      background: var(--white);
      border-top: 2px solid var(--arena);
    }
    .product-card__tag {
      font-size: 9px; font-weight: 200;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--ocean-muted);
      margin-bottom: 0.5rem;
    }
    .product-card__name {
      font-family: 'Montserrat', sans-serif;
      font-size: 22px; font-weight: 400;
      color: var(--text-dark);
      margin-bottom: 0.4rem;
    }
    .product-card__desc {
      font-size: 12px; font-weight: 300;
      color: var(--text-light);
      line-height: 1.7;
    }
    .product-card__badge {
      position: absolute;
      top: 1rem; left: 1rem;
      background: var(--rojo);
      color: var(--ocean-light);
      font-size: 9px; font-weight: 200;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 5px 10px;
    }

    /* ═══════════════════════════════════════════════
       ABOUT
    ═══════════════════════════════════════════════ */
    .about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 600px;
    }

    .about__image {
      position: relative;
      overflow: hidden;
    }
    .about__image img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: saturate(0.8) contrast(1.05);
    }
    .about__image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(28,40,74,0.3) 0%, transparent 60%);
    }

    .about__content {
      background: var(--ocean-deep);
      padding: 6rem 4rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .about__content .section-label { color: var(--crema); }
    .about__content .section-label::before { background: var(--crema); }

    .about__title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(34px, 3.5vw, 52px);
      font-weight: 300;
      line-height: 1.1;
      color: #feedc2;
      margin-bottom: 2rem;
    }
    .about__title em { font-style: italic; color: var(--celeste); }

    .about__text {
      font-size: 13px; font-weight: 300;
      line-height: 1.9;
      color: var(--ocean-muted);
      margin-bottom: 1.25rem;
    }

    .about__pillars {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-top: 2.5rem;
    }
    .pillar {
      border-top: 1px solid #ffffff;
      padding-top: 1rem;
    }
    .pillar__num {
      font-family: 'Montserrat', sans-serif;
      font-size: 32px; font-weight: 300;
      color: #ffffff;
      display: block;
    }
    .pillar__label {
      font-size: 10px; font-weight: 200;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #ffffff;
      margin-top: 4px;
    }

    /* ═══════════════════════════════════════════════
       FRESHNESS BANNER
    ═══════════════════════════════════════════════ */
    .banner {
      background: var(--arena);
      padding: 6rem 3.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 3rem;
      flex-wrap: wrap;
      border-top: 1px solid var(--crema);
      border-bottom: 1px solid var(--crema);
    }

    .banner__heading {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(30px, 4vw, 56px);
      font-weight: 300;
      line-height: 1.1;
      color: var(--text-dark);
      max-width: 520px;
    }
    .banner__heading em { font-style: italic; }

    .banner__features {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .feature {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    .feature__icon {
      width: 36px; height: 36px;
      border: 1px solid var(--crema);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 25px;
    }
    .feature__name {
      font-size: 25px; font-weight: 400;
      color: var(--text-dark);
      margin-bottom: 2px;
      letter-spacing: 0.04em;
    }
    .feature__desc {
      font-size: 15px; font-weight: 300;
      color: var(--text-light);
      line-height: 1.6;
    }

    /* ═══════════════════════════════════════════════
       GALLERY
    ═══════════════════════════════════════════════ */
    .gallery {
      background: var(--white);
      padding: 7rem 3.5rem;
    }

    .gallery__header {
      text-align: center;
      margin-bottom: 4rem;
    }
    .gallery__header .section-label { justify-content: center; }
    .gallery__title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 300;
      color: var(--text-dark);
    }
    .gallery__title em { font-style: italic; color: var(--ocean-mid); }

    .gallery__grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 280px 280px;
      gap: 4px;
    }
    .gallery__item {
      overflow: hidden;
      position: relative;
    }
    .gallery__item:first-child { grid-row: span 2; }
    .gallery__item img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: saturate(0.85);
      transition: transform 0.6s ease, filter 0.4s;
    }
    .gallery__item:hover img {
      transform: scale(1.05);
      filter: saturate(1.05);
    }

    /* ═══════════════════════════════════════════════
       TESTIMONIAL
    ═══════════════════════════════════════════════ */
    .testimonial {
      background: var(--ocean-deep);
      padding: 7rem 3.5rem;
      text-align: center;
    }
    .testimonial__quote {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(24px, 3vw, 42px);
      font-style: italic;
      font-weight: 300;
      color: #feedc2;
      line-height: 1.4;
      max-width: 700px;
      margin: 0 auto 2rem;
    }
    .testimonial__author {
      font-size: 10px; font-weight: 200;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--ocean-muted);
    }
    .testimonial__divider {
      width: 40px; height: 1px;
      background: var(--ocean-muted);
      margin: 1.5rem auto;
    }

    /* ═══════════════════════════════════════════════
       CONTACT
    ═══════════════════════════════════════════════ */
    .contact {
      background: var(--arena);
      padding: 7rem 3.5rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: start;
    }

    .contact__title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(34px, 4vw, 54px);
      font-weight: 300;
      line-height: 1.1;
      color: var(--text-dark);
      margin-bottom: 1.5rem;
    }
    .contact__title em { font-style: italic; color: var(--ocean-mid); }

    .contact__text {
      font-size: 13px; font-weight: 300;
      line-height: 1.85;
      color: var(--text-light);
      margin-bottom: 2.5rem;
    }

    .contact__info { display: flex; flex-direction: column; gap: 1.25rem; }
    .contact__item {
      display: flex; gap: 1rem; align-items: flex-start;
      border-top: 1px solid var(--crema);
      padding-top: 1.25rem;
    }
    .contact__item-label {
      font-size: 9px; font-weight: 200;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--arena-dark);
      min-width: 80px;
      padding-top: 2px;
    }
    .contact__item-value {
      font-size: 13px; font-weight: 300;
      color: var(--text-dark);
      line-height: 1.6;
    }
    .contact__item-value a {
      color: var(--ocean-mid);
      transition: color 0.2s;
    }
    .contact__item-value a:hover { color: var(--ocean-deep); }

    /* Form */
    .contact__form { display: flex; flex-direction: column; gap: 1.25rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.5rem; }
    .form-label {
      font-size: 9px; font-weight: 200;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--arena-dark);
    }
    .form-input, .form-textarea, .form-select {
      font-family: 'Montserrat', sans-serif;
      font-size: 13px; font-weight: 300;
      color: var(--text-dark);
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--crema);
      padding: 10px 0;
      outline: none;
      transition: border-color 0.3s;
      width: 100%;
    }
    .form-input:focus, .form-textarea:focus, .form-select:focus {
      border-color: var(--ocean-mid);
    }
    .form-textarea { resize: vertical; min-height: 100px; }
    .form-select { cursor: pointer; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

    /* WhatsApp button */
    .whatsapp-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      background: #1c284a;
      color: #e8f5ee;
      font-family: 'Montserrat', sans-serif;
      font-size: 11px; font-weight: 300;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 14px 28px;
      transition: background 0.3s;
      border: none;
      cursor: pointer;
    }
    .whatsapp-btn:hover { background: #152038; }
    .whatsapp-btn svg { width: 16px; height: 16px; fill: currentColor; }

    /* ═══════════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════════ */
    .footer {
      background: var(--ocean-deep);
      padding: 4rem 3.5rem 2rem;
    }
    .footer__top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(143,223,251,0.15);
    }
    .footer__brand-name {
      font-family: 'Montserrat', sans-serif;
      font-size: 26px; font-weight: 300;
      color: #feedc2;
      margin-bottom: 0.5rem;
    }
    .footer__brand-tag {
      font-size: 10px; font-weight: 200;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--ocean-muted);
      margin-bottom: 1.5rem;
    }
    .footer__tagline {
      font-size: 13px; font-weight: 300;
      color: var(--ocean-muted);
      line-height: 1.8;
      max-width: 280px;
    }
    .footer__col-title {
      font-size: 9px; font-weight: 200;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--ocean-muted);
      margin-bottom: 1.5rem;
    }
    .footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
    .footer__links a {
      font-size: 12px; font-weight: 300;
      color: rgba(143,223,251,0.6);
      letter-spacing: 0.04em;
      transition: color 0.3s;
    }
    .footer__links a:hover { color: var(--ocean-light); }

    .footer__bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 2rem;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer__copy {
      font-size: 10px; font-weight: 200;
      letter-spacing: 0.12em;
      color: rgba(106,143,163,0.5);
    }
    .footer__social { display: flex; gap: 1.5rem; }
    .footer__social a {
      font-size: 10px; font-weight: 200;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--ocean-muted);
      transition: color 0.3s;
    }
    .footer__social a:hover { color: var(--ocean-light); }

    /* ═══════════════════════════════════════════════
       KEYFRAMES
    ═══════════════════════════════════════════════ */
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.3; }
      50%       { opacity: 1; }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    .hero .section-label    { animation: fadeUp 0.8s ease both 0.10s; }
    .hero__title            { animation: fadeUp 0.8s ease both 0.25s; }
    .hero__sub              { animation: fadeUp 0.8s ease both 0.40s; }
    .hero__actions          { animation: fadeUp 0.8s ease both 0.55s; }
    .hero__image-wrap       { animation: fadeIn 1.2s ease both 0.30s; }


    /* ═══════════════════════════════════════════════
       PREMIUM HERO BUTTON
    ═══════════════════════════════════════════════ */
    .hero__actions .btn-primary {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      background: #feedc2;
      color: #1c284a;
      border: 1px solid rgba(28,40,74,0.08);
      box-shadow: 0 10px 28px rgba(0,0,0,0.16);
      transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
    }

    .hero__actions .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -80%;
      width: 55%;
      height: 100%;
      background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.55) 50%,
        transparent 100%
      );
      transform: skewX(-18deg);
      z-index: -1;
      transition: left 0.65s ease;
    }

    .hero__actions .btn-primary:hover {
      background: #f7d9a4;
      color: #1c284a;
      transform: translateY(-3px);
      box-shadow: 0 16px 36px rgba(0,0,0,0.22);
    }

    .hero__actions .btn-primary:hover::before {
      left: 130%;
    }

    .hero__actions .btn-primary:active {
      transform: translateY(-1px);
      box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    }

    /* ═══════════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════════ */
    @media (max-width: 900px) {
      .nav { padding: 1.25rem 1.5rem; }
      .nav__links, .nav__social { display: none; }
      .nav__burger { display: flex; }

      .hero__body {
        grid-template-columns: 1fr;
        padding: 3rem 2rem 9rem;
      }
      .hero__image-wrap { order: -1; }
      .image-frame { width: 100%; height: 260px; }
      .image-frame::before { top: -8px; right: -8px; }
      .image-badge { bottom: -14px; left: -8px; }

      .hero__stats { gap: 1.5rem; padding: 1.2rem 1.5rem; flex-wrap: wrap; justify-content: space-around; }
      .scroll-hint { display: none; }
      .hero__ocean { height: 28%; clip-path: polygon(0 20%, 100% 0%, 100% 100%, 0% 100%); }

      .products { padding: 5rem 1.5rem; }
      .products__header { flex-direction: column; align-items: flex-start; }

      .about { grid-template-columns: 1fr; }
      .about__image { height: 300px; }
      .about__content { padding: 4rem 2rem; }
      .about__pillars { grid-template-columns: 1fr 1fr; }

      .banner { padding: 4rem 1.5rem; flex-direction: column; }

      .gallery { padding: 5rem 1.5rem; }
      .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px 200px;
      }
      .gallery__item:first-child { grid-row: span 1; grid-column: span 2; }

      .contact { grid-template-columns: 1fr; padding: 5rem 1.5rem; gap: 3rem; }
      .form-grid { grid-template-columns: 1fr; }

      .footer__top { grid-template-columns: 1fr 1fr; }
      .footer { padding: 3rem 1.5rem 1.5rem; }
    }

    @media (max-width: 500px) {
      .gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
      }
      .gallery__item:first-child { grid-column: span 1; }
      .footer__top { grid-template-columns: 1fr; }
      .about__pillars { grid-template-columns: 1fr; }
    }

    /* ═══════════════════════════════════════════════
       PREMIUM REFINEMENTS
    ═══════════════════════════════════════════════ */

    /* Header más legible */
    .brand__name {
      font-weight: 500;
      letter-spacing: 0.015em;
    }

    .brand__tagline,
    .nav__links a,
    .nav__social a {
      font-weight: 400;
    }

    .nav__links a {
      color: #1c284a;
    }

    .nav__social a,
    .brand__tagline {
      color: #6f6359;
    }

    /* Imagen con más presencia editorial */
    .image-frame {
      width: min(360px, 100%);
      height: 430px;
      padding: 10px;
      background: #ffffff;
      box-shadow: 0 18px 45px rgba(28,40,74,0.12);
    }

    .image-frame::before {
      top: -14px;
      right: -14px;
      border-color: rgba(28,40,74,0.18);
    }

    .image-frame img {
      border: 1px solid rgba(254,237,194,0.9);
    }

    /* Badge de la imagen más visible */
    .image-badge {
      background: rgba(28,40,74,0.92);
      color: #ffffff;
      backdrop-filter: blur(6px);
      box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    }

    .image-badge strong {
      color: #feedc2;
    }

    /* Stats debajo de imagen: más legibles */
    .hero__stats {
      justify-content: flex-end;
      padding-right: 9rem;
      gap: 2.2rem;
    }

    .stat {
      min-width: 96px;
      text-align: left;
    }

    .stat__num {
      color: #feedc2;
      font-weight: 400;
      text-shadow: 0 2px 10px rgba(0,0,0,0.25);
    }

    .stat__label {
      color: rgba(255,255,255,0.78);
      font-weight: 400;
      line-height: 1.35;
    }

    .stat-divider {
      color: rgba(254,237,194,0.75);
    }

    @media (max-width: 900px) {
      .image-frame {
        height: 280px;
        padding: 8px;
      }

      .hero__stats {
        justify-content: space-around;
        padding-right: 1.5rem;
      }

      .stat {
        min-width: auto;
        text-align: center;
      }
    }


    /* ═══════════════════════════════════════════════
       LOGO HEADER
    ═══════════════════════════════════════════════ */
    .brand {
      display: flex;
      align-items: center;
      flex: 0 0 auto;
    }

    .brand__link {
      display: inline-flex;
      align-items: center;
    }

    .brand__logo {
      height: 54px;
      width: auto;
      max-width: 220px;
      object-fit: contain;
      display: block;
      transition: height 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    }

    .brand__logo:hover {
      opacity: 0.9;
      transform: translateY(-1px);
    }

    .nav {
      min-height: 88px;
      padding: 1rem 3.5rem;
    }

    .nav.scrolled {
      min-height: 72px;
      padding: 0.75rem 3.5rem;
    }

    .nav.scrolled .brand__logo {
      height: 44px;
    }

    @media (max-width: 900px) {
      .nav {
        min-height: 76px;
        padding: 0.8rem 1.5rem;
      }

      .nav.scrolled {
        min-height: 68px;
        padding: 0.7rem 1.5rem;
      }

      .brand__logo {
        height: 46px;
        max-width: 185px;
      }

      .nav.scrolled .brand__logo {
        height: 40px;
      }

      .nav__mobile {
        top: 76px;
      }
    }

    @media (max-width: 500px) {
      .brand__logo {
        height: 40px;
        max-width: 165px;
      }
    }


    /* ═══════════════════════════════════════════════
       NAV HOVER PREMIUM
    ═══════════════════════════════════════════════ */
    .nav__links a {
      position: relative;
      display: inline-block;
      font-weight: 450;
      color: #1c284a;
      transition:
        color 0.3s ease,
        letter-spacing 0.3s ease,
        transform 0.3s ease;
    }

    .nav__links a::before {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -9px;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #feedc2;
      opacity: 0;
      transform: translateX(-50%) translateY(4px);
      transition:
        opacity 0.3s ease,
        transform 0.3s ease;
    }

    .nav__links a::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -7px;
      width: 0;
      height: 1px;
      background: linear-gradient(
        90deg,
        transparent,
        #1c284a,
        transparent
      );
      transform: translateX(-50%);
      transition: width 0.38s ease;
    }

    .nav__links a:hover {
      color: #2a3d6e;
      letter-spacing: 0.22em;
      transform: translateY(-1px);
    }

    .nav__links a:hover::before {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    .nav__links a:hover::after {
      width: 100%;
    }

    .nav__social a {
      position: relative;
      opacity: 0.75;
      transition:
        opacity 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
    }

    .nav__social a:hover {
      opacity: 1;
      color: #1c284a;
      transform: translateY(-1px);
    }

    .nav__mobile a {
      transition:
        color 0.3s ease,
        transform 0.3s ease,
        letter-spacing 0.3s ease;
    }

    .nav__mobile a:hover {
      color: #2a3d6e;
      letter-spacing: 0.22em;
      transform: translateX(4px);
    }


/* ═══════════════════════════════════════════════
   HERO CAROUSEL
══════════════════════════════════════════════ */
.hero-carousel {
  overflow: visible;
}

.hero-carousel__track {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-frame .hero-carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(254,237,194,0.9);
  filter: saturate(0.9) contrast(1.05);
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.85s ease,
    transform 1.2s ease;
}

.image-frame .hero-carousel__slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-carousel__dots {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 8;
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 0;
  transition:
    width 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.hero-carousel__dot.active {
  width: 22px;
  background: #feedc2;
  border-color: #feedc2;
}

@media (max-width: 900px) {
  .hero-carousel__dots {
    right: 14px;
    bottom: 14px;
  }
}


/* ═══════════════════════════════════════════════
   FONT FIX: MONTSERRAT + BARISTA
══════════════════════════════════════════════ */
body,
button,
input,
select,
textarea,
.btn-primary,
.btn-outline,
.btn-ghost,
.whatsapp-btn {
  font-family: 'Montserrat', sans-serif;
}

.hero__title,
.products__title,
.about__title,
.banner__heading,
.gallery__title,
.contact__title,
.product-card__name,
.footer__brand-name,
.stat__num,
.pillar__num,
.testimonial__quote,
.image-badge strong {
  font-family: 'Montserrat', sans-serif;
}

.hero__title em {
  font-family: 'Barista', cursive;
  font-style: normal;
  font-weight: 400;
  color: var(--ocean-mid);
  letter-spacing: 0;
  display: inline-block;
  transform: translateY(0.04em);
}

.videos-page {
  padding-top: 120px;
  background: #fff;
}

.videos-hero {
  padding: 5rem 3.5rem 3rem;
}

.videos-page__title {
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 800;
  color: var(--text-dark);
}

.videos-page__text {
  margin-top: 1rem;
  max-width: 520px;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--text-light);
}

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

.video-card {
  background: #fff;
}

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(28,40,74,0.12);
}

.video-card h3 {
  margin-top: 1rem;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
}

@media (max-width: 900px) {
  .videos-hero,
  .videos-grid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* ═══════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════ */

.contact-page {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f5f7fb 60%,
    #eef2f9 100%
  );
}


.contact-hero {
  padding: 5rem 3.5rem 3rem;
}
.contact-hero {
  position: relative;
  overflow: hidden;
}

.contact-hero__content {
  position: relative;
  z-index: 2;
}

.contact-hero__visual {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.;
  pointer-events: none;
  z-index: 1;
}

.contact-hero__visual img {
  width: min(360px, 34vw);
  height: auto;
  filter: saturate(0.95) contrast(1.05);
  animation: productFloat 6s ease-in-out infinite;
}

@keyframes productFloat {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

@media (max-width: 900px) {
  .contact-hero__visual {
    right: -8%;
    opacity: 0.08;
  }

  .contact-hero__visual img {
    width: 280px;
  }
}

@media (max-width: 600px) {
  .contact-hero__visual {
    display: none;
  }
}
.contact-page__title {
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text-dark);
  max-width: 760px;
}

.contact-page__text {
  margin-top: 1.25rem;
  max-width: 520px;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--text-light);
}

.contact-cards {
  padding: 2rem 3.5rem 7rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-card {
  background: #ffffff;
  border: 1px solid rgba(28,40,74,0.12);
  padding: 2rem;
  box-shadow: 0 18px 45px rgba(28,40,74,0.08);
}

.contact-card__label {
  display: block;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ec452e;
  margin-bottom: 1.2rem;
}

.contact-card h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.contact-card p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.75rem;
}

.social-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-buttons a {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ocean-deep);
  border-bottom: 1px solid var(--ocean-deep);
  padding-bottom: 3px;
}

@media (max-width: 900px) {
  .contact-hero,
  .contact-cards {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

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

/* ═══════════════════════════════════════════════
   ABOUT PAGE / NOSOTROS
══════════════════════════════════════════════ */

.about-page {
  padding-top: 120px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f5f7fb 100%
  );
}

.about-hero {
  padding: 5rem 3.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.about-page__title {
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text-dark);
  max-width: 820px;
  position: relative;
}

.about-page__title::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: #ec452e;
  margin-top: 18px;
}

.about-page__text {
  margin-top: 1.5rem;
  max-width: 620px;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 300;
  color: var(--text-light);
}

/* Historia */

.about-story {
  margin: 1rem 3.5rem 4rem;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  background: var(--ocean-deep);

  box-shadow: 0 20px 50px rgba(28,40,74,0.08);
}

.about-story__text h2 {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 1.75rem;
}

.about-story__text p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.about-story__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-story__image img {
  width: min(360px, 100%);
  height: auto;
  filter: saturate(1.05) contrast(1.05);
  animation: productFloat 6s ease-in-out infinite;
}

/* Números */

.about-stats {
  padding: 4rem 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.about-stat {
  background: #ffffff;
  border: 1px solid rgba(28,40,74,0.08);
  padding: 2rem;
  box-shadow: 0 18px 45px rgba(28,40,74,0.06);
}

.about-stat__num {
  display: block;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  color: #ec452e;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.about-stat__label {
  display: block;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Valores */

.about-values {
  padding: 4rem 3.5rem;
}

.about-values__header {
  margin-bottom: 2.5rem;
}

.about-values__header h2 {
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text-dark);
  max-width: 760px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: #ffffff;
  padding: 2rem;
  border: 1px solid rgba(28,40,74,0.08);
  box-shadow: 0 18px 45px rgba(28,40,74,0.06);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: #ec452e;
  box-shadow: 0 22px 55px rgba(28,40,74,0.12);
}

.value-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.9rem;
}

.value-card h3::after {
  content: '';
  display: block;
  width: 34px;
  height: 2px;
  background: #ec452e;
  margin-top: 8px;
}

.value-card p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
}

/* Mayoreo CTA */

.about-wholesale {
  margin: 3rem 3.5rem 7rem;
  padding: 3rem;
  background: var(--ocean-deep);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.about-wholesale .section-label {
  color: #feedc2;
}

.about-wholesale h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  color: #feedc2;
  margin-bottom: 1rem;
}

.about-wholesale p {
  max-width: 560px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
}

.about-wholesale .whatsapp-btn {
  background: #ec452e;
  color: #ffffff;
  flex-shrink: 0;
}

.about-wholesale .whatsapp-btn:hover {
  background: #d83c27;
}

/* Responsive */

@media (max-width: 900px) {
  .about-hero,
  .about-stats,
  .about-values {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .about-story {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    padding: 2.5rem;
    grid-template-columns: 1fr;
  }

  .about-stats,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-wholesale {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    padding: 2.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .about-hero {
    padding-top: 4rem;
  }

  .about-story {
    padding: 2rem;
  }

  .about-wholesale {
    padding: 2rem;
  }
}


/* ═══════════════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════════════ */

.gallery-page {
  padding-top: 120px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f5f7fb 100%
  );
  min-height: 100vh;
}

.gallery-hero {
  padding: 5rem 3.5rem 3rem;
}

.gallery-page__title {
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text-dark);
  position: relative;
}

.gallery-page__title::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: #ec452e;
  margin-top: 18px;
}

.gallery-page__text {
  margin-top: 1.5rem;
  max-width: 560px;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 300;
  color: var(--text-light);
}

/* Carrusel */

.gallery-carousel {
  position: relative;
  margin: 1rem 3.5rem 7rem;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid rgba(28,40,74,0.08);
  box-shadow: 0 22px 60px rgba(28,40,74,0.08);
}

.gallery-carousel__stage {
  width: 100%;
  height: min(68vh, 620px);
  overflow: hidden;
  background: #f7f8fa;
}

.gallery-carousel__stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 0.25s ease,
    transform 0.5s ease;
}

.gallery-carousel__stage img.is-changing {
  opacity: 0;
  transform: scale(1.02);
}

/* Botones */

.gallery-btn {
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border: none;
  background: rgba(28,40,74,0.9);
  color: #feedc2;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.gallery-btn:hover {
  background: #ec452e;
  transform: translateY(-50%) scale(1.04);
}

.gallery-btn--prev {
  left: 1rem;
}

.gallery-btn--next {
  right: 1rem;
}

/* Caption */

.gallery-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.4rem 0 1rem;
  border-bottom: 1px solid rgba(28,40,74,0.08);
}

.gallery-caption span {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: #ec452e;
}

.gallery-caption p {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text-dark);
}

/* Miniaturas */

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  padding-top: 1rem;
}

.gallery-thumb {
  border: 2px solid transparent;
  padding: 0;
  height: 84px;
  cursor: pointer;
  overflow: hidden;
  background: transparent;
  opacity: 0.55;
  transition:
    opacity 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  opacity: 1;
  border-color: #ec452e;
  transform: translateY(-2px);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */

@media (max-width: 900px) {
  .gallery-hero {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .gallery-carousel {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    padding: 1rem;
  }

  .gallery-carousel__stage {
    height: 420px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 600px) {
  .gallery-carousel__stage {
    height: 340px;
  }

  .gallery-btn {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

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

/* ═══════════════════════════════════════════════
   PRODUCTS PAGE
══════════════════════════════════════════════ */

.products-page {
  padding-top: 120px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f5f7fb 100%
  );
  min-height: 100vh;
}

.products-page__hero {
  padding: 5rem 3.5rem 3rem;
}

.products-page__title {
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text-dark);
  max-width: 820px;
}

.products-page__title::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: #ec452e;
  margin-top: 18px;
}

.products-page__text {
  margin-top: 1.5rem;
  max-width: 620px;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 300;
  color: var(--text-light);
}

/* Categorías */

.product-categories {
  padding: 2rem 3.5rem 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.product-category {
  background: #ffffff;
  border: 1px solid rgba(28,40,74,0.08);
  padding: 2.25rem;
  box-shadow: 0 18px 45px rgba(28,40,74,0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.product-category:hover {
  transform: translateY(-5px);
  border-color: #ec452e;
  box-shadow: 0 22px 55px rgba(28,40,74,0.12);
}

.product-category__label {
  display: block;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #ec452e;
  margin-bottom: 1rem;
}

.product-category h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 1rem;
}

.product-category p {
  max-width: 440px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
}

.product-list {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product-list li {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  border: 1px solid rgba(28,40,74,0.14);
  padding: 0.65rem 0.9rem;
  background: #ffffff;
}

.product-category--premium {
  background: linear-gradient(
    180deg,
    #1c284a 0%,
    #24345f 100%
  );
}

.product-category--premium .product-category__label,
.product-category--premium h2 {
  color: #feedc2;
}

.product-category--premium p {
  color: rgba(255,255,255,0.75);
}

.product-category--premium .product-list li {
  background: rgba(255,255,255,0.08);
  color: #feedc2;
  border-color: rgba(254,237,194,0.25);
}

/* CTA */

.products-cta {
  margin: 0 3.5rem 7rem;
  padding: 3rem;
  background: #feedc2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 18px 45px rgba(28,40,74,0.08);
}

.products-cta h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.products-cta p {
  max-width: 560px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
}

.products-cta .whatsapp-btn {
  background: #ec452e;
  color: #ffffff;
  flex-shrink: 0;
}

.products-cta .whatsapp-btn:hover {
  background: #d83c27;
}

/* Responsive */

@media (max-width: 900px) {
  .products-page__hero,
  .product-categories {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

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

  .products-cta {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    padding: 2.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .products-page__hero {
    padding-top: 4rem;
  }

  .product-category {
    min-height: auto;
    padding: 2rem;
  }

  .product-list li {
    font-size: 10px;
  }
}

/* FIX FINAL - Badge del carrusel HERO */
.hero-carousel .image-badge {
  background: #706f6f; !important;
  color: #ffffff !important;
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.28);
}

.hero-carousel .image-badge strong {
  color: #feedc2 !important;
  font-weight: 800;
}

.hero-carousel .image-badge span {
  color: #ffffff !important;
  opacity: 0.88;
}

/* ═══════════════════════════════════════════════
   HOME CONTACT SECTION FIX
══════════════════════════════════════════════ */

.contact {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f5f7fb 100%
  );
  padding: 7rem 3.5rem;
  gap: 4rem;
}

.contact > .reveal {
  background: #ffffff;
  padding: 2.75rem;
  border: 1px solid rgba(28,40,74,0.08);
  box-shadow: 0 22px 60px rgba(28,40,74,0.08);
}

.contact > .reveal:first-child {
  background: linear-gradient(
    180deg,
    #ffffff 30%,
    #ffffff 50%
  );
}

.contact__title {
  font-weight: 800;
}

.contact__title em {
  color: #ec452e;
  font-style: italic;
  font-weight: 800;
}

.contact__text {
  max-width: 520px;
}

.contact__info {
  margin-top: 2rem;
}

.contact__item {
  border-top: 1px solid rgba(28,40,74,0.08);
}

.contact__item-label {
  color: #ec452e;
}

.contact__form {
  gap: 1.6rem;
}

.form-grid {
  gap: 1.6rem;
}

.form-input,
.form-textarea,
.form-select {
  border-bottom: 1px solid rgba(28,40,74,0.18);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: #ec452e;
}

.contact__form .btn-primary {
  background: #ec452e;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(236,69,46,0.22);
}

.contact__form .btn-primary:hover {
  background: #d83c27;
}

@media (max-width: 900px) {
  .contact {
    grid-template-columns: 1fr;
    padding: 5rem 1.5rem;
  }

  .contact > .reveal {
    padding: 2rem;
  }
}

/* ═══════════════════════════════════════════════
   HERO MOBILE FIX
══════════════════════════════════════════════ */

@media (max-width: 768px) {

  .hero {
    padding-bottom: 7rem;
  }

  .hero__content {
    padding-bottom: 2rem;
  }

  .hero__actions {
    margin-top: 2.2rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 5;
  }

  .hero__stats {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
  }

  .hero__stat {
    text-align: center;
  }

  .hero__stat-number {
    font-size: 34px;
  }

  .btn-primary {
    min-width: 220px;
    justify-content: center;
  }

  /* evita que la diagonal suba demasiado */
  .hero::after {
    height: 22%;
  }
}