:root{
  --vino:#7A5B66;
  --dorado:#D4A61D;
  --ink:#1c1c1e;
  --paper:#ffffff;
  --bg:#faf7f6;
}

/* base */
*{ box-sizing:border-box; }
body{
  margin:0;
  font-family:"Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color:var(--ink);
  background:#fff;
}
.container{
  width:min(1100px, 92%);
  margin:0 auto;
}

/* =========================================================
   HEADER (zócalo) + botón MENÚ
   ========================================================= */

.main-header{
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,0.05);
  position:sticky;
  top:0;
  z-index:9999;
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 0;
}

.logo-ores{
  height:55px;
  width:auto;
  display:block;
  transition:transform .15s ease;
}
.logo-ores:hover{ transform:scale(1.04); }

/* ✅ Botón MENÚ */
.menu-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  color:#2b2b2b;
  font-weight:800;
  letter-spacing:.06em;
  font-size:12px;
  cursor:pointer;
  user-select:none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.menu-btn:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.92);
}
.menu-btn i{ font-size:14px; }

/* ✅ Estado scroll (solo funciona si dejás el JS mini del header) */
.main-header.is-scrolled{
  background:#0b1220 !important;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.main-header.is-scrolled .menu-btn{
  border-color:rgba(255,255,255,.16);
  background:rgba(0,0,0,.22);
  color:#fff;
}
.main-header.is-scrolled .menu-btn i{ color:#fff; }

/* =========================================================
   HERO CONTACTO
   ========================================================= */

.contacto-hero{
  position:relative;
  min-height:56vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding:86px 0 86px;
  color:#fff;
  background:#0b1220;
}
.contacto-hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,
      rgba(122,91,102,.62) 0%,
      rgba(90,42,130,.60) 44%,
      rgba(15,42,58,.82) 100%),
    var(--hero-img);
  background-size:cover;
  background-position:center;
  filter:saturate(1.06) contrast(1.05);
  transform:scale(1.02);
}
.contacto-hero-inner{
  position:relative;
  z-index:2;
  max-width:980px;
}
.hero-kicker{
  display:inline-flex;
  align-items:center;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
  opacity:.96;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.20);
  backdrop-filter: blur(6px);
}
.hero-title{
  margin:14px 0 10px;
  font-size:clamp(34px, 4.2vw, 60px);
  line-height:1.06;
  letter-spacing:-0.03em;
  font-weight:800;
  color:#fff;
  text-shadow:0 12px 30px rgba(0,0,0,.45);
}
.hero-lead{
  margin:0;
  font-size:16px;
  line-height:1.75;
  max-width:820px;
  color:rgba(255,255,255,.92);
  text-shadow:0 10px 22px rgba(0,0,0,.35);
}

/* =========================================================
   TARJETAS
   ========================================================= */

.contacto-info{
  padding:34px 0 10px;
  background:#fff;
}
.contacto-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(230px, 1fr));
  gap:18px;
}
.contact-card{
  background:#fff;
  border-radius:16px;
  padding:18px 20px 20px;
  box-shadow:0 8px 26px rgba(0,0,0,0.04);
  border:1px solid rgba(90,61,78,0.06);
}
.contact-card h3{
  margin:0 0 6px;
  font-size:1.05rem;
}
.contact-card p{
  margin:0 0 6px;
  line-height:1.5;
}
.contact-card a{
  color:#5a3d4e;
  font-weight:700;
  text-decoration:none;
}
.contact-card a:hover{ text-decoration:underline; }

.contact-redes{
  display:flex;
  gap:8px;
  margin:10px 0 6px;
}
.contact-redes a{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  width:38px;
  height:38px;
  border-radius:50%;
  background:#f1e9e2;
  color:#5a3d4e;
  font-size:1rem;
  transition:transform .15s ease, background .15s ease, color .15s ease;
}
.contact-redes a:hover{
  background:#5a3d4e;
  color:#fff;
  transform:translateY(-2px);
}

/* =========================================================
   FORMULARIO
   ========================================================= */

