/* ═══════════════════════════════════════
   K&S GOURMET — styles.css
   ═══════════════════════════════════════ */
 
/* ── Variables ── */
:root {
  --cream:       #FAF7F2;
  --cream2:      #F5EFE4;
  --beige:       #E8DDCA;
  --beige-mid:   #D5C4AA;
  --gold:        #B8922A;
  --gold2:       #D4A84B;
  --gold-light:  #EDD890;
  --brown:       #5C3D1E;
  --brown2:      #3A2210;
  --warm:        #8B6040;
  --text:        #2A1A0A;
  --text2:       #7A6050;
  --white:       #FFFDF8;
  --green:       #2D4A2A;
  --red-accent:  #8B1A1A;
  --wa-green:    #25D366;
}
 
/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }
 
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream2); }
::-webkit-scrollbar-thumb { background: var(--gold2); border-radius: 3px; }
 
/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4%; height: 72px;
  background: rgba(250,247,242,0.97);
  border-bottom: 1px solid rgba(184,146,42,0.15);
  transition: all .4s;
}
nav.scrolled { height: 62px; box-shadow: 0 2px 30px rgba(90,60,30,.08); }
 
.logo { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.logo-circle {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--gold2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; background: var(--brown2);
}
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; letter-spacing: .03em; color: var(--brown2); line-height: 1; }
.logo-text span { color: var(--gold); }
.logo-text-light { color: var(--cream2) !important; }
.logo-sub       { font-size: .55rem; letter-spacing: .25em; text-transform: uppercase; color: var(--warm); font-family: 'DM Sans', sans-serif; display: block; margin-top: 2px; }
.logo-sub-light { color: rgba(250,247,242,.4) !important; }
 
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text2); text-decoration: none; transition: color .3s; font-weight: 400;
}
.nav-links a:hover { color: var(--gold); }
 
.btn-nav-wa {
  background: var(--green) !important; color: #fff !important;
  padding: .55rem 1.3rem; border-radius: 30px; font-weight: 500 !important;
  display: flex; align-items: center; gap: .4rem;
  transition: opacity .3s !important;
}
.btn-nav-wa:hover { opacity: .85 !important; }
 
/* Hamburger */
.ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.ham span { width: 22px; height: 1.5px; background: var(--brown); display: block; transition: .3s; }
 
/* Mobile Menu */
.mob-menu {
  display: none; position: fixed; top: 72px; left: 0; width: 100%;
  background: var(--white); z-index: 999;
  border-top: 2px solid var(--gold2);
  flex-direction: column; padding: 1.5rem 6%; gap: 1.2rem;
}
.mob-menu.open { display: flex; animation: slideDown .3s ease; }
.mob-menu a {
  font-size: .85rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text2); text-decoration: none;
  padding-bottom: .8rem; border-bottom: 1px solid var(--cream2);
}
.mob-wa { color: var(--green) !important; font-weight: 500; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
 
/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero-section { min-height: 100vh; display: flex; flex-direction: column; overflow: hidden; padding-top: 72px; }
.hero-split   { display: grid; grid-template-columns: 1fr 1fr; flex: 1; min-height: calc(100vh - 72px); }
 
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 5% 5rem 6%; background: var(--cream); position: relative;
}
.hero-left::after {
  content: ''; position: absolute; right: -1px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold2), transparent);
}
 
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
}
.hero-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold2); }
 
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 400; line-height: 1.1; color: var(--brown2); margin-bottom: 1.5rem;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
 
.hero-p { font-size: .98rem; color: var(--text2); line-height: 1.9; font-weight: 300; max-width: 440px; margin-bottom: 2.5rem; }
 
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-main {
  background: var(--brown2); color: #fff; padding: .9rem 2rem; border-radius: 2px;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; font-weight: 500; transition: background .3s;
  display: flex; align-items: center; gap: .6rem;
}
.cta-main:hover { background: var(--brown); }
.cta-green      { background: var(--green) !important; }
.cta-green:hover{ background: #1e3a1c !important; }
 
.hero-badges { display: flex; gap: 1.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--beige); flex-wrap: wrap; }
.badge { display: flex; align-items: center; gap: .5rem; }
.badge i    { color: var(--gold2); font-size: .85rem; }
.badge span { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text2); }
 
