/* Estilos base cinematográficos */
:root{
  --bg-color:#0d0d0d;
  --section-bg:#141414;
  --primary-color:#d7263d;
  --secondary-color:#f5f5f5;
  --accent-color:#ffb400;
  --overlay-color:rgba(0,0,0,.6);
  --elev:0 10px 30px rgba(0,0,0,.35);
  --elev-soft:0 6px 18px rgba(0,0,0,.25);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion:reduce){ html{ scroll-behavior:auto; } *{ animation:none!important; transition:none!important; } }

body{ margin:0; font-family:'Poppins',sans-serif; background:var(--bg-color); color:var(--secondary-color); line-height:1.6; }

h1,h2,h3{ margin:0 0 .5rem; line-height:1.2; }
h2{ font-size:2rem; font-weight:600; text-transform:uppercase; letter-spacing:1px; margin-bottom:1rem; }

.container{ width:90%; max-width:1000px; margin:0 auto; }

/* Navbar */
#navbar{ position:fixed; top:0; width:100%; background:rgba(13,13,13,.8); backdrop-filter:blur(8px); z-index:1000; border-bottom:1px solid rgba(255,255,255,.05);}
#navbar .nav-container{ display:flex; align-items:center; justify-content:space-between; padding:.8rem 0; }
#navbar .logo{ font-size:1.5rem; font-weight:700; color:var(--secondary-color); text-transform:uppercase; letter-spacing:2px; text-decoration:none; }
#navbar .menu{ list-style:none; display:flex; gap:1.5rem; margin:0; padding:0; }
#navbar .menu li a{ color:var(--secondary-color); font-size:.9rem; text-transform:uppercase; letter-spacing:1px; position:relative; padding:.3rem 0; text-decoration:none; transition:color .25s ease; }
#navbar .menu li a:hover{ color:var(--primary-color); }

/* Hero */
#hero{ position:relative; height:100vh; display:flex; align-items:center; justify-content:center; text-align:center; background-image:url('assets/_DSC3591.jpg'); background-size:cover; background-position:center; color:var(--secondary-color); }
#hero .overlay{ position:absolute; inset:0; background:var(--overlay-color); z-index:1; }
#hero .content{ position:relative; z-index:2; }
#hero h1{ font-size:3.5rem; font-weight:700; margin-bottom:.5rem; text-transform:uppercase; letter-spacing:3px; }
#hero p{ font-size:1.1rem; font-weight:300; margin-bottom:2rem; }

