/* ============================================================
   KOYAMA — Stylesheet v3
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;1,800;1,900&family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,900;1,900&display=swap');

/*
@font-face {
  font-family: 'Acumin';
  src: url('../fonts/acumin-condensed-bold.woff2') format('woff2');
  font-weight: 700 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Acumin';
  src: url('../fonts/acumin-regular.woff2') format('woff2');
  font-weight: 400 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/gilroy-black-italic.woff2') format('woff2');
  font-weight: 900; font-style: italic; font-display: swap;
}
*/

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

:root {
  --red:        #E31E24;
  --black:      #111111;
  --dark:       #1a1a1a;
  --white:      #ffffff;
  --gray:       #f5f5f5;
  --font-title: 'Barlow Condensed', sans-serif;
  --font-hero:  'Barlow Condensed', sans-serif;
  --font-body:  'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--black); background: var(--white); overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar { background: var(--black); padding: 7px 0; font-size: 12px; color: #aaa; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; }
.topbar-left { display: flex; align-items: center; }
.lang-switch { display: flex; align-items: center; gap: 6px; color: #ccc; font-size: 12px; }
.lang-switch span { cursor: pointer; transition: color .2s; }
.lang-switch span:hover { color: var(--white); }
.lang-switch .sep { color: #555; }
.lang-switch .active { color: var(--white); font-weight: 600; }
.topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-social a { color: #ccc; font-size: 14px; transition: color .2s; display: inline-flex; align-items: center; gap: 8px; }
.topbar-social a:hover { color: var(--white); }
.topbar-contact a { display: flex; align-items: center; gap: 6px; color: #ccc; font-size: 12px; transition: color .2s; }
.topbar-contact a:hover { color: var(--white); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar { background: var(--black); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,.5); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo img { height: 42px; width: auto; }
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-menu { display: flex; align-items: center; gap: 24px; }
.nav-menu a {
  font-family: var(--font-title); font-weight: 700; font-size: 14px;
  letter-spacing: 1px; text-transform: uppercase; color: var(--white);
  position: relative; padding-bottom: 3px; transition: color .2s; white-space: nowrap;
  background: none; border: none; cursor: pointer;
}
.nav-menu a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--red); transition: width .25s; }
.nav-menu a:hover { color: var(--red); }
.nav-menu a:hover::after { width: 100%; }
.nav-menu a.active::after { width: 100%; }
.nav-cta {
  font-family: var(--font-title); font-weight: 700; font-size: 14px;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--white); background: var(--red);
  border: 1.5px solid var(--red); padding: 7px 18px;
  white-space: nowrap; transition: background .2s;
}
.nav-cta:hover { background: #c5191e; border-color: #c5191e; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero-home { position: relative; width: 100%; height: 560px; overflow: hidden; }
.hero-home img.hero-bg { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-home::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.1) 30%, rgba(0,0,0,.55) 100%); }
.hero-home .hero-content { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: flex-end; padding: 0 60px; }
.hero-home .hero-text { text-align: right; max-width: 520px; }
.hero-home .hero-text h1 { font-family: var(--font-hero); font-style: italic; font-weight: 900; font-size: clamp(42px,5.5vw,72px); line-height: .95; text-transform: uppercase; color: var(--white); letter-spacing: -1px; text-shadow: 2px 2px 20px rgba(0,0,0,.4); }
.hero-home .hero-text p { font-family: var(--font-body); font-size: clamp(14px,1.5vw,17px); color: rgba(255,255,255,.9); margin-top: 12px; line-height: 1.5; }

/* ============================================================
   SECCIÓN — ELIGE LA CALIDAD
   ============================================================ */
.seccion-calidad {
  position: relative; overflow: visible; z-index: 1;
  background-color: var(--black);
  /* CON IMAGEN: descomenta la siguiente línea y pon tu archivo
  background-image: url('../images/fondo-seccion.jpg');
  background-size: cover; background-position: center; */
}
.seccion-calidad .container { display: grid; grid-template-columns: 1fr 1fr; align-items: flex-end; min-height: 440px; gap: 40px; padding-top: 60px; padding-bottom: 0; }
.seccion-calidad .sc-text { position: relative; z-index: 2; padding-bottom: 60px; }
.seccion-calidad::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 22px 22px; opacity: 1; }
.seccion-calidad .sc-text h2 { font-family: var(--font-title); font-weight: 800; font-size: clamp(28px,3.5vw,48px); text-transform: uppercase; color: var(--white); line-height: 1.05; letter-spacing: -.5px; margin-bottom: 20px; }
.seccion-calidad .sc-text p { font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.7; max-width: 420px; margin-bottom: 36px; }
.btn-red { display: inline-block; font-family: var(--font-title); font-weight: 700; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; background: var(--red); color: var(--white); padding: 14px 32px; transition: background .2s, transform .2s; }
.btn-red:hover { background: #c5191e; transform: translateY(-1px); }
.seccion-calidad .sc-image { display: flex; justify-content: center; align-items: flex-end; position: relative; z-index: 3; margin-bottom: -80px; }
.seccion-calidad .sc-image img { max-height: 480px; object-fit: contain; filter: drop-shadow(0 20px 50px rgba(0,0,0,.7)); }

/* ============================================================
   CAROUSEL
   ============================================================ */
.productos-carousel { background: var(--white); padding: 110px 0 120px; position: relative; z-index: 0; }
.carousel-wrapper { position: relative; overflow: hidden; }
.carousel-track { display: flex; transition: transform .5s cubic-bezier(.25,.46,.45,.94); }
.carousel-slide { flex: 0 0 25%; padding: 0 16px; text-align: center; }
.carousel-slide img { width: 100%; max-width: 200px; height: 180px; object-fit: contain; margin: 0 auto 20px; transition: transform .3s; }
.carousel-slide:hover img { transform: scale(1.05); }
.carousel-slide h3 { font-family: var(--font-title); font-weight: 700; font-size: 15px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--black); margin-bottom: 10px; }
.carousel-slide p { font-family: var(--font-body); font-size: 13px; color: #555; line-height: 1.5; margin-bottom: 14px; min-height: 56px; }
.link-red { font-family: var(--font-title); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--red); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.link-red:hover { gap: 10px; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 32px; height: 70px; background: var(--red); color: var(--white); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 13px; z-index: 10; transition: background .2s; }
.carousel-btn:hover { background: #c5191e; }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.carousel-dots span { width: 10px; height: 10px; border-radius: 50%; background: #ddd; cursor: pointer; transition: background .2s; }
.carousel-dots span.active { background: var(--red); }

/* ============================================================
   CTA — ENCUENTRA TU PRODUCTO
   ============================================================ */
.cta-encuentra { background: linear-gradient(180deg,#8B0000 0%,#C8191F 40%,#E31E24 100%); position: relative; overflow: visible; z-index: 1; }
.cta-encuentra::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle,rgba(0,0,0,.12) 1px,transparent 1px); background-size: 20px 20px; pointer-events: none; z-index: 0; }
.cta-encuentra .container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; min-height: 300px; gap: 40px; position: relative; z-index: 2; }
.cta-encuentra .cta-text { padding: 60px 0 50px; }
.cta-encuentra .cta-text h2 { font-family: var(--font-title); font-style: italic; font-weight: 900; font-size: clamp(32px,4vw,52px); text-transform: uppercase; color: var(--white); line-height: 1; margin-bottom: 10px; }
.cta-encuentra .cta-text p { font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,.85); margin-bottom: 28px; }
.btn-dark { display: inline-block; font-family: var(--font-title); font-weight: 700; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; background: var(--black); color: var(--white); padding: 14px 32px; transition: background .2s; }
.btn-dark:hover { background: #333; }
.cta-encuentra .cta-image { display: flex; align-items: flex-end; justify-content: center; position: relative; margin-top: -60px; }
.cta-encuentra .cta-image img { max-height: 420px; object-fit: contain; filter: drop-shadow(0 -10px 40px rgba(0,0,0,.35)) drop-shadow(0 20px 40px rgba(0,0,0,.3)); }

/* ============================================================
   FOOTER — datos de contacto ocultos (solo visibles en modal)
   ============================================================ */
footer {
  position: relative;
  color: var(--white);
  background-color: var(--dark);
  background-image: url('../images/fondo-footer.jpg');  /* ← agrega esto */
  background-size: cover;
  background-position: center top;
}
footer::before { content: ''; position: absolute; inset: 0; background: rgba(10,10,10,0.22); pointer-events: none; z-index: 0; }
.footer-main, .footer-bottom { position: relative; z-index: 1; }
.footer-main { padding: 50px 0 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-main .container { display: grid; grid-template-columns: 1.3fr 1fr 1.3fr; gap: 60px; }
.footer-newsletter h4 { font-family: var(--font-title); font-weight: 800; font-style: italic; font-size: 28px; letter-spacing: 1px; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form input[type="email"] { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15); color: var(--white); padding: 11px 14px; font-family: var(--font-body); font-size: 13px; outline: none; transition: border-color .2s; }
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form input[type="email"]:focus { border-color: var(--red); }
.newsletter-form .recaptcha-note { font-size: 11px; color: rgba(255,255,255,.3); }
.newsletter-form button { font-family: var(--font-title); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; background: var(--red); color: var(--white); border: none; padding: 11px 24px; cursor: pointer; align-self: flex-start; transition: background .2s; }
.newsletter-form button:hover { background: #c5191e; }
.footer-social { margin-top: 24px; }
.footer-social h5 { font-family: var(--font-title); font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.social-icons { display: flex; gap: 12px; }
.social-icons a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 15px; transition: border-color .2s, background .2s; }
.social-icons a:hover { border-color: var(--red); background: var(--red); }
.footer-nav h4 { font-family: var(--font-title); font-weight: 700; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.footer-nav ul li { margin-bottom: 10px; }
.footer-nav ul li a { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-nav ul li a:hover { color: var(--red); }
.footer-nav ul li a.red { color: var(--red); }
.footer-bottom { padding: 20px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-logo img { height: 32px; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 11px; color: rgba(255,255,255,.3); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--white); }

/* ============================================================
   MODAL — QUIERO SER DISTRIBUIDOR
   ============================================================ */
.modal-overlay { position: fixed; inset: 0; z-index: 9000; background: rgba(0,0,0,.78); display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity .3s; }
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box { background: var(--white); width: 100%; max-width: 580px; position: relative; transform: translateY(30px); transition: transform .35s; max-height: 92vh; overflow-y: auto; }
.modal-overlay.active .modal-box { transform: translateY(0); }
.modal-header { background: var(--black); padding: 22px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; position: sticky; top: 0; z-index: 2; }
.modal-header h2 { font-family: var(--font-title); font-weight: 800; font-size: 20px; letter-spacing: 1px; text-transform: uppercase; color: var(--white); line-height: 1.1; }
.modal-header h2 span { color: var(--red); }
.modal-close { background: none; border: none; color: rgba(255,255,255,.6); font-size: 22px; cursor: pointer; padding: 0; line-height: 1; transition: color .2s; flex-shrink: 0; }
.modal-close:hover { color: var(--red); }
.modal-body { padding: 28px; }
.modal-form-screen, .modal-thanks-screen { display: none; }
.modal-form-screen.visible, .modal-thanks-screen.visible { display: block; }
.modal-body .form-group { margin-bottom: 14px; }
.modal-body label { display: block; font-family: var(--font-title); font-weight: 700; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: #666; margin-bottom: 5px; }
.modal-body label .required { color: var(--red); }
.modal-body input, .modal-body textarea, .modal-body select { width: 100%; padding: 11px 14px; border: 1.5px solid #e0e0e0; font-family: var(--font-body); font-size: 14px; color: var(--black); outline: none; transition: border-color .2s; background: #fff; -webkit-appearance: none; }
.modal-body input:focus, .modal-body textarea:focus, .modal-body select:focus { border-color: var(--red); }
.modal-body textarea { resize: vertical; min-height: 90px; }
.zona-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.modal-submit { width: 100%; padding: 15px; font-family: var(--font-title); font-weight: 700; font-size: 16px; letter-spacing: 2px; text-transform: uppercase; background: var(--red); color: var(--white); border: none; cursor: pointer; margin-top: 10px; transition: background .2s; }
.modal-submit:hover { background: #c5191e; }
.modal-submit:disabled { background: #ccc; cursor: not-allowed; }

/* Pantalla de agradecimiento */
.modal-thanks-screen { text-align: center; }
.thanks-icon { font-size: 54px; margin-bottom: 14px; display: block; }
.modal-thanks-screen h3 { font-family: var(--font-title); font-weight: 800; font-size: 26px; text-transform: uppercase; color: var(--black); margin-bottom: 8px; }
.modal-thanks-screen > p { font-family: var(--font-body); font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 22px; }
.modal-contact-data { background: var(--black); padding: 20px 22px; text-align: left; margin-bottom: 20px; }
.modal-contact-data h4 { font-family: var(--font-title); font-weight: 700; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.modal-contact-data ul li { display: flex; align-items: flex-start; gap: 10px; font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,.8); margin-bottom: 8px; line-height: 1.4; }
.modal-contact-data ul li .icon { color: var(--red); flex-shrink: 0; margin-top: 1px; }
.btn-cerrar-modal { font-family: var(--font-title); font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; background: transparent; border: 1.5px solid #ddd; color: #888; padding: 10px 28px; cursor: pointer; transition: all .2s; }
.btn-cerrar-modal:hover { border-color: var(--black); color: var(--black); }

/* ============================================================
   PRODUCTOS PAGE
   ============================================================ */
.hero-productos { position: relative; width: 100%; height: auto; overflow: hidden; background: var(--red); }
.hero-productos img.hero-bg-productos { width: 100%; display: block; }
.hero-productos .container { position: absolute; inset: 0; height: 100%; display: flex; align-items: center; justify-content: flex-end; z-index: 2; }
.hero-productos .hp-text { text-align: right; max-width: 420px; }
.hero-productos .hp-text h1 { font-family: var(--font-hero); font-style: italic; font-weight: 900; font-size: clamp(36px,5vw,64px); text-transform: uppercase; color: var(--white); line-height: 1; text-shadow: 2px 2px 20px rgba(0,0,0,.3); }
.hero-productos .hp-text p { font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,.9); max-width: 380px; margin-top: 10px; line-height: 1.5; }
.productos-grid { background: var(--white); padding: 70px 0 60px; }
.productos-grid .container { display: grid; grid-template-columns: repeat(3,1fr); gap: 50px 40px; }
.product-card { text-align: center; }
.product-card img { width: 100%; max-width: 220px; height: 180px; object-fit: contain; margin: 0 auto 20px; transition: transform .3s; }
.product-card:hover img { transform: scale(1.05); }
.product-card h3 { font-family: var(--font-title); font-weight: 700; font-size: 15px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--black); margin-bottom: 10px; }
.product-card p { font-family: var(--font-body); font-size: 13px; color: #555; line-height: 1.5; margin-bottom: 14px; }
.product-card .link-red { justify-content: center; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.page-hero { background: var(--black); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle,rgba(255,255,255,.04) 1px,transparent 1px); background-size: 22px 22px; }
.page-hero .container { position: relative; z-index: 2; padding-top: 52px; padding-bottom: 52px; }
.page-hero h1 { font-family: var(--font-hero); font-style: italic; font-weight: 900; font-size: clamp(36px,5vw,60px); text-transform: uppercase; color: var(--white); }
.page-hero h1 span { color: var(--red); }
.page-hero p { font-family: var(--font-body); font-size: 15px; color: rgba(255,255,255,.7); margin-top: 8px; }

.section-title { display: flex; align-items: center; gap: 14px; margin-bottom: 40px; }
.section-title h2 { font-family: var(--font-title); font-weight: 800; font-size: 20px; letter-spacing: 2px; text-transform: uppercase; color: var(--black); white-space: nowrap; }
.section-title h2 i { color: var(--red); margin-right: 6px; }
.section-title .title-line { flex: 1; height: 2px; background: #eee; }

/* Instagram section */
.instagram-section { background: var(--gray); padding: 70px 0; }
.ig-connect-note { background: #fff8e1; border-left: 4px solid #ffc107; padding: 14px 18px; margin-bottom: 30px; font-size: 13px; color: #7a5c00; line-height: 1.5; }
.ig-connect-note strong { display: block; margin-bottom: 4px; font-size: 14px; }
.instagram-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.instagram-card { background: var(--white); overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,.07); transition: transform .3s, box-shadow .3s; }
.instagram-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.13); }
.instagram-card .ig-image { position: relative; aspect-ratio: 1; overflow: hidden; background: #e9e9e9; }
.instagram-card .ig-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.instagram-card:hover .ig-image img { transform: scale(1.06); }
.ig-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.45); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
.instagram-card:hover .ig-overlay { opacity: 1; }
.ig-overlay i { color: var(--white); font-size: 30px; }
.instagram-card .ig-body { padding: 16px; }
.instagram-card .ig-body p { font-family: var(--font-body); font-size: 13px; color: #444; line-height: 1.5; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.ig-link { font-family: var(--font-title); font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--red); display: inline-flex; align-items: center; gap: 5px; transition: gap .2s; }
.ig-link:hover { gap: 8px; }

/* Blog articles */
.blog-articles { background: var(--white); padding: 70px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.blog-card { border: 1px solid #eee; overflow: hidden; transition: box-shadow .3s, transform .3s; }
.blog-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.1); transform: translateY(-3px); }
.blog-card .blog-img { aspect-ratio: 16/9; overflow: hidden; background: #eee; }
.blog-card .blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-card .blog-body { padding: 20px; }
.blog-cat { font-family: var(--font-title); font-weight: 700; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.blog-card h3 { font-family: var(--font-title); font-weight: 700; font-size: 18px; text-transform: uppercase; color: var(--black); line-height: 1.2; margin-bottom: 10px; }
.blog-card p { font-family: var(--font-body); font-size: 13px; color: #666; line-height: 1.5; margin-bottom: 14px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: #aaa; }
.blog-empty { grid-column: 1/-1; text-align: center; padding: 60px 20px; }
.blog-empty i { font-size: 44px; color: #ddd; display: block; margin-bottom: 14px; }
.blog-empty p { font-family: var(--font-body); font-size: 15px; color: #aaa; }

/* ============================================================
   CATÁLOGO — PDF VIEWER
   ============================================================ */
.catalogo-hero { background: var(--black); padding: 36px 0; }
.catalogo-hero .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.catalogo-hero h1 { font-family: var(--font-hero); font-style: italic; font-weight: 900; font-size: clamp(28px,4vw,52px); text-transform: uppercase; color: var(--white); }
.catalogo-hero h1 span { color: var(--red); }
.catalogo-search { display: flex; align-items: stretch; max-width: 400px; width: 100%; }
.catalogo-search input { flex: 1; padding: 11px 14px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: var(--white); font-family: var(--font-body); font-size: 14px; outline: none; transition: border-color .2s; }
.catalogo-search input::placeholder { color: rgba(255,255,255,.35); }
.catalogo-search input:focus { border-color: var(--red); }
.catalogo-search button { padding: 11px 16px; background: var(--red); color: var(--white); border: none; cursor: pointer; font-size: 15px; transition: background .2s; }
.catalogo-search button:hover { background: #c5191e; }

.catalogo-toolbar { background: #1c1c1c; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.catalogo-toolbar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.cat-nav { display: flex; align-items: center; gap: 8px; }
.cat-btn { background: rgba(255,255,255,.08); color: var(--white); border: 1px solid rgba(255,255,255,.12); padding: 6px 14px; font-family: var(--font-title); font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: background .2s; }
.cat-btn:hover, .cat-btn:disabled { background: var(--red); border-color: var(--red); }
.cat-btn:disabled { opacity: .5; cursor: not-allowed; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); }
.cat-page-info { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,.5); }
.cat-download { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-title); font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--white); border: 1px solid rgba(255,255,255,.2); padding: 6px 14px; transition: all .2s; }
.cat-download:hover { background: var(--red); border-color: var(--red); }

.search-banner { background: var(--red); color: var(--white); padding: 10px 24px; font-family: var(--font-body); font-size: 13px; display: none; }
.search-banner.visible { display: flex; align-items: center; gap: 10px; justify-content: space-between; }
.search-banner button { background: none; border: none; color: var(--white); cursor: pointer; font-size: 16px; }

.catalogo-viewer { background: #2a2a2a; padding: 30px 20px 50px; min-height: 80vh; display: flex; flex-direction: column; align-items: center; }
#pdf-render-area { width: 100%; max-width: 860px; }
#pdf-render-area canvas { width: 100% !important; height: auto !important; display: block; box-shadow: 0 8px 40px rgba(0,0,0,.6); margin-bottom: 20px; background: white; }
.pdf-loading { color: rgba(255,255,255,.5); text-align: center; padding: 80px 20px; }
.pdf-loading i { font-size: 36px; display: block; margin-bottom: 12px; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
   /* Ocultar nav en TODOS los tamaños — solo logo + tagline */
.nav-right { display: none !important; }
.nav-toggle { display: none !important; }
.nav-mobile-tagline {
  display: block !important;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
@media (max-width: 1024px) {
  .nav-menu { gap: 18px; }
  .nav-menu a { font-size: 13px; letter-spacing: .5px; }
  .nav-right { gap: 18px; }
}
@media (max-width: 900px) {
  .seccion-calidad .container { grid-template-columns: 1fr; text-align: center; padding-top: 50px; }
  .seccion-calidad .sc-text { padding-bottom: 30px; }
  .seccion-calidad .sc-image { margin-bottom: 0; justify-content: center; }
  .seccion-calidad .sc-image img { max-height: 260px; }
  .seccion-calidad .sc-text p { max-width: 100%; }
  .productos-carousel { padding: 70px 0 60px; }
  .cta-encuentra .container { grid-template-columns: 1fr; }
  .cta-encuentra .cta-image { display: none; }
  .footer-main .container { grid-template-columns: 1fr; gap: 36px; }
  .hero-productos .container { justify-content: center; }
  .hero-productos .hp-text { text-align: center; }
  .productos-grid .container { grid-template-columns: repeat(2,1fr); }
  .instagram-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .zona-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-toggle { display: flex; }
  .nav-right { display: none; position: absolute; top: 68px; left: 0; width: 100%; background: var(--black); flex-direction: column; padding: 20px 24px 30px; gap: 0; border-top: 1px solid rgba(255,255,255,.08); }
  .nav-right.open { display: flex; }
  .nav-menu { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .nav-menu a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.06); width: 100%; }
  .nav-menu a::after { display: none; }
  .nav-cta { margin-top: 16px; display: block; text-align: center; padding: 12px 20px; }
  .navbar .container { position: relative; }
  .hero-home { height: 420px; }
  .hero-home .hero-content { justify-content: center; padding: 0 24px; }
  .hero-home .hero-text { text-align: center; max-width: 100%; }
  .carousel-slide { flex: 0 0 50%; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }
  .instagram-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .catalogo-hero .container { flex-direction: column; align-items: flex-start; }
  .catalogo-search { max-width: 100%; }
}
@media (max-width: 500px) {
  .hero-home { height: 360px; }
  .carousel-slide { flex: 0 0 100%; }
  .productos-grid .container { grid-template-columns: 1fr; }
}

/* ============================================================
   ESTILOS ADICIONALES — Footer, Modal, Nav mobile tagline
   ============================================================ */

/* Footer links sin enlace */
.footer-link {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  cursor: default;
  display: block;
  margin-bottom: 12px;
}
.footer-link.red { color: var(--red); }

/* Footer contact */
.footer-contact ul { list-style: none; padding: 0; margin: 0; }
.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}
.footer-contact ul li .icon { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-contact ul li strong {
  color: var(--white);
  display: block;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Footer 3 columnas */
.footer-main .container {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr;
  gap: 50px;
  align-items: start;
}

/* Newsletter input blanco */
.newsletter-form input[type="email"] {
  background: #ffffff;
  border: 1px solid #ddd;
  color: #111;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.newsletter-form input[type="email"]::placeholder { color: #aaa; }
.newsletter-form input[type="email"]:focus { border-color: var(--red); }

/* reCAPTCHA blanco */
.recaptcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.recaptcha-fake {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 10px 12px;
  flex: 1;
  min-width: 160px;
}
.recaptcha-check {
  width: 18px; height: 18px;
  border: 1.5px solid #bbb;
  display: inline-block;
  flex-shrink: 0;
}
.recaptcha-label { font-size: 12px; color: #555; flex: 1; }
.recaptcha-logo { width: 28px; height: 28px; opacity: .5; }
.newsletter-form button {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 11px 22px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.newsletter-form button:hover { background: #c5191e; }

/* Footer logo centrado */
.footer-logo-center {
  text-align: center;
  padding: 36px 0 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  position: relative;
  z-index: 1;
}
.footer-logo-center img { height: 80px; margin: 0 auto; }

/* Nav mobile tagline */
.nav-mobile-tagline {
  display: none;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* Footer responsive */
@media (max-width: 900px) {
  .footer-main .container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-newsletter { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-main .container { grid-template-columns: 1fr; }
  .recaptcha-row { flex-direction: column; align-items: stretch; }
  .newsletter-form button { width: 100%; }
}

/* Nav mobile */
@media (max-width: 768px) {
  .nav-mobile-tagline { display: block; }
}