.hero-right {
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, #5C3D1E 0%, #8B6040 45%, #B8922A 80%, #DFC07A 100%);
  min-height: 500px;
}
.hero-img{
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
}
.hero-right-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
 
.hero-badge-float {
  position: absolute; bottom: 2rem; left: 2rem;
  background: rgba(250,247,242,.96); border: 1px solid var(--beige);
  border-radius: 4px; padding: 1rem 1.2rem;
  display: flex; align-items: center; gap: .8rem;
}
.hbf-icon { width: 36px; height: 36px; background: var(--gold2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .85rem; flex-shrink: 0; }
.hbf-text { font-size: .72rem; line-height: 1.5; color: var(--text2); }
.hbf-text strong { color: var(--brown2); font-size: .82rem; display: block; }
 
/* ═══════════════════════════════════════
   TRUST STRIP
   ═══════════════════════════════════════ */
.trust-strip {
  background: var(--brown2); padding: 1.2rem 4%;
  display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: .6rem; color: rgba(250,247,242,.6); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.trust-item i { color: var(--gold2); font-size: .85rem; }
 
/* ═══════════════════════════════════════
   SHARED SECTION STYLES
   ═══════════════════════════════════════ */
section { padding: 6rem 4%; }
 
.section-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.section-label  { display: inline-block; font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; }
.section-h2     { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; color: var(--brown2); line-height: 1.15; margin-bottom: 1rem; }
.section-h2 em  { font-style: italic; color: var(--gold); }
.section-p      { font-size: .95rem; color: var(--text2); line-height: 1.9; font-weight: 300; }
.section-p.mt   { margin-top: 1rem; }
 
.ornament { display: flex; align-items: center; gap: .8rem; margin: 1.2rem 0; }
.ornament span { flex: 1; height: 1px; background: var(--beige); }
.ornament i    { color: var(--gold2); font-size: .65rem; }
 
/* ═══════════════════════════════════════
   PRODUCTS
   ═══════════════════════════════════════ */
#products { background: var(--white); }
 
.products-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1200px; margin: 0 auto;
}
 
.prod-card {
  position: relative; overflow: hidden; border-radius: 4px;
  cursor: pointer; transition: transform .4s cubic-bezier(.25,.8,.25,1), box-shadow .4s;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: 0 25px 60px rgba(92,61,30,.18); }
 
.prod-card-inner {
  height: 600px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
 
.prod-img {
  height: 600px; object-fit: cover; position: relative; z-index: 1;
}
 
.prod-img1{
  height: 700px; object-fit: cover; position: relative; z-index: 1;
}
 
.prod-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,15,5,.88) 0%, rgba(30,15,5,.15) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.8rem; z-index: 2;
}
 
.prod-tag {
  position: absolute; top: 1.2rem; left: 1.2rem; z-index: 3;
  background: var(--gold2); color: #fff;
  font-size: .62rem; letter-spacing: .15em; text-transform: uppercase;
  padding: .28rem .8rem; border-radius: 20px; font-weight: 500;
}
.tag-brown { background: var(--brown)  !important; }
.tag-warm  { background: var(--warm)   !important; }
.tag-green { background: var(--green)  !important; }
.tag-red   { background: var(--red-accent) !important; }
 
.prod-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #fff; font-weight: 500; margin-bottom: .4rem; line-height: 1.2; }
.prod-card:nth-child(1) .prod-name,
.prod-card:nth-child(5) .prod-name { font-size: 1.5rem; }
.prod-desc { font-size: .8rem; color: rgba(250,247,242,.72); line-height: 1.6; margin-bottom: 1rem; font-weight: 300; }
 