.buttons{ display:flex; flex-wrap:wrap; justify-content:center; gap:1rem; }
.button{
  display:inline-block; padding:.75rem 1.5rem; border-radius:30px; font-weight:600; font-size:.9rem; letter-spacing:1px; cursor:pointer; text-decoration:none;
  transition:transform .15s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.button{ background:var(--primary-color); color:#fff; box-shadow:var(--elev-soft); }
.button:hover{ background:var(--accent-color); color:#000; transform:translateY(-1px); box-shadow:var(--elev); }
.button:focus-visible{ outline:2px solid #fff; outline-offset:2px; }
.button-secondary{ background:transparent; color:#fff; border:2px solid #fff; }
.button-secondary:hover{ background:var(--primary-color); border-color:var(--primary-color); color:#fff; }
.button-ghost{ background:transparent; border:2px solid rgba(255,255,255,.35); color:#fff; }
.button-ghost:hover{ border-color:#fff; background:rgba(255,255,255,.06); }

/* Secciones */
section{ padding:80px 0; position:relative; }
#about{ background:var(--section-bg); }
#about .highlight{ font-weight:600; color:var(--accent-color); margin-top:1rem; }
#reel,#gallery,#social{ background:#0d0d0d; }
#presentations,#resume,#contact,#shortfilm{ background:var(--section-bg); }

/* Video */
.video-wrapper{ position:relative; padding-bottom:56.25%; height:0; overflow:hidden; border-radius:10px; box-shadow:0 4px 20px rgba(0,0,0,.6); margin-top:2rem; }
.video-wrapper iframe{ position:absolute; top:0; left:0; width:100%; height:100%; border:0; }

/* CTA Self-tape bajo el reel */
.selftape-cta{ display:flex; align-items:center; justify-content:center; gap:.9rem; margin-top:18px; flex-wrap:wrap; }
.selftape-line{ margin:0; opacity:.92; }

/* Presentaciones */
.presentations-grid{ display:flex; flex-wrap:wrap; justify-content:center; gap:2rem; margin-top:2rem; }
.video-container{ flex:1 1 350px; max-width:480px; }
.video-container iframe{ width:100%; height:270px; border:0; border-radius:10px; box-shadow:0 4px 20px rgba(0,0,0,.6); }
.video-container h3{ margin-top:.5rem; font-size:1rem; font-weight:500; color:var(--accent-color); }

/* Galería (grid base; HOME se reconfigura en el <style> del HTML) */
.gallery-grid{ display:grid; gap:1rem; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); margin-top:2rem; }
#gallery img{ width:100%; height:auto; object-fit:contain; border-radius:10px; box-shadow:0 4px 20px rgba(0,0,0,0.6); }

/* Botón Ver más */
.btn-ver-mas{
  display:inline-block; background-color:#00aaff; color:#fff; padding:10px 20px; margin-top:1.5rem; border-radius:6px; text-decoration:none; font-weight:700;
  transition:background-color .2s ease, transform .15s ease, box-shadow .25s ease;
}
.btn-ver-mas:hover{ background-color:#0088cc; transform:translateY(-1px); box-shadow:var(--elev); }

/* Especificaciones */
#specs{ background:#0d0d0d; }
.specs .specs-grid{
  list-style:none; margin:8px 0 0; padding:0; display:grid; grid-template-columns:1fr 1fr; gap:12px 18px;
}
.specs .specs-grid li{ background:#151515; border:1px solid rgba(255,255,255,.06); border-radius:12px; padding:10px 12px; box-shadow:var(--elev-soft); }
.specs .specs-grid li span{ color:#ddd; font-weight:600; }
@media (max-width:720px){ .specs .specs-grid{ grid-template-columns:1fr; } }

/* Cortometrajes: CTA */
.shorts-cta{ display:flex; justify-content:center; margin-top:16px; }
.btn-explore{
  display:inline-block; padding:.7rem 1.1rem; border-radius:10px; font-weight:600; text-decoration:none;
  background:#1f1f1f; color:#fff; border:1px solid rgba(255,255,255,.1);
  transition:transform .15s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.btn-explore:hover{ transform:translateY(-1px); box-shadow:var(--elev); background:#2a2a2a; border-color:rgba(255,255,255,.25); }

/* Social */
#social .icons{ display:flex; justify-content:center; gap:1.5rem; margin-top:1.5rem; }
#social .icons a{ width:50px; height:50px; display:flex; align-items:center; justify-content:center; border-radius:50%; background:#1f1f1f; transition:transform .2s ease, background .3s ease; }
#social .icons a:hover{ background:var(--primary-color); transform:translateY(-2px); }
#social .icons img{ width:26px; height:26px; filter:invert(100%) brightness(1) !important; opacity:1 !important; }

/* Contacto */
#contact a{ color:var(--primary-color); text-decoration:none; }
#contact a:hover{ text-decoration:underline; }
.btn-whatsapp{ width:40px; height:40px; border-radius:50%; object-fit:cover; }

/* Footer */
footer{ background:#050505; text-align:center; padding:1rem 0; color:#777; font-size:.8rem; }

/* Responsive */
@media (max-width:768px){
  #hero h1{ font-size:2.5rem; }
  #hero p{ font-size:1rem; }
  #navbar .menu{ display:none; }
}

/* Hero feather */
#hero .content{ display:flex; justify-content:center; align-items:center; flex-direction:column; text-align:center; background:none !important; position:relative; display:inline-block; }
#hero .content::before{
  content:""; position:absolute; inset:-10px;
  background:radial-gradient(120% 140% at 50% 50%, rgba(0,0,0,.45) 0%, rgba(0,0,0,.28) 45%, rgba(0,0,0,0) 100%);
  filter:blur(2px); border-radius:24px; pointer-events:none; z-index:-1;
}

/* Imagen móvil del hero */
#hero{ background-image:url('assets/_DSC3591.jpg'); background-size:cover; background-position:center; background-repeat:no-repeat; }
@media (max-width:768px){
  #hero{ background-image:url('assets/photo-smarphone-3.jpg'); background-size:cover; background-position:center; }
}

/* Highlights */
#highlights{ background:#0d0d0d; padding:48px 0 56px; }
.highlights{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:16px; }
.h-card{
  background:#151515; border:1px solid rgba(255,255,255,.06); border-radius:14px; padding:16px 16px 18px;
  box-shadow:var(--elev-soft); transition:transform .15s ease, box-shadow .25s ease, border-color .25s ease;
}
.h-card:hover{ transform:translateY(-2px); box-shadow:var(--elev); border-color:rgba(255,255,255,.18); }
.h-ico{ font-size:22px; margin-bottom:6px; opacity:.95; }
.h-card h3{ font-size:1rem; margin:4px 0 6px; }
.h-card p{ margin:0; opacity:.9; }

/* FAB + Menú lateral */
.menu-fab{
  position:fixed; right:18px; bottom:18px; width:56px; height:56px; border-radius:999px;
  display:flex; align-items:center; justify-content:center; background:#111; color:#fff; font-size:26px; line-height:1;
  box-shadow:0 12px 24px rgba(0,0,0,.35); cursor:pointer; z-index:2147483647; transition:transform .15s ease, background .2s ease;
}
.menu-fab:hover{ transform:translateY(-2px); background:#1c1c1c; }

.side-nav{
  position:fixed; top:0; right:-260px; height:100vh; width:260px; background:rgba(12,12,12,.96);
  box-shadow:-10px 0 24px rgba(0,0,0,.45); display:flex; flex-direction:column; padding:80px 16px 20px; gap:8px;
  transition:right .25s ease; z-index:2147483646;
}
.side-nav.show{ right:0; }
.side-nav a{
  color:#fff; text-decoration:none; padding:12px 14px; border-radius:10px; background:#18191a; border:1px solid #262728; font-weight:600;
  transition:transform .15s ease, background .25s ease, border-color .25s ease;
}
.side-nav a:hover{ background:#202122; transform:translateX(-1px); border-color:#3a3b3c; }

/* Modal de elección (Self-tape) */
.choice-modal{
  position:fixed; inset:0; display:flex; align-items:center; justify-content:center;
  background:rgba(0,0,0,.65); visibility:hidden; opacity:0; transition:opacity .2s ease, visibility .2s ease; z-index:99999;
}
.choice-modal.show{ visibility:visible; opacity:1; }
.choice-card{
  width:min(480px,92vw); background:#141414; border:1px solid rgba(255,255,255,.08);
  border-radius:16px; box-shadow:var(--elev); padding:22px 18px;
}
.choice-card h3{ margin:0 0 6px; }
.choice-sub{ margin:.25rem 0 1rem; opacity:.9; }
.choice-actions{ display:flex; gap:10px; flex-wrap:wrap; }
.btn-choice{
  display:inline-block; padding:.7rem 1.1rem; border-radius:10px; font-weight:600; text-decoration:none;
  background:#1f1f1f; color:#fff; border:1px solid rgba(255,255,255,.1);
  transition:transform .15s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.btn-choice:hover{ transform:translateY(-1px); box-shadow:var(--elev); background:#2a2a2a; border-color:rgba(255,255,255,.25); }
.btn-choice.outline{ background:transparent; border:2px solid rgba(255,255,255,.35); }
.btn-choice.outline:hover{ background:rgba(255,255,255,.06); border-color:#fff; }
.choice-close{
  margin-top:12px; width:100%; padding:.6rem 1rem; border-radius:10px; border:1px solid rgba(255,255,255,.1);
  background:#0f0f0f; color:#ddd; cursor:pointer; font-weight:600;
  transition:background .2s ease, transform .15s ease;
}
.choice-close:hover{ background:#171717; transform:translateY(-1px); }
/* ===== ESPECIFICACIONES ELEGANTE ===== */
#specs { padding: 3rem 0; }
#specs h2 { margin-bottom: 1.25rem; }

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.specs-card {
  position: relative;
  background: #141414;
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 6px 18px rgba(0,0,0,.28);
  transition: transform .15s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.specs-card::before {
  content:"";
  position: absolute; inset: 0; border-radius: 14px; pointer-events: none;
  background: radial-gradient(120% 120% at 0% 0%, rgba(255,255,255,.06), transparent 55%);
  mix-blend-mode: screen;
}
.specs-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
  border-color: rgba(255,255,255,.18);
}

.k {
  display: block;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #bfc2c7;
  margin-bottom: 2px;
}
.v {
  font-size: 1.02rem;
  font-weight: 600;
  color: #fff;
}