.contacto-form{
  padding:36px 0 64px;
  background:var(--bg);
}
.form-wrapper{ max-width:720px; }
.form-wrapper h2{
  margin:0 0 18px;
  color:#2f2f2f;
}
.form-row{
  display:flex;
  flex-direction:column;
  margin-bottom:14px;
}
.form-row label{
  font-weight:700;
  margin-bottom:4px;
}
.form-row input,
.form-row select,
.form-row textarea{
  border:1px solid #ddd;
  border-radius:12px;
  padding:10px 12px;
  font-family:inherit;
  font-size:0.95rem;
  background:#fff;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus{
  outline:none;
  border-color:#5a3d4e;
  box-shadow:0 0 0 3px rgba(90,61,78,0.08);
}

.btn.violet{
  background:#5a3d4e;
  border:none;
  color:#fff;
  padding:10px 22px;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
  transition:transform .15s ease, background .15s ease;
}
.btn.violet:hover{
  background:#4b3042;
  transform:translateY(-1px);
}

.form-note{
  font-size:0.80rem;
  color:#666;
  margin-top:10px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer{
  background:#fff;
  border-top:1px solid rgba(0,0,0,0.06);
  padding:26px 0 30px;
  text-align:center;
  font-size:0.9rem;
  color:#555;
}
.footer a{
  color:#5a3d4e;
  text-decoration:none;
}
.footer a:hover{ text-decoration:underline; }

/* =========================================================
   MENÚ DRAWER — ✅ SOLO CHECKBOX (SIN JS)
   Requiere tu HTML:
   input#menuToggle + header + label.menu-backdrop + aside.menu-drawer
   ========================================================= */

/* ✅ OCULTA EL CHECKBOX (NO MÁS CUADRADO) */
.menu-toggle{
  position:fixed;
  width:1px;
  height:1px;
  opacity:0;
  pointer-events:none;
  left:-9999px;
  top:-9999px;
}

/* Backdrop (label) */
.menu-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
  z-index:9998;
}

/* Drawer cerrado */
.menu-drawer{
  position:fixed;
  top:0;
  right:0;
  height:100vh;
  width:min(420px, 86vw);
  background:#0b1220;
  color:#fff;
  transform:translateX(110%);
  transition:transform .22s ease;
  z-index:9999;
  box-shadow:-18px 0 40px rgba(0,0,0,.35);
  display:grid;
  grid-template-rows:auto 1fr auto;
}

/* ✅ Abierto con checkbox */
#menuToggle:checked ~ .menu-backdrop{
  opacity:1;
  pointer-events:auto;
}
#menuToggle:checked ~ .menu-drawer{
  transform:translateX(0);
}

/* Top: redes + X */
.menu-drawer-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px 16px 14px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

/* Redes */
.drawer-social{
  display:flex;
  gap:10px;
}
.drawer-social a{
  width:40px;
  height:40px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  text-decoration:none;
  transition:transform .15s ease, background .15s ease;
}
.drawer-social a:hover{
  transform:translateY(-1px);
  background:rgba(212,166,29,.14);
}

/* ✅ Botón Cerrar (label) */
.drawer-close{
  width:44px;
  height:44px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  flex:0 0 auto;
}
.drawer-close i{
  font-size:18px;
  line-height:1;
}
.drawer-close:hover{
  background:rgba(255,255,255,.12);
  transform:translateY(-1px);
}

/* Links */
.drawer-nav{
  padding:16px;
  display:grid;
  gap:10px;
  overflow:auto;
}
.drawer-nav a{
  display:block;
  padding:14px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  transition:transform .15s ease, background .15s ease;
}
.drawer-nav a:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.08);
}
.drawer-nav a.active{
  border-color:rgba(212,166,29,.35);
  background:rgba(212,166,29,.14);
}

/* Footer del drawer */
.drawer-footer{
  padding:14px 16px 16px;
  border-top:1px solid rgba(255,255,255,.10);
  opacity:.9;
  font-weight:600;
  font-size:13px;
  color:rgba(255,255,255,.75);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width:720px){
  .contacto-hero{ min-height:52vh; padding:72px 0 72px; }
}

/* ✅ Menú: items menos separados (más compactos) */
.drawer-nav{
  gap: 5px;              /* antes 10px */
}