.prod-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.14); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.28); color: #fff;
  padding: .55rem 1.1rem; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; transition: background .3s;
  font-family: 'DM Sans', sans-serif; width: fit-content;
}
.prod-btn:hover { background: rgba(255,255,255,.28); }
 
/* ═══════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════ */
.about-section { background: var(--cream2); padding: 0; overflow: hidden; }
 
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
 
.about-img {
  height: 100%; object-fit: cover;
}
 
.about-img-col {
  position: relative; overflow: hidden;
  min-height: 500px;
}
.about-img-col-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.about-deco { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, var(--gold), var(--gold2), var(--gold)); }
 
.about-text-col { display: flex; flex-direction: column; justify-content: center; padding: 5rem 6% 5rem 5%; }
.about-text-col .section-p { max-width: 480px; }
 
.about-pills { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.8rem 0; }
.pill {
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(184,146,42,.35);
  padding: .38rem .9rem; border-radius: 20px;
}
 
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 2.5rem; border: 1px solid var(--beige); border-radius: 4px; overflow: hidden; }
.astat   { padding: 1.5rem 1rem; text-align: center; background: var(--white); }
.astat-n { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); font-weight: 400; display: block; }
.astat-l { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text2); }
 
/* ═══════════════════════════════════════
   EVENTS — vacío, sin espacio
   ═══════════════════════════════════════ */
.events-section { padding: 0 !important; margin: 0 !important; }
 
/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
#testimonials { background: var(--cream); }
 
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
 
.test-card {
  background: var(--white); border-radius: 4px; padding: 2.2rem;
  border: 1px solid var(--beige);
  transition: transform .35s, box-shadow .35s; position: relative;
}
.test-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(92,61,30,.1); }
 
.quote-mark { font-family: 'Playfair Display', serif; font-size: 4rem; color: var(--gold2); opacity: .2; line-height: .8; margin-bottom: .5rem; }
.test-stars  { color: var(--gold2); font-size: .8rem; margin-bottom: 1rem; letter-spacing: .1em; }
.test-body   { font-size: .9rem; color: var(--text2); line-height: 1.85; font-style: italic; font-weight: 300; margin-bottom: 1.5rem; }
 
