/* ── HOMEPAGE ── */
:root{
  --wine:#5B1A27;
  --gold:#C4952A;
  --text:#1C1714;
  --muted:#7A7068;
  --crema:#FAF8F4;
}

*{box-sizing:border-box;margin:0;padding:0;}
body{font-family:'Inter',sans-serif;background:#0a0a0a;}

/* ── HERO ── */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:url('https://images.unsplash.com/photo-1506377247377-2a5b3b417ebb?w=1600&q=80') center/cover no-repeat;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to bottom, rgba(10,10,10,.55) 0%, rgba(10,10,10,.75) 100%);
}
.hero-content{
  position:relative;z-index:1;
  text-align:center;
  display:flex;flex-direction:column;
  align-items:center;gap:24px;
  margin-top:200px;
}
.hero-header{
  position:absolute;
  top:30px;left:40px;
  z-index:2;
}
.hero-logo{
  width:220px;
}
.hero-tagline{
  font-size:13px;letter-spacing:4px;
  text-transform:uppercase;color:rgba(255,255,255,.6);
}
.hero-btn{
  margin-top:8px;
  padding:14px 40px;
  background:var(--wine);color:#fff;
  border:none;border-radius:4px;
  font-family:'Inter',sans-serif;
  font-size:13px;font-weight:600;
  letter-spacing:2px;text-transform:uppercase;
  text-decoration:none;
  transition:background .2s,transform .2s;
}
.hero-btn:hover{background:#7A2535;transform:translateY(-2px);}
/* ── NOSOTROS ── */
.about{
  display:flex;
  align-items:center;
  gap:60px;
  padding:100px 80px;
  background:var(--crema);
}
.about-text{
  flex:1;
}
.about-label{
  font-size:11px;letter-spacing:4px;
  text-transform:uppercase;color:var(--gold);
  display:block;margin-bottom:16px;
}
.about-title{
  font-family:'Playfair Display',serif;
  font-size:36px;font-weight:700;
  color:var(--wine);line-height:1.2;
  margin-bottom:24px;
}
.about-body{
  font-size:15px;color:var(--muted);
  line-height:1.8;margin-bottom:16px;
}
.about-body-strong{
  font-weight:600;color:var(--wine);
}
.about-image{
  flex:1;border-radius:8px;overflow:hidden;
  height:480px;
}
.about-image img{
  width:100%;height:100%;
  object-fit:cover;
}
/* ── CONTACTO ── */
.contact{
  background:var(--wine);
  padding:100px 80px;
  text-align:center;
}
.contact .about-label{
  color:var(--gold);
}
.contact-title{
  font-family:'Playfair Display',serif;
  font-size:40px;font-weight:700;
  color:#fff;margin-bottom:16px;
}
.contact-body{
  font-size:15px;color:rgba(255,255,255,.65);
  line-height:1.8;max-width:520px;
  margin:0 auto 40px;
}
.contact-btns{
  display:flex;gap:16px;
  justify-content:center;
}
.contact-btn{
  display:flex;align-items:center;gap:10px;
  padding:14px 32px;border-radius:4px;
  font-family:'Inter',sans-serif;
  font-size:13px;font-weight:600;
  letter-spacing:1px;text-decoration:none;
  transition:transform .2s,opacity .2s;
}
.contact-btn:hover{transform:translateY(-2px);opacity:.9;}
.contact-btn.whatsapp{
  background:#25D366;color:#fff;
}
.contact-btn.email{
  background:transparent;color:#fff;
  border:1px solid rgba(255,255,255,.4);
}
/* ── LANG SELECTOR ── */
.hero-header{
  position:absolute;
  top:30px;left:40px;
  z-index:2;
  display:flex;
  align-items:center;
  gap:16px;
}
.hero-lang{
  display:flex;gap:6px;
}
.lang-btn{
  background:rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.3);
  color:#fff;padding:4px 10px;
  border-radius:4px;font-size:11px;
  font-weight:600;cursor:pointer;
  font-family:'Inter',sans-serif;
  transition:background .2s;
}
.lang-btn:hover,.lang-btn.active{
  background:var(--wine);
  border-color:var(--wine);
}
.hero-title{
  font-family:'Playfair Display',serif;
  font-size:52px;font-weight:700;
  color:#fff;letter-spacing:2px;
  text-align:center;
  margin-bottom:8px;
  text-shadow:0 2px 20px rgba(0,0,0,.4);
}
.banner-bodegas-wrap{
  position:relative;
  overflow:hidden;
  background:var(--wine);
  height:70px;
}
.banner-bodegas-tira{
  position:absolute;
  top:40%;
  left:0;
  transform:translateY(-50%);
  display:flex;
  white-space:nowrap;
  width:max-content;
  animation:scrollBodegas 240s linear infinite;
}
.banner-bodega{
  font-family:'Playfair Display',serif;
  font-style:italic;
  font-size:17px;
  color:#F0E6D2;
  margin:0 20px;
  line-height:1;
  display:inline-flex;
  align-items:center;
}
.banner-punto{
  color:var(--gold);
  font-size:16px;
  margin:0 4px;
  line-height:1;
  display:inline-flex;
  align-items:center;
}
@keyframes scrollBodegas{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}
@media (max-width: 768px) {
  .hero-header { 
    top: 16px; 
    left: 16px; 
    gap: 10px;
  }
  .hero-logo { width: 60px; }
  .hero-lang { gap: 4px; }
  .lang-btn { padding: 3px 8px; font-size: 10px; }
  .hero-title { font-size: 26px; }
  .hero-tagline { font-size: 10px; letter-spacing: 2px; padding: 0 16px; }
  .hero-btn { padding: 12px 28px; font-size: 12px; }
  .hero-content { margin-top: 140px; }
  
  .about { flex-direction: column; padding: 40px 24px; gap: 32px; }
  .about-image { height: 240px; }
  .about-title { font-size: 24px; }
  
  .contact { padding: 48px 24px; }
  .contact-title { font-size: 26px; }
  .contact-body { font-size: 13px; }
  .contact-btns { flex-direction: column; align-items: center; }
  .contact-btn { width: 100%; justify-content: center; }
}