.drawer-nav a{
  padding: 12px 14px;    /* antes 14px 14px */
  border-radius: 12px;   /* antes 14px */
}

/* (opcional) si todavía lo ves muy “aireado”, bajá un poco más: */

.drawer-nav{ gap: 6px; }
.drawer-nav a{ padding: 11px 14px; }


/* =========================================================
   AJUSTE FINO — items del drawer más compactos (sin romper)
   Pegalo AL FINAL de css/contacto.css
   ========================================================= */

/* menos separación entre items */
.menu-links{
  gap: 8px !important;           /* antes 10px */
  margin-top: 4px !important;
}

/* “botones” menos altos y menos redondeados */
.menu-links a{
  padding: 10px 12px !important; /* antes 14px 14px */
  border-radius: 12px !important;/* antes 14px */
  font-size: 15px !important;    /* un toque más compacto */
  line-height: 1.2 !important;
}

/* opcional: que el activo no “engorde” visualmente */
.menu-links a.active{
  border-color: rgba(212,166,29,.32) !important;
  background: rgba(212,166,29,.12) !important;
}

/* =========================================================
   MENU — items más compactos (OBSERVATORIO: .menu-links)
   Pegalo AL FINAL de tu CSS principal (el que usa .menu-drawer)
   ========================================================= */
.menu-links{
  gap: 6px !important;          /* menos aire entre items */
  margin-top: 4px !important;
}

.menu-links a{
  padding: 10px 12px !important; /* menos alto */
  border-radius: 12px !important;
  line-height: 1.15 !important;
  font-size: 15px !important;
}

/* opcional: separador finito entre items (da look “UNVM”) */
.menu-links a + a{
  box-shadow: 0 -1px 0 rgba(255,255,255,.06) inset;
}

/* que “Próximamente” no agrande el renglón */
.menu-links .soon{
  font-size: .82em !important;
  opacity: .70 !important;
}


/* =========================================================
   MENU — items más compactos (CONTACTO: .drawer-nav)
   Pegalo AL FINAL de css/contacto.css
   ========================================================= */
.drawer-nav{
  gap: 6px !important;
  padding: 14px 16px !important;
}

.drawer-nav a{
  padding: 11px 14px !important;
  border-radius: 12px !important;
  line-height: 1.15 !important;
  font-size: 15px !important;
}

/* opcional: separador finito */
.drawer-nav a + a{
  box-shadow: 0 -1px 0 rgba(255,255,255,.06) inset;
}

/* =========================================================
   FIX REAL — igualar altura de items del drawer
   (misma altura que el activo "Contacto")
   ========================================================= */

/* contenedor */
.drawer-nav{
  gap: 6px !important;
}

/* TODOS los items */
.drawer-nav a{
  padding: 10px 14px !important;     /* altura real */
  min-height: 44px !important;       /* CLAVE */
  display: flex !important;
  align-items: center !important;

  line-height: 1.1 !important;       /* mata el aire fantasma */
  font-size: 15px !important;
  font-weight: 700 !important;

  border-radius: 12px !important;
}

/* el activo NO debe ser más alto */
.drawer-nav a.active{
  padding: 10px 14px !important;
  min-height: 44px !important;
}

/* elimina “falso aire” visual */
.drawer-nav a + a{
  box-shadow: none !important;
}

/* =========================================================
   FIX FINAL — compactar items del drawer (CONTACTO)
   Sin romper nada: solo override.
   ========================================================= */

/* 1) contenedor: menos padding y menos gap real */
.drawer-nav{
  padding: 12px 14px !important;
  gap: 6px !important;
}

/* 2) items: altura fija + sin “aire” tipográfico */
.drawer-nav a{
  padding: 10px 14px !important;
  min-height: 42px !important;     /* más compacto */
  border-radius: 12px !important;

  display: flex !important;
  align-items: center !important;

  line-height: 1.05 !important;
  font-size: 15px !important;
}

/* 3) el activo igual, sin crecer */
.drawer-nav a.active{
  min-height: 42px !important;
  padding: 10px 14px !important;
}

/* 4) CLAVE: el hover NO debe “mover” el item, porque parece más separado */
.drawer-nav a:hover{
  transform: none !important;
}
