/* ══════════════════════════════════════════════════════════
   MUSEO DIGITAL · ESTHER MARISOL
   contacto.css · © 2026 E.A.S.M
══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Cinzel:wght@400;600;700&family=IM+Fell+English:ital@0;1&display=swap');

:root{
  --arena:#D7CCC8;--marron:#4E342E;--terracota:#A0522D;
  --ocre:#C19A6B;--blanco:#FFFDF8;--tinta:#1C1008;
  --marron-deep:#160D06;--ocre-light:#DDB97A;
  --ocre-dim:rgba(193,154,107,.2);--arena-dim:rgba(215,204,200,.55);
  --wa:#25D366;--fb:#1877F2;--yt:#FF0000;--ig:#E1306C;--tt:#010101;
  --serif:'Cormorant Garamond',Georgia,serif;
  --cinzel:'Cinzel',serif;--fell:'IM Fell English',serif;
  --ease:cubic-bezier(.4,0,.2,1);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased;}
body{font-family:var(--serif);background:var(--marron-deep);color:var(--arena);overflow-x:hidden;user-select:none;-webkit-user-select:none;}
img{display:block;max-width:100%;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
body::before{content:'';position:fixed;inset:0;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");pointer-events:none;z-index:9999;mix-blend-mode:overlay;}

/* ── AUDIO ── */
.audio-control{position:fixed;bottom:2rem;right:2rem;z-index:1000;}
.audio-btn{width:52px;height:52px;border-radius:50%;background:rgba(28,16,8,.85);border:1.5px solid var(--ocre);color:var(--ocre-light);display:flex;align-items:center;justify-content:center;cursor:pointer;backdrop-filter:blur(12px);box-shadow:0 4px 28px rgba(0,0,0,.6);transition:border-color .3s,transform .3s;position:relative;overflow:hidden;}
.audio-btn:hover{border-color:var(--ocre-light);transform:scale(1.08);}
.audio-btn.playing{animation:audioPulse 2s ease-in-out infinite;}
@keyframes audioPulse{0%,100%{box-shadow:0 4px 28px rgba(0,0,0,.6),0 0 0 0 rgba(193,154,107,.3);}50%{box-shadow:0 4px 28px rgba(0,0,0,.6),0 0 0 10px rgba(193,154,107,.0);}}
.audio-icon{font-size:1.1rem;position:relative;z-index:1;}
.audio-waves{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;gap:2px;opacity:0;transition:opacity .3s;}
.audio-btn.playing .audio-icon{opacity:0;}
.audio-btn.playing .audio-waves{opacity:1;}
.audio-waves span{display:block;width:3px;background:var(--ocre-light);border-radius:2px;animation:wave 1.1s ease-in-out infinite;}
.audio-waves span:nth-child(1){height:8px;animation-delay:0s;}
.audio-waves span:nth-child(2){height:16px;animation-delay:.15s;}
.audio-waves span:nth-child(3){height:10px;animation-delay:.3s;}
.audio-waves span:nth-child(4){height:14px;animation-delay:.45s;}
@keyframes wave{0%,100%{transform:scaleY(.4);}50%{transform:scaleY(1);}}