.test-author { display: flex; align-items: center; gap: .9rem; }
.test-av { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #fff; font-weight: 500; }
.av1 { background: linear-gradient(135deg, #B8922A, #7A5C3E); }
.av2 { background: linear-gradient(135deg, #5C3D1E, #8B6040); }
.av3 { background: linear-gradient(135deg, #2D4A2A, #B8922A); }
.test-nm { font-weight: 500; font-size: .88rem; color: var(--brown2); }
.test-ev { font-size: .72rem; color: var(--text2); letter-spacing: .05em; }
 
/* ═══════════════════════════════════════
   LOCATION — REDISEÑADO
   ═══════════════════════════════════════ */
.location-section { background: var(--cream2); padding: 0; overflow: hidden; }
 
.ubi-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
 
/* ── LEFT: Info Panel ── */
.ubi-info {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 5% 5rem 6%; position: relative; z-index: 1;
}
 
.ubi-items { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.4rem; }
 
.ubi-item {
  display: flex; align-items: flex-start; gap: 1rem;
  transition: transform .25s;
}
.ubi-item:hover { transform: translateX(4px); }
 
.ubi-ic {
  width: 42px; height: 42px; border-radius: 50%;
  flex-shrink: 0; background: var(--brown2); color: var(--gold2);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; margin-top: .1rem; transition: background .25s;
}
.ubi-item:hover .ubi-ic { background: var(--gold2); color: var(--white); }
 
.ubi-txt h4 { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .25rem; }
.ubi-txt p  { font-size: .88rem; color: var(--text2); line-height: 1.65; font-weight: 300; }
.ubi-txt a  { color: var(--text2); text-decoration: none; transition: color .25s; }
.ubi-txt a:hover { color: var(--gold); }
 
/* ── RIGHT: Decorative Visual Panel ── */
.ubi-visual {
  position: relative; overflow: hidden;
  background: var(--brown2);
  display: flex; align-items: stretch;
}
 
.ubi-visual-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(184,146,42,.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(212,168,75,.1) 0%, transparent 60%),
    linear-gradient(160deg, #3A2210 0%, #5C3D1E 50%, #3A2210 100%);
}
.ubi-visual-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px; opacity: .5; pointer-events: none;
}
 
.ubi-visual-inner {
  position: relative; z-index: 2;
  width: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 4rem 8%; gap: 2.5rem;
}
 
/* Tagline */
.ubi-tagline { text-align: center; }
.ubi-tagline-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-style: italic; color: var(--cream2);
  line-height: 1.5; opacity: .88;
}
.ubi-tagline-quote em { color: var(--gold2); font-style: italic; }
.ubi-tagline-rule { width: 60px; height: 1px; background: rgba(212,168,75,.4); margin: 1.2rem auto .8rem; }
.ubi-tagline-sub { font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(250,247,242,.35); }
 
/* Divider */
.ubi-divider { width: 100%; height: 1px; background: rgba(212,168,75,.12); }
 
/* Service Cards */
.ubi-service-cards { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; width: 100%; }
 
.ubi-scard {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(212,168,75,.15);
  border-radius: 4px; padding: 1.4rem 1.2rem;
  text-align: center;
  transition: background .3s, border-color .3s, transform .3s;
  cursor: default;
}
.ubi-scard:hover {
  background: rgba(212,168,75,.1);
  border-color: rgba(212,168,75,.35);
  transform: translateY(-3px);
}
.ubi-scard-icon { font-size: 1.3rem; color: var(--gold2); margin-bottom: .6rem; display: block; }
.ubi-scard-title { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cream2); font-weight: 500; display: block; margin-bottom: .25rem; }
.ubi-scard-desc  { font-size: .72rem; color: rgba(250,247,242,.4); line-height: 1.5; font-weight: 300; }
 
/* ═══════════════════════════════════════
   CONTACT / CTA
   ═══════════════════════════════════════ */
.contact-section { background: var(--cream); padding: 7rem 4%; text-align: center; position: relative; overflow: hidden; }
.cta-bg-text {
  position: absolute; font-family: 'Playfair Display', serif;
  font-size: 18vw; font-weight: 700;
  color: rgba(184,146,42,.05);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  white-space: nowrap; pointer-events: none; line-height: 1;
}
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-p { max-width: 500px; margin: 0 auto 2.5rem; }
.ornament-center { justify-content: center; }
.oc-line { flex: none; width: 60px; height: 1px; background: var(--beige); }
 
.cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.cta-wa {
  display: inline-flex; align-items: center; gap: .7rem;
  background: var(--wa-green); color: #fff;
  padding: 1rem 2.2rem; border-radius: 2px; font-weight: 500;
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; transition: opacity .3s;
  font-family: 'DM Sans', sans-serif;
}
.cta-wa:hover { opacity: .88; }
.cta-ig {
  display: inline-flex; align-items: center; gap: .7rem;
  background: transparent; color: var(--brown2);
  padding: 1rem 2.2rem; border-radius: 2px; font-weight: 400;
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; transition: all .3s;
  border: 1px solid var(--beige); font-family: 'DM Sans', sans-serif;
}
.cta-ig:hover { border-color: var(--gold2); color: var(--gold); }
 
.socials { display: flex; gap: .8rem; justify-content: center; }
.soc-ic {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--beige);
  display: flex; align-items: center; justify-content: center;
  color: var(--text2); font-size: .95rem; text-decoration: none; transition: all .3s;
}
.soc-ic:hover { background: var(--brown2); border-color: var(--brown2); color: var(--gold2); }
 
/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer { background: var(--brown2); padding: 4rem 4% 2rem; border-top: 3px solid var(--gold); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 3rem; }
.ft-brand .logo { margin-bottom: 1.2rem; }
.ft-desc { font-size: .85rem; color: rgba(250,247,242,.45); line-height: 1.8; font-weight: 300; max-width: 300px; }
.ft-col h5 { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold2); margin-bottom: 1.2rem; }
.ft-col ul { list-style: none; }
.ft-col ul li { margin-bottom: .6rem; }
.ft-col ul li a { font-size: .85rem; color: rgba(250,247,242,.45); text-decoration: none; transition: color .3s; }
.ft-col ul li a:hover { color: var(--gold2); }
 
.footer-bar {
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1200px; margin: 0 auto; flex-wrap: wrap; gap: .8rem;
}
.footer-bar p { font-size: .75rem; color: rgba(250,247,242,.3); }
.footer-socs { display: flex; gap: .9rem; }
.footer-socs a { color: rgba(250,247,242,.3); font-size: .85rem; transition: color .3s; }
.footer-socs a:hover { color: var(--gold2); }
 
/* ═══════════════════════════════════════
   FLOATING BUTTONS
   ═══════════════════════════════════════ */
.float-btns {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 999;
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
}
 
.wa-float,
.ig-float {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.45rem; text-decoration: none;
  transition: transform .25s, box-shadow .25s;
}
.wa-float:hover,
.ig-float:hover { transform: scale(1.1); }
 
.wa-float {
  background: var(--wa-green);
  box-shadow: 0 4px 18px rgba(37,211,102,.45);
  animation: waPulse 2.5s infinite;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,.7); }
}
 
