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

    :root {
      --negro: #0a0a0a;
      --negro-2: #111111;
      --negro-3: #1a1a1a;
      --dorado: #C9A84C;
      --dorado-claro: #E8C96A;
      --dorado-oscuro: #8B6914;
      --dorado-bg: rgba(201,168,76,0.08);
      --crema: #F5EDDA;
      --crema-2: #EDE0C4;
      --verde-mate: #2A4A2A;
      --blanco: #FAFAFA;
      --gris: rgba(245,237,218,0.5);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--negro);
      color: var(--crema);
      overflow-x: hidden;
      cursor: default;
    }

    /* ── GRAIN OVERLAY ──────────────────────────────── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 999;
      pointer-events: none;
      opacity: 0.025;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-size: 150px;
    }

    /* ── NAV ────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.5rem 6%;
      transition: all 0.4s;
      background: rgba(10,10,10,0.55);
      backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    }

    nav.scrolled {
      background: rgba(10,10,10,0.95);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      padding: 12px 6%;
      border-bottom: 1px solid rgba(201,168,76,0.15);
    }

    .nav-back {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
      color: var(--dorado);
      font-family: 'Jost', sans-serif;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      opacity: 0.7;
      transition: opacity 0.2s;
    }
    .nav-back:hover { opacity: 1; }

    .nav-logo {
      font-family: 'Cinzel', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--dorado);
      text-transform: uppercase;
    }
.nav-logo img {height: 50px; transition: all 0.4s;}
    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }
  nav.scrolled .nav-logo img {height: 30px;}
    .nav-links a {
      text-decoration: none;
      color: var(--crema);
      font-size: 0.78rem;
      font-weight: 400;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      opacity: 0.7;
      transition: all 0.2s;
    }

    .nav-links a:hover { opacity: 1; color: var(--dorado); }

    /* ── HERO ───────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      text-align: center;
    }

    /* Radial glow background */
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 50% 60%, rgba(42,74,42,0.4) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
        var(--negro);
    }