/* ── NAV ── */
#navbar{position:fixed;top:0;left:0;right:0;z-index:500;border-bottom:1px solid transparent;transition:background .5s,border-color .5s;}
#navbar.scrolled{background:rgba(16,8,3,.94);backdrop-filter:blur(18px);border-bottom-color:rgba(193,154,107,.14);}
.nav-inner{max-width:1440px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:1rem 2rem;transition:padding .4s;}
#navbar.scrolled .nav-inner{padding:.7rem 2rem;}
.nav-logo{display:flex;align-items:center;gap:.75rem;flex-shrink:0;}
.nav-logo img{height:40px;width:40px;object-fit:contain;border-radius:50%;border:1px solid rgba(193,154,107,.3);transition:border-color .3s;}
.nav-logo:hover img{border-color:var(--ocre);}
.nav-logo-text{font-family:var(--cinzel);font-size:.7rem;letter-spacing:.22em;text-transform:uppercase;color:var(--ocre-light);line-height:1.4;}
.nav-logo-text span{display:block;font-size:.48rem;color:rgba(215,204,200,.45);letter-spacing:.28em;}
.nav-links{display:flex;align-items:center;gap:1.4rem;}
.nav-links a{font-family:var(--cinzel);font-size:.54rem;letter-spacing:.16em;text-transform:uppercase;color:rgba(215,204,200,.5);position:relative;padding-bottom:3px;transition:color .3s;white-space:nowrap;}
.nav-links a::after{content:'';position:absolute;bottom:0;left:0;width:0;height:1px;background:var(--ocre);transition:width .35s var(--ease);}
.nav-links a:hover,.nav-links a.active{color:var(--ocre-light);}
.nav-links a:hover::after,.nav-links a.active::after{width:100%;}
.nav-ham{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:5px;}
.nav-ham span{display:block;width:24px;height:1.5px;background:var(--ocre-light);transition:transform .35s var(--ease),opacity .35s,width .35s;}
.nav-ham.open span:nth-child(1){transform:rotate(45deg) translate(4.8px,4.8px);}
.nav-ham.open span:nth-child(2){opacity:0;width:0;}
.nav-ham.open span:nth-child(3){transform:rotate(-45deg) translate(4.8px,-4.8px);}
.nav-overlay{position:fixed;inset:0;z-index:800;background:var(--marron-deep);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1.6rem;opacity:0;pointer-events:none;transition:opacity .45s var(--ease);}
.nav-overlay.open{opacity:1;pointer-events:all;}
.nav-overlay-close{position:absolute;top:1.5rem;right:1.8rem;background:none;border:none;color:var(--ocre);font-size:1.8rem;cursor:pointer;transition:transform .3s;}
.nav-overlay-close:hover{transform:rotate(90deg);}
.nav-overlay-logo img{height:64px;width:64px;object-fit:contain;border-radius:50%;border:1px solid var(--ocre-dim);margin-bottom:.5rem;}
.nav-overlay-links{display:flex;flex-direction:column;align-items:center;gap:1rem;}
.nav-overlay-links a{font-family:var(--fell);font-style:italic;font-size:clamp(1.4rem,4.5vw,2rem);color:rgba(215,204,200,.8);transition:color .3s,transform .3s;}
.nav-overlay-links a:hover{color:var(--ocre);transform:translateX(6px);}
.nav-overlay-sign{font-family:var(--fell);font-style:italic;font-size:1.2rem;color:rgba(193,154,107,.3);letter-spacing:.2em;margin-top:.5rem;}

/* ══ HERO ══ */
.page-hero{position:relative;min-height:60vh;display:flex;align-items:flex-end;padding:0 2rem 5rem;overflow:hidden;}
.page-hero-bg{position:absolute;inset:0;background:linear-gradient(170deg,rgba(22,13,6,.08) 0%,rgba(22,13,6,.68) 55%,rgba(22,13,6,.98) 100%),url('../img/principal.jpg') center 25%/cover no-repeat;animation:heroBgZoom 20s ease-in-out infinite alternate;}
@keyframes heroBgZoom{from{transform:scale(1.04);}to{transform:scale(1.0);}}
.hero-particles{position:absolute;inset:0;pointer-events:none;z-index:1;}
.page-hero-content{position:relative;z-index:2;max-width:1300px;margin:0 auto;width:100%;}
.breadcrumb{display:flex;align-items:center;gap:.6rem;font-family:var(--cinzel);font-size:.5rem;letter-spacing:.3em;text-transform:uppercase;color:rgba(193,154,107,.45);margin-bottom:1.4rem;}
.breadcrumb a{transition:color .3s;}
.breadcrumb a:hover{color:var(--ocre);}
.sep-icon{font-size:.4rem;}
.page-hero-tag{font-family:var(--cinzel);font-size:.58rem;letter-spacing:.45em;text-transform:uppercase;color:var(--ocre);margin-bottom:1rem;display:flex;align-items:center;gap:.9rem;}
.page-hero-tag::before{content:'';display:block;width:28px;height:1px;background:var(--ocre);}
.page-hero-title{font-family:var(--fell);font-style:italic;font-size:clamp(2.8rem,8vw,7rem);color:var(--blanco);line-height:.9;margin-bottom:1rem;text-shadow:0 6px 50px rgba(0,0,0,.5);}
.page-hero-title em{font-style:normal;font-family:var(--cinzel);font-size:.3em;letter-spacing:.25em;color:var(--ocre-light);display:block;margin-top:.25em;}
.page-hero-sub{font-family:var(--serif);font-weight:300;font-size:clamp(.85rem,2vw,1rem);color:var(--arena-dim);letter-spacing:.1em;text-transform:uppercase;display:flex;align-items:center;gap:.6rem;}
.page-hero-sub i{color:var(--ocre);}

