:root{
  /* Fondo gris oscuro (pedido) */
  --bg:#2b2f36;
  --bg2:#242830;

  /* UI */
  --card:#343a43;
  --card2:rgba(52,58,67,.70);
  --text:#f3f4f6;
  --muted:#c4c9d4;
  --line:rgba(255,255,255,.10);

  /* Marca (naranja/amarillo + acento) */
  --brand:#f59e0b;   /* ámbar */
  --brand2:#fb7185;  /* rosado cálido */
  --ok:#22c55e;

  --radius:24px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
  background:
    radial-gradient(900px 500px at 20% -10%, rgba(245,158,11,.10), transparent 60%),
    radial-gradient(900px 500px at 85% 0%, rgba(251,113,133,.08), transparent 60%),
    linear-gradient(180deg,var(--bg) 0%, var(--bg2) 100%);
  color:var(--text);
}

a{color:inherit;text-decoration:none}
.wrap{max-width:1100px;margin:0 auto;padding:22px}

/* TOPBAR */
.topbar{
  position:sticky;top:0;z-index:20;
  backdrop-filter: blur(10px);
  background:rgba(43,47,54,.70);
  border-bottom:1px solid var(--line);
}
.topbar-inner{
  max-width:1100px;margin:0 auto;padding:14px 22px;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
}

/* ✅ sin cuadrado: dejamos brand sin logo */
.brand{
  display:flex;align-items:center;gap:0;font-weight:900;letter-spacing:.2px
}
.brand small{display:block;color:var(--muted);font-weight:700}

.nav{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end;align-items:center}
.chip{
  padding:10px 12px;border:1px solid var(--line);border-radius:999px;
  background:rgba(52,58,67,.35);
  color:var(--muted);font-weight:800;font-size:14px;
}
.chip:hover{border-color:rgba(245,158,11,.45);color:var(--text)}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 16px;border-radius:14px;font-weight:900;
  border:1px solid rgba(245,158,11,.35);
  background:linear-gradient(135deg, rgba(245,158,11,.22), rgba(251,113,133,.16));
  box-shadow:0 16px 50px rgba(0,0,0,.25);
  transition:transform .12s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px)}
.btn small{font-weight:800;color:var(--muted)}

/* LAYOUT */
.hero{
  padding:26px 0 10px;
  display:grid;grid-template-columns:1.1fr .9fr;gap:16px;
  align-items:stretch;
}
.card{
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(52,58,67,.85), rgba(52,58,67,.55));
  border-radius:var(--radius);
  padding:22px;
}
h1{margin:0 0 10px;font-size:42px;line-height:1.05}
p{margin:0;color:var(--muted);line-height:1.55}

.badges{display:flex;gap:10px;flex-wrap:wrap;margin:16px 0 18px}
.badge{
  padding:8px 12px;border-radius:999px;
  background:rgba(245,158,11,.12);
  border:1px solid rgba(245,158,11,.22);
  color:#fde68a;font-weight:900;font-size:13px;
}

.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.mini{
  padding:14px;border-radius:18px;border:1px solid var(--line);
  background:rgba(43,47,54,.35)
}
.mini b{display:block;margin-bottom:6px}
.mini span{color:var(--muted);font-size:14px}

.ctaRow{display:flex;gap:12px;flex-wrap:wrap;margin-top:16px}
.ghost{
  padding:12px 16px;border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--text);font-weight:900;
  transition:transform .12s ease;
}
.ghost:hover{transform:translateY(-1px);border-color:rgba(245,158,11,.35)}

/* === HERO GALLERY (logo + rotación) === */
.media{
  border-radius:var(--radius);overflow:hidden;border:1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(245,158,11,.08), rgba(251,113,133,.06)),
    rgba(52,58,67,.35);
  min-height:320px;
  position:relative;
}
.hero-gallery{ position:relative; width:100%; height:100%; min-height:320px; }
.hero-gallery img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:contain;     /* logo no se corta */
  padding:20px;
  opacity:0;
  transform:scale(1.02);
  transition:opacity .8s ease, transform 1.2s ease;
  display:block;
}
.hero-gallery img.active{
  opacity:1;
  transform:scale(1);
}
.hero-gallery img.cover{ object-fit:cover; padding:0; }

section{padding:18px 0}
.title{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;margin-bottom:12px}
.title h2{margin:0;font-size:22px}
.title .sub{color:var(--muted);font-weight:800}

.list{display:grid;gap:8px;margin-top:10px}
.item{display:flex;gap:10px;align-items:flex-start}
.dot{width:10px;height:10px;border-radius:999px;background:var(--brand);margin-top:6px;flex:0 0 10px}

.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.ph{
  border-radius:18px;overflow:hidden;border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  min-height:170px
}
.ph img{width:100%;height:100%;object-fit:cover;display:block}

.cols{display:grid;grid-template-columns:1.2fr .8fr;gap:16px}
.map{
  border-radius:var(--radius);overflow:hidden;border:1px solid var(--line);
  min-height:320px;background:rgba(255,255,255,.03)
}

footer{
  padding:26px 0;color:var(--muted);
  border-top:1px solid var(--line);
  margin-top:18px
}

/* === WhatsApp flotante (mejora) === */
.wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:999;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(245,158,11,.28), rgba(251,113,133,.18));
  border:1px solid rgba(245,158,11,.35);
  box-shadow:0 18px 60px rgba(0,0,0,.45);
  font-weight:950;
  color:var(--text);
  transition:transform .12s ease;
  backdrop-filter: blur(10px);
}
.wa-float:hover{transform:translateY(-2px)}
.wa-ico{
  width:38px;height:38px;border-radius:999px;
  display:grid;place-items:center;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.10);
  flex:0 0 38px;
}
.wa-ico svg{width:20px;height:20px;fill:var(--text)}
.wa-text{display:flex;flex-direction:column;line-height:1.05}
.wa-text small{color:var(--muted);font-weight:900}

@media (max-width:920px){
  .hero{grid-template-columns:1fr}
  h1{font-size:36px}
  .grid3,.gallery,.cols{grid-template-columns:1fr}
  .media,.hero-gallery{min-height:260px}
  .topbar-inner{align-items:flex-start;flex-direction:column}
  .nav{justify-content:flex-start}
  .wa-text small{display:none}
}

/* ===== WHATSAPP VERDE ===== */

.wa-float{
  background: #25D366 !important;   /* verde WhatsApp */
  border: none !important;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.wa-float:hover{
  background: #1ebe5d !important;
}

.wa-text{
  color: #ffffff !important;
}

.wa-text small{
  color: #eafff3 !important;
}

.wa-ico svg{
  fill: #ffffff !important;
}


.wa-float{
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  z-index: 9999;
  transition: .2s ease;
}

.wa-float:hover{
  transform: scale(1.08);
  background: #1ebe5d;
}