.hero-video {position: absolute; width:100%; height: 100%; object-fit: cover; top: 0; left: 0; z-index:1; opacity: 0.25;}
.hero:after {content: ""; width: 100%; height: 50%; background: linear-gradient(0deg,rgba(10, 10, 10, 0.95) 40%, rgba(21, 37, 21, 0.01) 100%); position: absolute; bottom: 0; left: 0; z-index: 2;}
.hero-sello {display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-top: 3rem; opacity: 0; animation: fadeIn 1s 1.9s ease forwards;}
.hero-sello img {width: 150px;}
.hero-line-left, .hero-line-right { position: absolute; top: 50%; width: 20%; height: 1px; background: linear-gradient(90deg, transparent, var(--dorado)); opacity: 0.3;}
    .hero-line-left { left: 0; transform: translateY(-50%); }
    .hero-line-right { right: 0; transform: translateY(-50%) scaleX(-1); }

    /* Floating particles */
    .particle {
      position: absolute;
      width: 2px;
      height: 2px;
      background: var(--dorado);
      border-radius: 50%;
      opacity: 0;
      animation: drift linear infinite;
    }

    @keyframes drift {
      0% { opacity: 0; transform: translateY(100vh) rotate(0deg); }
      10% { opacity: 0.6; }
      90% { opacity: 0.3; }
      100% { opacity: 0; transform: translateY(-20vh) rotate(720deg); }
    }

    .hero-content {
      position: relative;
      z-index: 4;
      max-width: 800px;
      padding: 0 5%;
    }

    .hero-pretitle {
      font-family: 'Jost', sans-serif;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--blanco);
      margin-bottom: 1rem;
      opacity: 0;
      animation: fadeIn 1s 0.3s ease forwards;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(15px); }
      to { opacity: 1; transform: none; }
    }

    .hero-brand {
      font-family: 'Cinzel', serif;
      font-size: clamp(4rem, 5vw, 2rem);
      font-weight: 600;
      line-height: 1;
      letter-spacing: 0.05em; background-image: linear-gradient(to bottom, #f8b500, #fceabb); background-clip: text; -webkit-background-clip: text; 
color: transparent; -webkit-text-fill-color: transparent; color: #fff;
      text-shadow:
        0 0 80px rgba(201,168,76,0.3),
        0 0 160px rgba(201,168,76,0.1);
      opacity: 0;
      animation: fadeIn 1.2s 0.6s ease forwards;
      position: relative;
      max-width: 100%;
    }

    .hero-brand--::after {
      content: 'TEGUA';
      position: absolute;
      inset: 0;
      color: transparent;
      -webkit-text-stroke: 1px rgba(201,168,76,0.15);
      transform: translate(3px, 3px);
      z-index: -1;
    }

    .hero-subtitle {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.1rem, 2.5vw, 1.6rem);
      font-weight: 300;
      font-style: italic;
      color: var(--crema-2);
      letter-spacing: 0.05em;
      margin-top: .5rem;
      opacity: 0;
      animation: fadeIn 1s 0.9s ease forwards;
    }
    .hero-divider {
      width: 80px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--dorado), transparent);
      margin: 1.5rem auto;
      opacity: 0;
      animation: fadeIn 1s 1.1s ease forwards;
    }

    .hero-badges {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      margin-bottom: 3rem;
      opacity: 0;
      animation: fadeIn 1s 1.3s ease forwards;
    }

    .hero-badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.3rem;
    }

    .badge-icon {
      font-size: 1.4rem;
    }

    .badge-text {
      font-size: 0.65rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--dorado);
      font-weight: 500;
    }

    .hero-cta-group {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeIn 1s 1.5s ease forwards;
    }

    .btn-gold {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--dorado);
      color: var(--negro);
      padding: 1rem 2.2rem;
      border-radius: 2px;
      text-decoration: none;
      font-family: 'Jost', sans-serif;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      transition: all 0.3s;
      box-shadow: 0 0 40px rgba(201,168,76,0.2);
    }
    .btn-gold:hover {
      background: var(--dorado-claro);
      box-shadow: 0 0 60px rgba(201,168,76,0.4);
      transform: translateY(-2px);
    }

    .btn-outline-gold {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: transparent;
      color: var(--dorado);
      padding: 1rem 2.2rem;
      border-radius: 2px;
      text-decoration: none;
      font-family: 'Jost', sans-serif;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      border: 1px solid var(--dorado);
      transition: all 0.3s;
    }
    .btn-outline-gold:hover {
      background: var(--dorado-bg);
      box-shadow: 0 0 30px rgba(201,168,76,0.1);
    }

    /* Scroll indicator */
    .scroll-hint {
      position: absolute;
      bottom: 2rem; z-index: 4;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      opacity: 0;
      animation: fadeIn 1s 2s ease forwards;
    }

    .scroll-hint span {
      font-size: 0.6rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--dorado);
      opacity: 0.5;
    }

    .scroll-line {
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, var(--dorado), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {
      0%, 100% { opacity: 0.3; transform: scaleY(1); }
      50% { opacity: 0.8; transform: scaleY(1.2); }
    }

    /* ── HISTORIA ───────────────────────────────────── */
    .historia-section {
      padding: 8rem 6%;
      position: relative;
      overflow: hidden;
    }

    .historia-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--dorado), transparent);
      opacity: 0.3;
    }

    .section-ornament {
      text-align: center;
      margin-bottom: 1rem;
    }

    .ornament-line {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 2.5rem;
    }

    .ornament-dash {
      width: 60px;
      height: 1px;
      background: var(--dorado);
      opacity: 0.5;
    }

    .ornament-diamond {
      width: 8px;
      height: 8px;
      background: var(--dorado);
      transform: rotate(45deg);
      opacity: 0.7;
    }

    .section-eyebrow {
      font-family: 'Jost', sans-serif;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--dorado);
      text-align: center;
      margin-bottom: 1rem;
    }

    .section-title {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 600;
      text-align: center;
      line-height: 1.2;
      color: var(--crema);
      margin-bottom: 1rem;
    }

    .historia-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
      max-width: 1200px;
      margin: 4rem auto 0;
    }

    .historia-image {
      position: relative;
    }

    .historia-img-frame {
      width: 100%;
      aspect-ratio: 4/5;
      background: var(--negro-3);
      border: 1px solid rgba(201,168,76,0.2);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    /* Corner decorations */
    .corner {
      position: absolute;
      width: 30px; height: 30px;
      border-color: var(--dorado);
      border-style: solid;
      opacity: 0.5;
    }
    .corner-tl { top: 15px; left: 15px; border-width: 1px 0 0 1px; }
    .corner-tr { top: 15px; right: 15px; border-width: 1px 1px 0 0; }
    .corner-bl { bottom: 15px; left: 15px; border-width: 0 0 1px 1px; }
    .corner-br { bottom: 15px; right: 15px; border-width: 0 1px 1px 0; }

    .img-placeholder-inner {
      font-size: 4rem;
      margin-bottom: 1rem;
      opacity: 0.4;
    }

    .img-caption {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 0.9rem;
      color: var(--dorado);
      opacity: 0.6;
      text-align: center;
    }

    /* Floating year badge */
    .year-badge {
      position: absolute;
      bottom: -20px;
      right: -20px;
      width: 90px; height: 90px;
      background: var(--dorado);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transform: rotate(15deg);
    }

    .year-num {
      font-family: 'Cinzel', serif;
      font-size: 1.3rem;
      font-weight: 900;
      color: var(--negro);
      line-height: 1;
    }

    .year-label {
      font-size: 0.5rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--negro);
      opacity: 0.7;
    }

    .historia-text {
      padding-right: 1rem;
    }

    .historia-text blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-style: italic;
      font-weight: 300;
      color: var(--dorado-claro);
      line-height: 1.5;
      margin-bottom: 2rem;
      padding-left: 1.5rem;
      border-left: 2px solid var(--dorado);
    }

    .historia-text p {
      font-size: 1rem;
      line-height: 1.9;
      color: var(--gris);
      font-weight: 300;
      margin-bottom: 1.2rem;
    }

    .historia-text p strong {
      color: var(--crema);
      font-weight: 500;
    }

    /* ── PILARES ────────────────────────────────────── */
    .pilares-section {
      padding: 6rem 6%;
      background: var(--negro-2);
      position: relative;
    }

    .pilares-section::before, .pilares-section::after {
      content: '';
      position: absolute;
      left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
    }
    .pilares-section::before { top: 0; }
    .pilares-section::after { bottom: 0; }

    .pilares-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      max-width: 1200px;
      margin: 4rem auto 0;
    }

    .pilar-card {
      padding: 3rem 2.5rem;
      border-right: 1px solid rgba(201,168,76,0.1);
      text-align: center;
      transition: background 0.3s;
    }

    .pilar-card:last-child { border-right: none; }

    .pilar-card:hover {
      background: var(--dorado-bg);
    }

    .pilar-icon {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      display: block;
    }
