/* ===== Variables ===== */
:root {
  --wine: #8c2452;
  --wine-dark: #6e1a40;
  --wine-light: #b23a6d;
  --magenta: #e0186e;
  --gold: #c6a15b;
  --gold-light: #e8d5a3;
  --cream: #faf3e6;
  --cream-dark: #f1e2c8;
  --ink: #2a1b22;
  --black: #120e13;
  --navy: #17223b;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(43, 20, 30, 0.15);
  --radius: 18px;
  --font-body: 'Poppins', sans-serif;
  --font-script: 'Dancing Script', cursive;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--wine);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}

.section-title span { color: var(--wine); font-family: var(--font-script); font-weight: 700; font-size: 1.15em; }

.section-desc {
  max-width: 620px;
  color: #6b5a62;
  font-size: 1rem;
  line-height: 1.7;
}

.section-head { text-align: center; margin-bottom: 48px; }
.section-head .section-desc { margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--magenta), var(--wine));
  color: var(--white);
  box-shadow: 0 12px 24px rgba(224, 24, 110, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--wine);
  border: 2px solid var(--wine);
}
.btn-outline:hover { background: var(--wine); color: var(--white); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--wine-dark);
  box-shadow: 0 12px 24px rgba(198, 161, 91, 0.35);
}

.icon-svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.7; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 243, 230, 0.97);
  border-bottom: 1px solid rgba(140, 36, 82, 0.08);
  transition: background 0.3s ease;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  font-family: var(--font-script);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--wine) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.logo-sub {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--wine);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 18px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--wine);
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at 85% 10%, rgba(198, 161, 91, 0.18), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(224, 24, 110, 0.08), transparent 40%),
    var(--cream);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.hero-crown {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-script);
  font-size: clamp(3.2rem, 7vw, 5.4rem);
  line-height: 0.95;
  background: linear-gradient(135deg, var(--gold), var(--wine) 65%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}

.hero-subtitle {
  font-family: var(--font-script);
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  color: var(--magenta);
  margin-bottom: 8px;
}

.hero-kicker {
  font-size: 0.85rem;
  letter-spacing: 4px;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 26px;
}

.hero-tagline {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 16px;
}
.hero-tagline em { color: var(--wine); font-style: normal; }

.hero-text {
  color: #6b5a62;
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 34px;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stats div strong {
  display: block;
  font-size: 1.6rem;
  color: var(--wine);
  font-weight: 700;
}
.hero-stats div span { font-size: 0.82rem; color: #6b5a62; }

.hero-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo-main {
  width: 78%;
  aspect-ratio: 455 / 345;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
  background-image: url('../imagenes/crop-barberia.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 2;
}

.hero-photo-float {
  position: absolute;
  width: 46%;
  aspect-ratio: 434 / 455;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
  background-image: url('../imagenes/crop-corte.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  top: -6%;
  left: -4%;
  z-index: 3;
}

.hero-badge {
  position: absolute;
  bottom: 6%;
  right: -2%;
  z-index: 4;
  background: var(--white);
  border-radius: 18px;
  padding: 14px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-badge .icon-circle { width: 40px; height: 40px; background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.hero-badge strong { display: block; font-size: 0.95rem; color: var(--ink); }
.hero-badge span { font-size: 0.75rem; color: #6b5a62; }

.hero-blob {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}
.hero-blob.b1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(198,161,91,0.25), transparent 70%);
  top: -80px; right: -60px;
}

/* ===== Icon circles ===== */
.icon-circle {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--wine-light), var(--wine));
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(140, 36, 82, 0.25);
}
.icon-circle .icon-svg { width: 24px; height: 24px; }

/* ===== Servicios ===== */
.servicios { padding: 110px 0; background: var(--white); position: relative; }

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
}

.servicio-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 14px;
  transition: background 0.25s ease, transform 0.25s ease;
  border-bottom: 1px dashed rgba(140,36,82,0.15);
}
.servicio-item:hover { background: var(--cream); transform: translateX(6px); }
.servicio-item h3 { font-size: 1.02rem; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.servicio-item p { font-size: 0.85rem; color: #8a7580; }

/* ===== Nosotros / Unicos ===== */
.nosotros {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.nosotros-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.nosotros-photo {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.nosotros-photo img { width: 100%; height: 100%; object-fit: cover; }
.nosotros-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,10,15,0.45), transparent 50%);
}

.unicos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.unico-item { display: flex; gap: 16px; align-items: flex-start; }
.unico-item .icon-circle { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--wine-dark); }
.unico-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.unico-item p { font-size: 0.85rem; color: #6b5a62; line-height: 1.5; }

/* ===== Galeria ===== */
.galeria { padding: 110px 0; background: var(--white); }

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 16px;
}

.galeria-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
}
.galeria-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.galeria-item:hover img { transform: scale(1.08); }

