/* ============================================================
   CARLUCHO BARBER SHOP — Estilos
   Paleta: Blanco · Negro · Gris plomo · Vinotinto ahumado
   Estructura inspirada en barberiarand.com (premium, claro)
   ============================================================ */
:root {
  --white: #ffffff;
  --paper: #f4f2ef;          /* off-white cálido */
  --paper-2: #eae7e2;        /* gris papel */
  --ink: #14110f;            /* negro tinta */
  --ink-2: #1d1a18;          /* negro suave */
  --plomo: #6b6e73;          /* gris plomo (texto secundario) */
  --plomo-dark: #43464b;     /* plomo oscuro */
  --plomo-light: #9a9da2;    /* plomo claro */
  --wine: #7a343d;           /* vinotinto ahumado */
  --wine-deep: #56242b;      /* vinotinto profundo */
  --wine-light: #9c4a54;     /* vinotinto claro */
  --wine-glow: rgba(122, 52, 61, 0.30);
  --line: rgba(20, 17, 15, 0.12);
  --line-2: rgba(20, 17, 15, 0.08);
  --max: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper); color: var(--ink);
  font-family: 'Inter', sans-serif; line-height: 1.7;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
::selection { background: var(--wine); color: #fff; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--wine), var(--wine-deep)); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--wine-light); }

h1, h2, h3, .display { font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px; }
section { position: relative; }

/* Decoración */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.barber-stripe {
  height: 5px; width: 100%;
  background: repeating-linear-gradient(45deg, var(--wine) 0 16px, var(--ink) 16px 32px, var(--wine-light) 32px 48px, var(--ink) 48px 64px);
  background-size: 200% 100%; animation: stripe 22s linear infinite;
}
@keyframes stripe { to { background-position: 200% 0; } }

/* ============ NAV ============ */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  transition: all .4s ease; padding: 22px 0;
}
nav.scrolled {
  background: rgba(255,255,255,0.88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line); padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 13px; }
.logo-img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; transition: opacity .35s ease; }
.logo-img.on-dark { position: absolute; opacity: 1; }
.logo-img.on-light { position: absolute; opacity: 0; }
.logo-mark { position: relative; width: 46px; height: 46px; }
nav.scrolled .logo-img.on-dark { opacity: 0; }
nav.scrolled .logo-img.on-light { opacity: 1; }
.logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 27px; line-height: 1; color: #fff; transition: color .35s ease; }
.logo-text span { color: var(--wine-light); }
nav.scrolled .logo-text { color: var(--ink); }
nav.scrolled .logo-text span { color: var(--wine); }
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a {
  font-family: 'Oswald', sans-serif; font-weight: 400; font-size: 14px;
  text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.82);
  position: relative; transition: color .3s;
}
nav.scrolled .nav-links a { color: var(--plomo); }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--wine-light); transition: width .3s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
nav.scrolled .nav-links a:hover, nav.scrolled .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 13px;
  padding: 11px 24px; border: 1px solid rgba(255,255,255,.6); color: #fff !important; border-radius: 2px; transition: all .3s;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--wine); border-color: var(--wine); color: #fff !important; box-shadow: 0 0 22px var(--wine-glow); }
