:root{
  --bg: #f5f1ea;
  --surface: #ffffff;
  --surface-soft: #ece4d8;
  --text: #1f1a17;
  --muted: #6d655d;
  --primary: #0f4856;
  --primary-2: #143f4b;
  --accent: #d8ae54;
  --line: #ddd1c2;
  --shadow: 0 14px 34px rgba(20, 20, 20, 0.08);
  --radius: 24px;
  --container: 1180px;
}

*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

a{
  text-decoration: none;
}

img{
  max-width: 100%;
  display: block;
}

.container{
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 234, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.topbar-inner{
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-2);
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-mark{
  color: var(--accent);
  font-size: 0.9rem;
}

.nav{
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.nav a{
  color: var(--text);
  font-weight: 700;
  font-size: 0.98rem;
}

.hero{
  position: relative;
  color: #fff;
  padding: 110px 0 140px;
  background:
    linear-gradient(rgba(8, 25, 32, 0.62), rgba(8, 25, 32, 0.62)),
    url("../img/galeria/hero-galeria.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 44px;
  align-items: center;
  min-height: 560px;
}

.hero-copy{
  background: rgba(10, 30, 38, 0.42);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 34px 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.24);
  backdrop-filter: blur(5px);
  max-width: 640px;
}

.eyebrow,
.section-kicker{
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent);
}

.hero h1{
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.02;
  max-width: 7ch;
  text-shadow: 0 6px 22px rgba(0,0,0,0.30);
}

.hero-text{
  margin: 0 0 26px;
  max-width: 34rem;
  color: rgba(255,255,255,0.95);
  font-size: 1.12rem;
  text-shadow: 0 4px 16px rgba(0,0,0,0.28);
}

.hero-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.btn:hover{
  transform: translateY(-2px);
}

.btn-primary{
  background: var(--accent);
  color: #221b12;
}

.btn-secondary{
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}

.btn-ghost{
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

.btn-small{
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.hero-card{
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup{
  width: min(100%, 470px);
  border-radius: 28px;
  padding: 18px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 30px 70px rgba(0,0,0,0.30);
  backdrop-filter: blur(5px);
  margin-top: 12px;
}

.mockup-top{
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.mockup-top span{
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
}

.mockup-content{
  background: rgba(255,255,255,0.96);
  border-radius: 22px;
  overflow: hidden;
}

.mockup-banner{
  background: #0e0e0e;
  color: #fff;
  padding: 16px 18px;
  font-size: 0.95rem;
  font-weight: 800;
}

.mockup-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 18px;
}

.mini-card{
  background: linear-gradient(135deg, #f0e8dc, #e1d5c5);
  border-radius: 18px;
  text-align: center;
  padding: 30px 12px;
  font-weight: 800;
  color: #3d342d;
}

.mockup-footer{
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

.stats{
  margin-top: -24px;
  position: relative;
  z-index: 5;
}

.stats-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat{
  background: var(--surface);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
  text-align: center;
}

.stat strong{
  display: block;
  color: var(--primary);
  font-size: 1.08rem;
  margin-bottom: 4px;
}

.stat span{
  color: var(--muted);
}

.section{
  padding: 78px 0;
}

.alt{
  background: #eae1d5;
}

.section-head{
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head h2{
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.section-head p{
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.cards-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.store-card{
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.store-image{
  height: 220px;
  background-size: cover;
  background-position: center;
}

.image-novios{
  background:
    linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.12)),
    url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.image-zapatos{
  background:
    linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.08)),
    url("https://images.unsplash.com/photo-1542291026-7eec264c27ff?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.image-accesorios{
  background:
    linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.12)),
    url("https://images.unsplash.com/photo-1523170335258-f5ed11844a49?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.image-servicios{
  background:
    linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.12)),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.store-body{
  padding: 22px;
}

.tag{
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f3ebde;
  color: #7b6431;
  font-size: 0.78rem;
  font-weight: 800;
}

.store-body h3{
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.store-body p{
  margin: 0 0 18px;
  color: var(--muted);
}

.card-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.products-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card{
  background: var(--surface);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-image{
  height: 220px;
  background-size: cover;
  background-position: center;
}

.product-1{
  background:
    linear-gradient(rgba(0,0,0,.10), rgba(0,0,0,.10)),
    url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.product-2{
  background:
    linear-gradient(rgba(0,0,0,.10), rgba(0,0,0,.10)),
    url("https://images.unsplash.com/photo-1594938298603-c8148c4dae35?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.product-3{
  background:
    linear-gradient(rgba(0,0,0,.10), rgba(0,0,0,.10)),
    url("https://images.unsplash.com/photo-1549298916-b41d501d3772?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.product-4{
  background:
    linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.08)),
    url("https://images.unsplash.com/photo-1617038220319-276d3cfab638?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.product-body{
  padding: 18px 18px 20px;
}

.product-body h3{
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.price{
  margin: 0 0 12px;
  color: #7b6431;
  font-weight: 800;
}

.product-link{
  color: var(--primary);
  font-weight: 800;
}

.benefits-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.benefit{
  background: var(--surface);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.benefit h3{
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 1.2rem;
}

.benefit p{
  margin: 0;
  color: var(--muted);
}

.visit-band{
  background: linear-gradient(135deg, #0f4654 0%, #165464 100%);
  color: #fff;
}

.visit-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.light{
  color: var(--accent);
}

.visit-copy h2{
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  max-width: 13ch;
}

.visit-copy p{
  margin: 0;
  max-width: 58ch;
  color: rgba(255,255,255,0.88);
}

.visit-box{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

.visit-box h3{
  margin: 0 0 14px;
  font-size: 1.35rem;
}

.visit-box ul{
  margin: 0 0 22px;
  padding-left: 18px;
  color: rgba(255,255,255,0.9);
}

.visit-box li{
  margin-bottom: 10px;
}

.footer{
  background: #111;
  color: #ede6dc;
  padding: 28px 0;
}

.footer-inner{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer p{
  margin: 6px 0 0;
  color: rgba(237,230,220,0.8);
}

@media (max-width: 1100px){
  .hero-grid,
  .visit-grid{
    grid-template-columns: 1fr;
  }

  .products-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px){
  .stats-grid,
  .cards-grid,
  .benefits-grid{
    grid-template-columns: 1fr;
  }

  .nav{
    display: none;
  }

  .hero{
    padding: 78px 0 90px;
  }

  .hero-grid,
  .visit-grid{
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy{
    max-width: 100%;
  }

  .mockup{
    width: min(100%, 520px);
    margin-top: 0;
  }

  .stats{
    margin-top: -18px;
  }
}

@media (max-width: 640px){
  .section{
    padding: 58px 0;
  }

  .products-grid{
    grid-template-columns: 1fr;
  }

  .store-image,
  .product-image{
    height: 190px;
  }

  .hero h1,
  .visit-copy h2{
    max-width: none;
  }

  .hero-copy{
    padding: 26px 22px;
  }
}