.pilar-icon img {width: 50px;}
    .pilar-title {
      font-family: 'Cinzel', serif;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--dorado);
      margin-bottom: 1rem;
    }

    .pilar-text {
      font-size: 0.95rem;
      line-height: 1.8;
      color: var(--gris);
      font-weight: 300;
    }

    /* ── PRODUCTO ───────────────────────────────────── */
    .producto-section {
      padding: 8rem 6%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .producto-showcase {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
      margin-top: 5rem;
    }

    .producto-info {
      order: 2;
    }

    .producto-visual {
      order: 1;
      position: relative;
    }

    .producto-frame {
      width: 100%;
      aspect-ratio: 3/4;
      background: linear-gradient(160deg, #1a1a0a, #0f0f0f);
      border: 1px solid rgba(201,168,76,0.15);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .producto-frame::before {
      content: '';
      position: absolute;
      inset: 20px;
      border: 1px solid rgba(201,168,76,0.08);
    }

    /* Glow behind product */
    .producto-glow {
      position: absolute;
      width: 200px; height: 200px;
      background: rgba(42,74,42,0.5);
      border-radius: 50%;
      filter: blur(60px);
    }

    .producto-placeholder {
      position: relative;
      z-index: 1;
      text-align: center;
    }
.producto-placeholder img{max-width: 500px; width:100%;}
    .producto-placeholder-emoji {
      font-size: 6rem;
      display: block;
      margin-bottom: 1rem;
      filter: drop-shadow(0 0 20px rgba(201,168,76,0.3));
    }

    .producto-placeholder-text {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 0.9rem;
      color: var(--dorado);
      opacity: 0.5;
    }

    .producto-tag {
      display: inline-block;
      font-size: 0.65rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--dorado);
      border: 1px solid rgba(201,168,76,0.3);
      padding: 0.4rem 1rem;
      margin-bottom: 1.5rem;
    }

    .producto-nombre {
      font-family: 'Cinzel', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      color: var(--crema);
      margin-bottom: 0.5rem;
      line-height: 1.1;
    }

    .producto-subtitulo {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1.2rem;
      color: var(--dorado);
      margin-bottom: 2rem;
    }

    .producto-descripcion {
      font-size: 0.95rem;
      line-height: 1.9;
      color: var(--gris);
      font-weight: 300;
      margin-bottom: 2.5rem;
    }

    .atributos-lista {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      margin-bottom: 3rem;
    }

    .atributo-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 0.9rem;
      color: var(--crema-2);
    }

    .atributo-dot {
      width: 6px; height: 6px;
      background: var(--dorado);
      transform: rotate(45deg);
      flex-shrink: 0;
    }

    .peso-badge {
      display: inline-flex;
      align-items: baseline;
      gap: 0.3rem;
      margin-bottom: 2rem;
    }

    .peso-num {
      font-family: 'Cinzel', serif;
      font-size: 3rem;
      font-weight: 900;
      color: var(--dorado);
      line-height: 1;
    }

    .peso-unit {
      font-size: 1rem;
      color: var(--dorado);
      opacity: 0.7;
      letter-spacing: 2px;
    }

    /* ── HISTORIA CAPILLA ───────────────────────────── */
    .capilla-section {
      background: var(--negro-2);
      padding: 7rem 6%;
      position: relative;
      overflow: hidden;
    }

    .capilla-bg-text {
      position: absolute;
      font-family: 'Cinzel', serif;
      font-size: 20vw;
      font-weight: 900;
      color: rgba(201,168,76,0.02);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      white-space: nowrap;
      pointer-events: none;
      user-select: none;
    }

    .capilla-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .capilla-content p {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.1rem, 2vw, 1.4rem);
      font-weight: 300;
      line-height: 1.9;
      color: var(--gris);
      margin-bottom: 1.5rem;
    }

    .capilla-content p em {
      color: var(--dorado-claro);
      font-style: italic;
    }

    .capilla-content strong {
      color: var(--crema);
      font-weight: 400;
    }

    /* ── CONTACTO ───────────────────────────────────── */
    .contacto-section {
      padding: 7rem 6%;
      position: relative;
    }

    .contacto-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: start;
    }

    .contacto-left h2 {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 700;
      color: var(--crema);
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .contacto-left p {
      font-size: 0.95rem;
      line-height: 1.8;
      color: var(--gris);
      font-weight: 300;
      margin-bottom: 2.5rem;
    }

    .wa-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      background: #25D366;
      color: #fff;
      padding: 1rem 2rem;
      border-radius: 2px;
      text-decoration: none;
      font-family: 'Jost', sans-serif;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 2.5rem;
      transition: all 0.3s;
      box-shadow: 0 0 30px rgba(37,211,102,0.2);
    }
    .wa-btn:hover { background: #128C7E; box-shadow: 0 0 50px rgba(37,211,102,0.3); }

    .wa-svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }

    .dato-row {
      display: flex;
      align-items: center;
      gap: .5rem;
      margin-bottom: 1rem;
      color: var(--gris);
      font-size: 0.9rem;
    }

    .dato-ico {
      width: 20px; height: 20px;
      display: flex;
      flex-shrink: 0;
    }
