:root{
  --accent:#f87000;
  --accent-dark:#b56303;
  --bg:#0e0b08;
  --panel:#1b1816;
  --card:#141312;
  --text:#e4d9cf;
  --muted:#f87000;
  --container:1200px;
}

/* RESET TOTAL */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Poppins", sans-serif;
}

p {
  text-align: justify;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}

li { text-align: justify; }

.container {
  max-width: var(--container);
  margin: auto;
  padding: 28px;
}

/* HEADER */
.site-header {
  background: linear-gradient(180deg, var(--panel), #151210);
  border-bottom: 2px solid rgba(0,0,0,.6);
}

.header-inner { display: flex; align-items: center; }

.brand { display: flex; align-items: center; gap: 14px; }

#logo-principal { width: 170px; }

.logo-text { color: var(--accent); font-weight: 700; }

.tag { color: var(--muted); font-size: 1.6rem; }

.main-nav { margin-left: auto; display: flex; gap: 14px; }

.main-nav a { color: var(--muted); text-decoration: none; font-weight: 700; }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 40px;
  align-items: flex-start;
}

.hero-feature {
  width: 100%;
  height: 500px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 14px 40px rgba(0,0,0,.7);
}

.btn-whatsapp {
  background: #f87000;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 5px; /* espacio entre icono y texto */
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}

.btn-whatsapp img {
  width: 40px;  /* 👈 ICONO MÁS GRANDE */
  height: 40px;
}

.hero-feature img { width: 100%; height: 100%; object-fit: cover; }

.hero-left h1 { color: var(--accent); margin: 0 0 10px; font-size: 2.3rem; }

.lead { color: rgba(255,255,255,.9); }

.cta-row { display: flex; gap: 12px; margin: 18px 0; }

.btn { padding: 12px 18px; border-radius: 10px; border: none; font-weight: 800; cursor: pointer; }

.btn-primary { background: var(--accent); color: #fff; }

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.85);
  color: var(--muted);
  display: inline-block;
  margin-top: 12px; 
}

.hero-notes { display: flex; gap: 18px; font-size: .9rem; color: rgba(255,255,255,.8); }

.hero-images { display: flex; flex-direction: column; gap: 12px; }

.hero-main { width: 100%; height: 340px; object-fit: cover; border-radius: 14px; }

.hero-small-row { display: flex; gap: 10px; }

.hero-small-row img { width: 50%; height: 250px; object-fit: cover; border-radius: 12px; }

/* SECCIONES */
.seccion {
  background: var(--card);
  border-left: 8px solid var(--accent);
  padding: 28px;
  border-radius: 12px;
}

.seccion h2 {
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 18px 0;
}

/* H3: franja naranja con espacio arriba para separar secciones */
.seccion h3,
.two-col h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  display: block;
  padding: 7px 16px;
  margin: 50px 0 15px 0;
  border-radius: 4px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.muted { color: rgba(255,255,255,0.7); }

.two-col { display: block; width: 100%; margin-top: 18px; }

/* Reproductores */
.repro-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 20px; margin-top: 18px; }
.repro-card { background: linear-gradient(180deg,rgba(0,0,0,0.05),transparent); padding: 14px; border-radius: 12px; box-shadow: 0 8px 300px rgba(0,0,0,0.6); text-align: left; }
.repro-card img { width: 100%; height: 700px; object-fit: cover; border-radius: 10px; cursor: default; }

/* Camadas */
.camada-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 18px; }
.camada-card { display: flex; gap: 16px; background: rgba(0,0,0,0.03); padding: 12px; border-radius: 12px; align-items: flex-start; }
.camada-card img, .camada-card video { flex-shrink: 0; width: 160px; aspect-ratio: 9/16; object-fit: cover; border-radius: 10px; display: block; }
.video-thumb video { border-radius: 100px; width: 60%; height: auto; aspect-ratio: 9/16; object-fit: cover; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 14px; margin-top: 18px; }
.thumb img { width: 100%; height: 250px; object-fit: cover; border-radius: 10px; cursor: zoom-in; display: block; transition: transform .25s; }
.thumb img:hover { transform: scale(1.02); }
.video-thumb { border-radius: 10px; overflow: hidden; }

/* FAQ */
.faq details { background: rgba(0,0,0,0.03); padding: 12px; border-radius: 10px; margin: 10px 0; }
.faq summary { font-weight: 700; cursor: pointer; color: var(--accent); }

/* Form */
.form { max-width: 900px; margin: 12px auto 0; display: flex; flex-direction: column; gap: 12px; }
.form-row { display: flex; gap: 12px; }
.form-row input { flex: 1; }
input, textarea { padding: 12px; border-radius: 10px; border: 2px solid rgba(255,255,255,0.03); background: var(--panel); color: var(--muted); }
textarea { min-height: 140px; resize: vertical; }
.form-actions { display: flex; gap: 12px; align-items: center; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 140; }
.lightbox.open { display: flex; }
.lb-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.8); }
.lb-content { position: relative; max-width: 94%; max-height: 92%; padding: 12px; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.lb-img { max-width: 100%; max-height: 82vh; border-radius: 10px; }
.lb-close { position: absolute; right: -10px; top: -10px; background: #fff; border-radius: 50%; width: 36px; height: 36px; border: 0; cursor: pointer; font-weight: 700; }

/* Footer */
.site-footer { padding: 18px 0; text-align: center; color: #a38f7e; border-top: 1px solid rgba(255,255,255,0.03); margin-top: 40px; }

/* RESPONSIVE */
@media(max-width:980px) {
  .hero { grid-template-columns: 1fr; }
  .camada-grid { grid-template-columns: 1fr; }
  .repro-grid { grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); }
  .camada-videos { grid-template-columns: 1fr !important; }
}

@media(max-width:560px) {
  .main-nav { display: none; }
  .hero-main { height: 200px; }
  .hero-small-row img { height: 86px; }
  .gallery-grid img { height: 120px; }
  .form-row { flex-direction: column; }
  .camada-card img, .camada-card video { width: 100%; aspect-ratio: 9/16; height: auto; }
  .section-spacious { padding: 26px; }
  .hero-feature { height: 200px; }
}