/* ══ MENSAJE ══ */
.mensaje-section{
  padding:6rem 2rem;
  background:linear-gradient(135deg,rgba(78,52,46,.15),rgba(22,13,6,.5));
  border-top:1px solid rgba(193,154,107,.1);
  border-bottom:1px solid rgba(193,154,107,.1);
}
.mensaje-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1.4fr;gap:6rem;align-items:center;}
.mensaje-img{position:relative;}
.mensaje-img-frame{
  position:relative;overflow:hidden;
  border:1px solid rgba(193,154,107,.22);
  box-shadow:0 20px 60px rgba(0,0,0,.6);
}
.mensaje-img-frame img{width:100%;aspect-ratio:3/4;object-fit:cover;object-position:top;filter:sepia(10%) contrast(1.05) brightness(.92);}
.mensaje-img-frame::after{content:'';position:absolute;inset:0;background:linear-gradient(to top,rgba(22,13,6,.65) 0%,transparent 45%);pointer-events:none;}
.mensaje-img-frame::before{content:'';position:absolute;inset:16px -16px -16px 16px;border:1px solid rgba(193,154,107,.18);z-index:-1;}
.mensaje-firma{
  position:absolute;bottom:1.2rem;left:1.2rem;right:1.2rem;z-index:2;
  text-align:center;
}
.firma-nombre{display:block;font-family:var(--fell);font-style:italic;font-size:1.3rem;color:var(--blanco);}
.firma-titulo{display:block;font-family:var(--cinzel);font-size:.46rem;letter-spacing:.22em;text-transform:uppercase;color:var(--ocre);margin-top:.2rem;}

.section-tag{font-family:var(--cinzel);font-size:.56rem;letter-spacing:.4em;text-transform:uppercase;color:var(--ocre);margin-bottom:1rem;display:flex;align-items:center;gap:.8rem;}
.section-tag::before{content:'';display:block;width:22px;height:1px;background:var(--ocre);}
.section-tag i{font-size:.7rem;}
.section-title{font-family:var(--fell);font-style:italic;font-size:clamp(2rem,4vw,3rem);color:var(--blanco);line-height:1.05;margin-bottom:0;}
.section-title em{font-style:normal;color:var(--ocre-light);}
.section-header{text-align:center;margin-bottom:3.5rem;}
.section-header .section-tag{justify-content:center;}
.section-header .section-tag::before{display:none;}
.section-header .section-tag::after{content:'';display:block;width:22px;height:1px;background:var(--ocre);}

.mensaje-divider{width:48px;height:1px;background:var(--ocre);margin:1.6rem 0;}
.mensaje-cita{
  font-family:var(--fell);font-style:italic;
  font-size:clamp(1.1rem,2.2vw,1.4rem);
  color:rgba(215,204,200,.75);line-height:1.8;
  margin-bottom:1.2rem;position:relative;
  padding-left:1.5rem;
  border-left:2px solid rgba(193,154,107,.35);
}
.quote-icon{font-size:1.2rem;color:rgba(193,154,107,.35);display:block;margin-bottom:.5rem;}
.mensaje-desc{font-family:var(--serif);font-size:1rem;font-weight:300;color:rgba(215,204,200,.55);line-height:1.9;}

/* ══ ORNAMENTO ══ */
.ornament{display:flex;align-items:center;gap:1.2rem;padding:0 2rem;max-width:1300px;margin:0 auto;padding-top:1rem;padding-bottom:1rem;}
.ornament-line{flex:1;height:1px;background:linear-gradient(to right,transparent,rgba(193,154,107,.18),transparent);}
.ornament-icon{font-size:.85rem;color:rgba(193,154,107,.35);width:38px;height:38px;border-radius:50%;border:1px solid rgba(193,154,107,.14);display:flex;align-items:center;justify-content:center;flex-shrink:0;}