/* ── FAQ ACORDEÓN ──────────────────────────────────── */
    .faq-section {
      padding: 0;
    }

    .faq-title {
      font-family: 'Cinzel', serif;
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--crema);
      letter-spacing: 1px;
      margin-bottom: 2rem;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .faq-item {
      border-bottom: 1px solid rgba(201,168,76,0.15);
    }

    .faq-item:first-child {
      border-top: 1px solid rgba(201,168,76,0.15);
    }

    .faq-btn {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.1rem 0;
      background: transparent;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: 'Jost', sans-serif;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--crema, #F5EDDA);
      letter-spacing: 0.2px;
      line-height: 1.5;
      transition: color 0.2s;
    }

    .faq-btn:hover {
      color: var(--dorado, #C9A84C);
    }

    .faq-btn[aria-expanded="true"] {
      color: var(--dorado, #C9A84C);
    }

    .faq-icon {
      flex-shrink: 0;
      color: var(--dorado, #C9A84C);
      opacity: 0.7;
      transition: transform 0.3s ease, opacity 0.2s;
      display: flex;
      align-items: center;
    }

    .faq-btn[aria-expanded="true"] .faq-icon {
      transform: rotate(180deg);
      opacity: 1;
    }

    .faq-answer {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.35s ease, padding 0.35s ease;
    }

    .faq-answer.open {
      max-height: 300px;
    }

    .faq-answer p {
      font-family: 'Jost', sans-serif;
      font-size: 0.9rem;
      font-weight: 300;
      color: rgba(245,237,218,0.65);
      line-height: 1.75;
      padding-bottom: 1.1rem;
    }

    .faq-answer p strong {
      color: var(--crema, #F5EDDA);
      font-weight: 500;
    }
    /* ── FOOTER ─────────────────────────────────────── */
    footer {
      background: #050505;
      padding: 3rem 6% 2rem;
      border-top: 1px solid rgba(201,168,76,0.1);
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .footer-logo {
      font-family: 'Cinzel', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--dorado);
      letter-spacing: 6px;
    }
.footer-logo img {max-width: 120px;}
    .footer-text {
      font-size: 0.8rem;
      color: rgba(245,237,218,0.3);
      letter-spacing: 1px;
    }

    .footer-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .footer-links a {
      color: rgba(245,237,218,0.4);
      text-decoration: none;
      font-size: 0.8rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--dorado); }

    .footer-divider {
      max-width: 1200px;
      margin: 2rem auto 0;
      border: none;
      border-top: 1px solid rgba(201,168,76,0.08);
      padding-top: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-copy {
      font-size: 0.75rem;
      color: rgba(245,237,218,0.2);
    }

    .footer-grupo img{width: 70px;    }
    .footer-grupo:hover { color: var(--dorado); }

    /* ── REVEAL ─────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(25px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }

    /* ── RESPONSIVE ─────────────────────────────────── */
    @media (max-width: 900px) {
      .historia-grid, .producto-showcase, .contacto-inner { grid-template-columns: 1fr; gap: 3rem; }
      .pilares-grid { grid-template-columns: 1fr; }
      .pilar-card { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.1); }
      .pilar-card:last-child { border-bottom: none; }
      .producto-info, .producto-visual { order: unset; }
      .hero-brand { font-size: clamp(2rem, 6vw, 4rem); }
    }

    @media (max-width: 600px) {
      .nav-links { display: none; }
      .footer-inner { flex-direction: column; text-align: center; }
      .frow { grid-template-columns: 1fr; }
      .hero-badges { gap: 1.5rem; }
    }