nav.scrolled .nav-cta { border-color: var(--wine); color: var(--wine) !important; }
nav.scrolled .nav-cta:hover { background: var(--wine); color: #fff !important; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.burger span { width: 26px; height: 2px; background: #fff; transition: .3s; }
nav.scrolled .burger span { background: var(--ink); }

/* ============ BUTTONS ============ */
.btn {
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 2px; font-size: 15px;
  padding: 16px 38px; border-radius: 2px; cursor: pointer; transition: all .35s ease;
  display: inline-flex; align-items: center; gap: 10px; border: 1px solid transparent;
}
.btn-primary { background: linear-gradient(135deg, var(--wine), var(--wine-deep)); color: #fff; box-shadow: 0 10px 30px var(--wine-glow); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 42px var(--wine-glow); }
.btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-dark { border-color: var(--ink); color: var(--ink); }
.btn-dark:hover { background: var(--ink); color: #fff; }
.btn-wa { background: #25d366; color: #093d20; }
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 12px 34px rgba(37,211,102,.35); }

/* ============ HERO ============ */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; padding: 130px 0 150px; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.35) contrast(1.05) brightness(.85); }
.hero-video { display: block; background: var(--ink); }
.hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,9,8,.72) 0%, rgba(10,9,8,.55) 45%, rgba(10,9,8,.82) 100%); }
.hero-inner { position: relative; z-index: 2; max-width: 900px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 26px; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 4px; font-size: 13px; color: #e7d6d8; }
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 38px; height: 1px; background: var(--wine-light); }
.hero h1 { font-size: clamp(60px, 11vw, 150px); line-height: 0.86; margin-bottom: 26px; letter-spacing: 2px; color: #fff; }
.hero h1 .filled { display: block; color: #fff; }
.hero h1 .accent { color: transparent; -webkit-text-stroke: 1.5px var(--wine-light); display: block; }
.hero-sub { font-size: clamp(16px, 2vw, 21px); color: #e4e0dc; max-width: 600px; margin: 0 auto 40px; font-weight: 300; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.hero-badges { display: flex; gap: 46px; margin-top: 58px; flex-wrap: wrap; justify-content: center; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.18); }
.hero-badge b { font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: var(--wine-light); line-height: 1; display: block; }
.hero-badge span { font-size: 12px; color: #cbc7c3; text-transform: uppercase; letter-spacing: 1.5px; }
.scroll-hint { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 2; font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 2px; color: #cbc7c3; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 6px; pointer-events: none; }
.scroll-hint .line { width: 1px; height: 34px; background: linear-gradient(var(--wine-light), transparent); animation: hintPulse 2s ease infinite; }
/* En pantallas bajas o móvil no cabe: se oculta para no pisar los badges */
@media (max-height: 720px), (max-width: 640px) { .scroll-hint { display: none; } }
@keyframes hintPulse { 0%,100%{opacity:.3;transform:scaleY(.6)} 50%{opacity:1;transform:scaleY(1)} }

/* ============ SECTION HEADING ============ */
.sec { padding: 130px 0; }
.sec.dark { background: var(--ink); color: var(--paper); }
.sec.paper2 { background: var(--paper-2); }
.sec-head { margin-bottom: 60px; }
.sec-head.center { text-align: center; }
.sec-tag { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 4px; font-size: 13px; color: var(--wine); margin-bottom: 14px; display: block; }
.sec.dark .sec-tag { color: var(--wine-light); }
.sec-title { font-size: clamp(44px, 6vw, 84px); line-height: 0.94; color: var(--ink); }
.sec.dark .sec-title { color: #fff; }
.sec-title .thin { color: var(--plomo); }
.sec.dark .sec-title .thin { color: var(--plomo-light); }

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 76px; align-items: center; }
.about-visual { position: relative; aspect-ratio: 4/5; border-radius: 6px; overflow: hidden; background: var(--paper-2); border: 1px solid var(--line); display: grid; place-items: center; box-shadow: 0 30px 70px rgba(20,17,15,.16); }
.about-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.about-visual .mono { font-family: 'Bebas Neue', sans-serif; font-size: clamp(80px,14vw,160px); color: rgba(122,52,61,0.20); }
.about-visual .frame-tag { position: absolute; bottom: 18px; left: 18px; z-index: 3; background: rgba(20,17,15,.78); color: #fff; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 2px; font-size: 12px; padding: 8px 16px; border-radius: 3px; backdrop-filter: blur(6px); }
.about-text p { color: var(--plomo); margin-bottom: 22px; font-weight: 300; font-size: 17px; }
.about-text .lead { color: var(--ink); font-size: 22px; font-weight: 400; line-height: 1.5; }
.about-sign { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--wine); margin-top: 12px; letter-spacing: 2px; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.stat { padding: 28px 20px; background: var(--white); border: 1px solid var(--line); border-radius: 6px; text-align: center; transition: all .35s; }
.stat:hover { border-color: var(--wine); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(20,17,15,.10); }
.stat b { font-family: 'Bebas Neue', sans-serif; font-size: 58px; color: var(--wine); line-height: 1; display: block; }
.stat span { font-family: 'Oswald', sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--plomo); }

/* ============ BEST OF GEORGIA (destacado, oscuro) ============ */
.bog { padding: 130px 0; position: relative; overflow: hidden; background: var(--ink); }
.bog::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 78% 25%, var(--wine-glow), transparent 55%); }
.bog .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.bog-badge { display: inline-flex; align-items: center; gap: 14px; padding: 12px 22px; border: 1px solid var(--wine-light); border-radius: 40px; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 3px; font-size: 13px; color: #e7d6d8; margin-bottom: 26px; }
.bog h2 { font-size: clamp(50px, 7vw, 100px); line-height: .88; margin-bottom: 22px; color: #fff; }
.bog h2 .year { color: var(--wine-light); }
.bog p { color: #d9d5d1; font-weight: 300; font-size: 18px; margin-bottom: 20px; max-width: 520px; }
.bog p b { color: var(--wine-light); }
.bog-photo { position: relative; border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 40px 90px rgba(0,0,0,.5); aspect-ratio: 4/5; background: #0c0b0a; }
.bog-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* ============ AWARDS ROW ============ */
.award-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.award { text-align: center; padding: 46px 26px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); transition: all .4s; }
.award:hover { border-color: var(--wine); transform: translateY(-6px); box-shadow: 0 24px 54px rgba(20,17,15,.12); }
.award-icon { font-size: 44px; margin-bottom: 14px; }
.award .year { font-family: 'Bebas Neue', sans-serif; font-size: 46px; color: var(--ink); line-height: 1; }
.award h3 { font-size: 27px; color: var(--wine); margin: 6px 0; }
.award p { font-family: 'Oswald', sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--plomo); }

/* ============ SERVICES ============ */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.svc { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 42px; position: relative; overflow: hidden; transition: all .4s ease; }
.svc::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: linear-gradient(var(--wine), transparent); transition: height .4s; }
.svc:hover { transform: translateY(-6px); border-color: var(--wine); box-shadow: 0 24px 54px rgba(20,17,15,.12); }
.svc:hover::before { height: 100%; }
.svc-icon { font-size: 34px; margin-bottom: 20px; }
.svc h3 { font-size: 32px; margin-bottom: 8px; color: var(--ink); }
.svc p { color: var(--plomo); font-size: 15px; font-weight: 300; margin-bottom: 22px; min-height: 44px; }
.svc-foot { display: flex; align-items: baseline; justify-content: space-between; border-top: 1px dashed var(--line); padding-top: 18px; }
.svc-price { font-family: 'Bebas Neue', sans-serif; font-size: 42px; color: var(--wine); line-height: 1; }
.svc-price small { font-size: 16px; color: var(--plomo); }
.svc-time { font-family: 'Oswald', sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--plomo); }

/* Servicio destacado (con imagen) */
.svc-featured { grid-column: 1 / -1; padding: 0; display: grid; grid-template-columns: 0.85fr 1fr; gap: 0; overflow: hidden; }
.svc-feat-img { position: relative; min-height: 320px; background: var(--paper-2); }
.svc-feat-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.svc-featured:hover .svc-feat-img img { transform: scale(1.05); }
.svc-feat-body { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.svc-feat-tag { display: inline-block; align-self: flex-start; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 2px; font-size: 11px; padding: 6px 14px; background: var(--wine); color: #fff; border-radius: 40px; margin-bottom: 16px; }
.svc-feat-body h3 { font-size: 38px; margin-bottom: 10px; }
.svc-feat-body .svc-price { font-size: 34px; }

/* ============ PRODUCTS ============ */
.mock-note { background: rgba(122,52,61,.08); border: 1px dashed var(--wine); border-radius: 6px; padding: 14px 20px; font-size: 14px; color: var(--wine); text-align: center; margin-bottom: 42px; }
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.prod { background: var(--white); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; transition: all .4s; }
.prod:hover { transform: translateY(-6px); border-color: var(--wine); box-shadow: 0 24px 54px rgba(20,17,15,.12); }
.prod-img { aspect-ratio: 1; overflow: hidden; position: relative; background: var(--paper-2); }
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.prod:hover .prod-img img { transform: scale(1.06); }
.prod-tag { position: absolute; top: 12px; left: 12px; z-index: 2; font-family: 'Oswald', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; padding: 5px 12px; background: var(--wine); color: #fff; border-radius: 40px; }
.prod-body { padding: 26px; }
.prod-body h3 { font-size: 27px; margin-bottom: 4px; letter-spacing: .5px; color: var(--ink); }
.prod-body p { color: var(--plomo); font-size: 14px; font-weight: 300; margin-bottom: 18px; min-height: 40px; }
.prod-foot { display: flex; align-items: center; justify-content: space-between; }
.prod-price { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--wine); }
.prod-buy { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 12px; padding: 9px 18px; border: 1px solid var(--wine); color: var(--wine); border-radius: 3px; transition: all .3s; }
.prod-buy:hover { background: var(--wine); color: #fff; }

/* ============ GALLERY ============ */
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 16px; }
.gal-item { border-radius: 6px; overflow: hidden; position: relative; border: 1px solid var(--line); background: var(--paper-2); }
.gal-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; transition: transform .6s ease, filter .6s ease; filter: grayscale(.2); }
.gal-item:hover img { transform: scale(1.07); filter: grayscale(0); }
.gal-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gal-item:nth-child(4) { grid-row: span 2; }
.gal-item:nth-child(6) { grid-column: span 2; }

/* ============ CONTACT / BOOKING ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.cinfo-item { display: flex; gap: 18px; margin-bottom: 26px; align-items: flex-start; }
.cinfo-item .ic { width: 46px; height: 46px; min-width: 46px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--wine); color: var(--wine); font-size: 18px; }
.cinfo-item b { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 13px; color: var(--plomo); display: block; margin-bottom: 3px; }
.cinfo-item p { font-size: 17px; color: var(--ink); }
.cinfo-item a:hover { color: var(--wine); }
.socials { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.socials a { padding: 10px 20px; border: 1px solid var(--line); border-radius: 3px; font-family: 'Oswald', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 8px; transition: all .3s; color: var(--plomo-dark); }
.socials a:hover { border-color: var(--wine); color: var(--wine); transform: translateY(-2px); }
form.card { background: var(--white); padding: 42px; border-radius: 10px; border: 1px solid var(--line); box-shadow: 0 24px 60px rgba(20,17,15,.08); }
.reserve-embed { background: var(--white); border-radius: 10px; border: 1px solid var(--line); box-shadow: 0 24px 60px rgba(20,17,15,.08); overflow: hidden; display: flex; flex-direction: column; }
.reserve-embed-head { display: flex; align-items: center; gap: 16px; padding: 26px 30px; border-bottom: 1px solid var(--line); background: linear-gradient(135deg, var(--ink), var(--ink-2)); }
.reserve-embed-head .reserve-ic { font-size: 34px; line-height: 1; }
.reserve-embed-head h3 { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: #fff; line-height: 1; letter-spacing: 1px; margin-bottom: 4px; }
.reserve-embed-head p { color: var(--plomo-light); font-size: 14px; font-weight: 300; }
.reserve-iframe { display: block; width: 100%; height: 600px; border: 0; background: #fff; }
.reserve-alt { padding: 18px 30px; font-size: 14px; color: var(--plomo); text-align: center; border-top: 1px solid var(--line); }
.reserve-alt a { color: var(--wine); font-weight: 500; }
.reserve-alt a:hover { text-decoration: underline; }
.field { margin-bottom: 20px; }
.field label { font-family: 'Oswald', sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--plomo); display: block; margin-bottom: 8px; }
.field input, .field textarea, .field select { width: 100%; padding: 14px 16px; background: var(--paper); border: 1px solid var(--line); border-radius: 4px; color: var(--ink); font-family: 'Inter', sans-serif; font-size: 15px; transition: border-color .3s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--wine); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
form.card .btn-wa { width: 100%; justify-content: center; margin-top: 6px; }
.map-embed { width: 100%; height: 320px; border: 1px solid var(--line); border-radius: 8px; margin-top: 30px; filter: grayscale(.3) contrast(1.02); }

/* ============ FOOTER ============ */
footer { background: var(--ink); color: var(--paper); padding: 70px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.foot-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.foot-brand img { width: 62px; height: 62px; border-radius: 50%; }
.foot-logo { font-family: 'Bebas Neue', sans-serif; font-size: 34px; line-height: 1; }
.foot-logo span { color: var(--wine-light); }
.foot-col p { color: var(--plomo-light); font-size: 14px; margin-bottom: 10px; }
.foot-col h4 { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 2px; font-size: 13px; color: var(--wine-light); margin-bottom: 16px; }
.foot-col a { display: block; color: var(--plomo-light); font-size: 14px; margin-bottom: 10px; transition: color .3s; }
.foot-col a:hover { color: #fff; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; text-align: center; color: var(--plomo-light); font-size: 13px; }

/* ============ WHATSAPP FLOAT ============ */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25d366; display: grid; place-items: center; font-size: 28px; box-shadow: 0 8px 24px rgba(37,211,102,.4); transition: transform .3s; }
.wa-float:hover { transform: scale(1.1); }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s cubic-bezier(.16,.8,.3,1), transform .9s cubic-bezier(.16,.8,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-50px); transition: opacity .9s ease, transform .9s ease; }
.reveal-l.in { opacity: 1; transform: none; }
.reveal-r { opacity: 0; transform: translateX(50px); transition: opacity .9s ease, transform .9s ease; }
.reveal-r.in { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(.9); transition: opacity .8s ease, transform .8s cubic-bezier(.16,.8,.3,1); }
.reveal-scale.in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .nav-links.open { display: flex; position: absolute; top: 100%; left: 0; width: 100%; flex-direction: column; background: rgba(255,255,255,.98); padding: 24px; gap: 22px; border-bottom: 1px solid var(--line); }
  .nav-links.open a { color: var(--ink); }
  .about-grid, .bog .wrap, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .bog-photo { max-width: 440px; margin: 0 auto; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-featured { grid-template-columns: 1fr; }
  .svc-feat-img { min-height: 260px; }
  .svc-feat-body { padding: 32px; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .award-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gal-item:nth-child(1) { grid-column: span 2; }
}
@media (max-width: 640px) {
  /* Sin scroll-hint no hace falta reservar hueco abajo */
  .hero { padding: 120px 0 70px; }
  .hero-badges { margin-top: 38px; padding-top: 26px; gap: 28px; }
}
@media (max-width: 520px) {
  .stats, .prod-grid, .grid-2 { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr; }
  .gal-item:nth-child(1), .gal-item:nth-child(4), .gal-item:nth-child(6) { grid-column: auto; grid-row: auto; }
  .svc, form.card { padding: 30px; }
  .hero-badges { gap: 30px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal, .reveal-l, .reveal-r, .reveal-scale { opacity: 1; transform: none; transition: none; }
}