.galeria-item .tag {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(18, 14, 19, 0.6);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ===== Promociones ===== */
.promos {
  padding: 60px 0;
  background: linear-gradient(120deg, var(--wine-dark), var(--wine) 55%, var(--magenta));
}
.promos-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.promos-title {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}
.promos-title .icon-circle { background: var(--white); color: var(--wine); }
.promos-title strong { font-family: var(--font-script); font-size: 1.7rem; display: block; }
.promos-title span { font-size: 0.85rem; opacity: 0.85; }

.promos-list { display: flex; gap: 34px; flex-wrap: wrap; }
.promo-chip { display: flex; align-items: center; gap: 12px; color: var(--white); }
.promo-chip .icon-circle { width: 44px; height: 44px; background: rgba(255,255,255,0.15); color: var(--gold-light); box-shadow: none; }
.promo-chip span { font-size: 0.88rem; font-weight: 500; max-width: 120px; line-height: 1.3; }

/* ===== Testimonio / Quote ===== */
.quote-section {
  padding: 130px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.quote-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(224,24,110,0.18), transparent 45%),
              radial-gradient(circle at 80% 70%, rgba(198,161,91,0.14), transparent 45%);
}
.quote-section .container { position: relative; z-index: 2; }

.quote-kicker {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.quote-text {
  font-family: var(--font-script);
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  line-height: 1.25;
  max-width: 900px;
  margin: 0 auto 30px;
}
.quote-text span { color: var(--magenta); }

.quote-sub { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 500px; margin: 0 auto; }

/* ===== Ubicacion ===== */
.ubicacion { padding: 110px 0; background: var(--cream); }

.ubicacion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.info-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(140,36,82,0.08);
}
.info-row:last-child { border-bottom: none; }
.info-row h4 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.info-row p { font-size: 0.9rem; color: #6b5a62; line-height: 1.6; }

.social-row { display: flex; gap: 12px; margin-top: 8px; }
.social-row a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--wine);
  transition: background 0.25s ease, color 0.25s ease;
}
.social-row a:hover { background: var(--wine); color: var(--white); }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 340px;
  border: 6px solid var(--white);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ===== CTA final ===== */
.cta-final {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  text-align: center;
}
.cta-final h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--wine-dark);
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-final p { color: var(--wine-dark); opacity: 0.85; margin-bottom: 30px; }

/* ===== Footer ===== */
.footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 60px 0 26px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer .logo-text { background: linear-gradient(135deg, var(--gold-light), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.footer p.tagline { margin-top: 12px; font-size: 0.9rem; line-height: 1.6; max-width: 280px; }
.footer h5 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; font-size: 0.88rem; }
.footer ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ===== WhatsApp float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c4a);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(18, 140, 74, 0.45);
  z-index: 900;
  animation: pulse 2.4s infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }

@keyframes pulse {
  0% { box-shadow: 0 10px 26px rgba(18, 140, 74, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 10px 26px rgba(18, 140, 74, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 26px rgba(18, 140, 74, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 40px; max-width: 420px; margin-left: auto; margin-right: auto; }
  .nosotros-grid { grid-template-columns: 1fr; }
  .nosotros-photo { max-width: 480px; margin: 0 auto; }
  .ubicacion-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    position: fixed;
    top: 78px; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 40px 30px;
    gap: 26px;
    font-size: 1.1rem;
    overflow-y: auto;
  }
  .nav-cta .btn-outline { display: none; }
  .servicios-grid { grid-template-columns: 1fr; }
  .unicos-grid { grid-template-columns: 1fr; }
  .promos-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 120px 0 70px; }
  .hero-stats { gap: 22px; }
}

@media (max-width: 560px) {
  .galeria-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
}