/* ══ PRODUCTOS ══ */
.productos-section{padding:5rem 2rem 4rem;max-width:1000px;margin:0 auto;}
.productos-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1px;background:rgba(193,154,107,.07);border:1px solid rgba(193,154,107,.07);}

.producto-card{
  position:relative;overflow:hidden;
  background:rgba(26,16,8,.8);
  display:flex;flex-direction:column;
  transition:background .4s var(--ease);
}
.producto-card:hover{background:rgba(44,28,14,.95);}

.producto-img-wrap{
  position:relative;width:100%;height:280px;overflow:hidden;flex-shrink:0;
}
.producto-img-wrap img{width:100%;height:100%;object-fit:cover;filter:sepia(12%) contrast(1.05) brightness(.82);transition:transform .7s var(--ease),filter .7s;pointer-events:none;}
.producto-card:hover .producto-img-wrap img{transform:scale(1.05);filter:sepia(4%) brightness(.96);}
.producto-overlay{
  position:absolute;inset:0;background:rgba(22,13,6,.45);
  display:flex;align-items:center;justify-content:center;
  opacity:0;transition:opacity .4s;
}
.producto-card:hover .producto-overlay{opacity:1;}
.producto-icon-big{font-size:2.5rem;color:rgba(193,154,107,.7);}
.producto-badge{
  position:absolute;top:1rem;right:0;
  font-family:var(--cinzel);font-size:.44rem;letter-spacing:.2em;text-transform:uppercase;
  color:var(--tinta);background:linear-gradient(135deg,var(--ocre),var(--ocre-light));
  padding:.3rem .9rem .3rem .7rem;
  clip-path:polygon(8px 0%,100% 0%,100% 100%,0% 100%);
}

.producto-body{padding:1.8rem 2rem 2.2rem;display:flex;flex-direction:column;flex:1;}
.producto-tag{display:inline-flex;align-items:center;gap:.4rem;font-family:var(--cinzel);font-size:.46rem;letter-spacing:.18em;text-transform:uppercase;color:rgba(193,154,107,.45);border:1px solid rgba(193,154,107,.12);padding:.25rem .7rem;margin-bottom:.8rem;align-self:flex-start;transition:border-color .3s,color .3s;}
.producto-card:hover .producto-tag{border-color:rgba(193,154,107,.3);color:var(--ocre);}
.producto-tag i{font-size:.55rem;}
.producto-title{font-family:var(--fell);font-style:italic;font-size:clamp(1.2rem,2vw,1.6rem);color:var(--blanco);line-height:1.15;margin-bottom:.7rem;}
.producto-title em{font-style:normal;color:var(--ocre-light);font-family:var(--cinzel);font-size:.65em;letter-spacing:.12em;}
.producto-desc{font-family:var(--serif);font-size:.95rem;font-weight:300;color:rgba(215,204,200,.52);line-height:1.8;flex:1;margin-bottom:1.4rem;}

.producto-btn{
  display:inline-flex;align-items:center;gap:.8rem;
  font-family:var(--cinzel);font-size:.56rem;letter-spacing:.22em;text-transform:uppercase;
  color:var(--tinta);background:var(--wa);
  padding:.85rem 1.6rem;align-self:flex-start;
  transition:filter .3s,transform .3s var(--ease),box-shadow .3s;
  box-shadow:0 4px 18px rgba(37,211,102,.25);
}
.producto-btn:hover{filter:brightness(1.12);transform:translateY(-2px);box-shadow:0 8px 28px rgba(37,211,102,.35);}
.producto-btn i{font-size:.9rem;}

.producto-bar{position:absolute;bottom:0;left:0;right:0;height:2px;background:linear-gradient(90deg,transparent,var(--ocre),transparent);transform:scaleX(0);transition:transform .5s var(--ease);transform-origin:left;}
.producto-card:hover .producto-bar{transform:scaleX(1);}

/* ══ REDES SOCIALES ══ */
.redes-section{padding:4rem 2rem 5rem;max-width:900px;margin:0 auto;}
.redes-grid{display:flex;flex-direction:column;gap:1px;background:rgba(193,154,107,.07);border:1px solid rgba(193,154,107,.07);}