.ig-float {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 4px 18px rgba(214,36,159,.4);
  animation: igPulse 2.5s infinite 1.2s;
}
@keyframes igPulse {
  0%,100% { box-shadow: 0 4px 18px rgba(214,36,159,.4); }
  50%      { box-shadow: 0 4px 30px rgba(214,36,159,.65); }
}
 
/* ═══════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════ */
.reveal          { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.in       { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .22s; }
.reveal-d3 { transition-delay: .32s; }
 
/* Fallback: si JS no carga, mostrar todo */
.no-js .reveal { opacity: 1; transform: none; }
 
/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1000px) {
  .hero-split         { grid-template-columns: 1fr; }
  .hero-right         { min-height: 340px; }
  .hero-left::after   { display: none; }
  .products-bento     { grid-template-columns: 1fr 1fr; }
  .about-wrap         { grid-template-columns: 1fr; }
  .about-img-col      { min-height: 300px; }
  .test-grid          { grid-template-columns: 1fr 1fr; }
  .ubi-wrap           { grid-template-columns: 1fr; }
  .ubi-visual         { min-height: 400px; }
  .footer-top         { grid-template-columns: 1fr 1fr; }
  .ft-brand           { grid-column: 1 / 3; }
  .nav-links          { display: none; }
  .ham                { display: flex; }
}
 
@media (max-width: 640px) {
  section { padding: 4rem 4%; }
  .hero-h1            { font-size: 2.2rem; }
  .products-bento     { grid-template-columns: 1fr; }
  .test-grid          { grid-template-columns: 1fr; }
  .trust-strip        { gap: 1.2rem; }
  .footer-top         { grid-template-columns: 1fr; }
  .ft-brand           { grid-column: 1; }
  .footer-bar         { justify-content: center; text-align: center; }
  .hero-badges        { gap: .8rem; }
  .ubi-info           { padding: 3rem 5%; }
  .ubi-visual-inner   { padding: 3rem 6%; }
  .ubi-service-cards  { grid-template-columns: 1fr; }
  .about-stats        { grid-template-columns: repeat(3, 1fr); }
}