.red-card{
  display:flex;align-items:center;gap:1.5rem;
  padding:1.3rem 1.8rem;
  background:rgba(26,16,8,.75);
  transition:background .35s var(--ease),transform .35s var(--ease);
  position:relative;overflow:hidden;
}
.red-card:hover{background:rgba(44,28,14,.95);transform:translateX(6px);}
.red-card::before{content:'';position:absolute;left:0;top:0;bottom:0;width:3px;transform:scaleY(0);transition:transform .35s var(--ease);transform-origin:bottom;}
.red-card:hover::before{transform:scaleY(1);}

.red-wa::before{background:var(--wa);}
.red-fb::before{background:var(--fb);}
.red-yt::before{background:var(--yt);}
.red-ig::before{background:linear-gradient(to bottom,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);}
.red-tt::before{background:#fff;}

.red-icon-wrap{
  width:52px;height:52px;border-radius:50%;overflow:hidden;
  border:1.5px solid rgba(193,154,107,.2);flex-shrink:0;
  transition:border-color .3s,box-shadow .3s;
}
.red-card:hover .red-icon-wrap{border-color:rgba(193,154,107,.5);box-shadow:0 4px 16px rgba(0,0,0,.4);}
.red-icon-wrap img{width:100%;height:100%;object-fit:cover;pointer-events:none;}

.red-info{flex:1;display:flex;flex-direction:column;gap:.2rem;}
.red-name{font-family:var(--cinzel);font-size:.62rem;letter-spacing:.2em;text-transform:uppercase;color:var(--blanco);}
.red-handle{font-family:var(--serif);font-size:.9rem;font-weight:300;color:rgba(215,204,200,.45);}
.red-arrow{font-size:.8rem;color:rgba(193,154,107,.3);transition:color .3s,transform .3s;}
.red-card:hover .red-arrow{color:var(--ocre);transform:translateX(4px);}

/* ══ CIERRE DEL MUSEO ══ */
.cierre-section{
  padding:6rem 2rem 5rem;
  background:radial-gradient(ellipse at 50% 50%,rgba(193,154,107,.07) 0%,transparent 65%),
             linear-gradient(135deg,rgba(78,52,46,.12),rgba(22,13,6,.5));
  border-top:1px solid rgba(193,154,107,.12);
  text-align:center;
}
.cierre-inner{max-width:680px;margin:0 auto;}
.cierre-laurel{margin-bottom:2rem;}
.cierre-laurel svg{width:clamp(200px,50vw,300px);margin:0 auto;}
.cierre-title{
  font-family:var(--fell);font-style:italic;
  font-size:clamp(2rem,5vw,3.5rem);
  color:var(--blanco);line-height:1;
  margin-bottom:1.4rem;
  text-shadow:0 0 40px rgba(193,154,107,.15);
}
.cierre-title em{font-style:normal;color:var(--ocre-light);}
.cierre-desc{font-family:var(--serif);font-size:1.05rem;font-weight:300;color:rgba(215,204,200,.6);line-height:1.9;margin-bottom:2.5rem;}
.cierre-sign{
  display:flex;align-items:center;justify-content:center;gap:1.4rem;
  font-family:var(--fell);font-style:italic;
  font-size:clamp(2rem,5vw,3rem);
  color:rgba(193,154,107,.4);letter-spacing:.2em;
  margin-bottom:2.5rem;
}
.cierre-sign-line{display:block;width:clamp(30px,8vw,80px);height:1px;background:linear-gradient(to right,transparent,rgba(193,154,107,.3));}
.cierre-btn{
  display:inline-flex;align-items:center;gap:.8rem;
  font-family:var(--cinzel);font-size:.6rem;letter-spacing:.28em;text-transform:uppercase;
  color:var(--tinta);background:var(--ocre);
  padding:1rem 2.4rem;
  clip-path:polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
  transition:background .3s,transform .3s var(--ease),box-shadow .3s;
  box-shadow:0 4px 20px rgba(193,154,107,.3);
}
.cierre-btn:hover{background:var(--ocre-light);transform:translateY(-3px);box-shadow:0 8px 32px rgba(193,154,107,.4);}

/* ── SCROLL REVEAL ── */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .75s ease,transform .75s ease;}
.reveal.visible{opacity:1;transform:translateY(0);}

/* ── FOOTER ── */
footer{background:var(--marron-deep);border-top:1px solid rgba(193,154,107,.1);padding:5rem 2rem 0;position:relative;overflow:hidden;}
.footer-glow{position:absolute;top:-120px;left:50%;transform:translateX(-50%);width:600px;height:200px;background:radial-gradient(ellipse,rgba(193,154,107,.05) 0%,transparent 70%);pointer-events:none;}
.footer-inner{max-width:1200px;margin:0 auto;}
.footer-top{display:grid;grid-template-columns:1.6fr 1fr 1fr;gap:4rem;padding-bottom:3rem;border-bottom:1px solid rgba(193,154,107,.1);}
.footer-logo{height:52px;width:52px;object-fit:contain;border-radius:50%;border:1px solid var(--ocre-dim);margin-bottom:1rem;}
.footer-brand{font-family:var(--fell);font-style:italic;font-size:clamp(1.8rem,3.5vw,2.6rem);color:var(--ocre-light);line-height:1;margin-bottom:.7rem;}
.footer-tagline{font-family:var(--cinzel);font-size:.5rem;letter-spacing:.2em;text-transform:uppercase;color:rgba(215,204,200,.28);line-height:2;max-width:340px;}
.footer-nav-title{font-family:var(--cinzel);font-size:.56rem;letter-spacing:.3em;text-transform:uppercase;color:rgba(193,154,107,.5);margin-bottom:1.4rem;}
.footer-nav{display:flex;flex-direction:column;gap:.75rem;}
.footer-nav a{font-family:var(--cinzel);font-size:.52rem;letter-spacing:.16em;text-transform:uppercase;color:rgba(215,204,200,.32);transition:color .3s,transform .3s;display:inline-block;}
.footer-nav a:hover{color:var(--ocre);transform:translateX(4px);}
.footer-bottom{display:flex;flex-direction:column;align-items:center;text-align:center;padding:2.5rem 0 7rem;gap:1.2rem;}
.footer-copy{font-family:var(--serif);font-size:.78rem;color:rgba(215,204,200,.25);letter-spacing:.07em;}
.footer-sign{display:flex;align-items:center;gap:1.6rem;font-family:var(--fell);font-style:italic;font-size:clamp(2rem,5vw,3.2rem);color:rgba(193,154,107,.38);letter-spacing:.2em;line-height:1;}
.footer-sign-line{display:block;width:clamp(30px,6vw,70px);height:1px;background:linear-gradient(to right,transparent,rgba(193,154,107,.3));}

/* ══ RESPONSIVE ══ */
@media(max-width:1024px){
  .nav-links{display:none;}.nav-ham{display:flex;}
  .mensaje-inner{grid-template-columns:1fr;gap:3.5rem;}
  .mensaje-img{max-width:400px;margin:0 auto;}
  .mensaje-img-frame img{aspect-ratio:16/9;object-position:center 20%;}
  .mensaje-img-frame::before{display:none;}
  .footer-top{grid-template-columns:1fr 1fr;gap:2.5rem;}
  .footer-brand-col{grid-column:1/-1;}
}
@media(max-width:768px){
  .page-hero{min-height:55vh;padding:0 1.2rem 3.5rem;}
  .mensaje-section{padding:4rem 1.2rem;}
  .productos-section{padding:4rem 1.2rem;}
  .productos-grid{grid-template-columns:1fr;}
  .redes-section{padding:3rem 1.2rem 4rem;max-width:100%;}
  .cierre-section{padding:4rem 1.2rem;}
}
@media(max-width:480px){
  .nav-inner{padding:.8rem 1.2rem;}
  .producto-img-wrap{height:220px;}
  .red-card{padding:1rem 1.2rem;gap:1rem;}
  .red-icon-wrap{width:44px;height:44px;}
  footer{padding:4rem 1.2rem 0;}
  .footer-bottom{padding:2rem 0 8rem;}
  .footer-top{grid-template-columns:1fr;}
  .footer-brand-col{grid-column:auto;}
  .audio-control{bottom:1.5rem;right:1.5rem;}
}
