/* Secuencia Gráfica estándar — Bicho's Jackpot Charters */
:root{
  --bg: #0b1220;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.08);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --brand: #1F4F8E;   /* tomado del logo */
  --brand2:#2b78d4;
  --accent:#33d0ff;
  --ring: rgba(51,208,255,.35);
  --shadow: 0 18px 40px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 20% -20%, rgba(43,120,212,.35), transparent 60%),
              radial-gradient(1000px 500px at 100% 0%, rgba(51,208,255,.15), transparent 60%),
              var(--bg);
  line-height:1.55;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration: underline; }

img{ max-width:100%; display:block; }
.container{ width:min(var(--max), calc(100% - 40px)); margin-inline:auto; }

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left: 16px; top: 12px; width:auto; height:auto; padding:10px 12px;
  background:#fff; color:#000; border-radius:12px; z-index:9999;
}

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(11,18,32,.78), rgba(11,18,32,.35));
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 0;
  gap: 14px;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand-logo{
  width:46px; height:46px; border-radius:14px;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.06);
}
.brand-text{ display:flex; flex-direction:column; line-height:1.05; }
.brand-text strong{ font-size: 15px; letter-spacing:.2px; }
.brand-text span{ font-size: 12px; color: var(--muted); }

.nav{
  display:flex; align-items:center; gap: 18px;
}
.nav a{
  color: rgba(255,255,255,.86);
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px;
}
.nav a:hover{ background: rgba(255,255,255,.06); text-decoration:none; }

.nav-toggle{
  display:none;
  width:44px; height:44px; border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  cursor:pointer;
}
.nav-toggle span{
  display:block; width:18px; height:2px; margin: 4px auto;
  background: rgba(255,255,255,.92);
  border-radius: 2px;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(43,120,212,.90), rgba(31,79,142,.90));
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
  text-decoration:none !important;
  font-weight: 700;
}
.btn:hover{ filter: brightness(1.04); transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }
.btn-sm{ padding: 10px 14px; border-radius: 14px; font-size: 14px; }
.btn-ghost{
  background: rgba(255,255,255,.06);
  box-shadow: none;
}
.btn-ghost:hover{ background: rgba(255,255,255,.10); }

.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  width: fit-content;
}
.accent{ color: var(--accent); }

/* Hero */
.hero{ position:relative; min-height: 78vh; display:grid; align-items:center; }
.hero-media{
  position:absolute; inset:0; z-index:-1;
}
.hero-media img{
  width:100%; height:100%; object-fit:cover;
  filter: saturate(1.05) contrast(1.05);
}
.hero-overlay{
  position:absolute; inset:0;
  background: radial-gradient(900px 600px at 20% 10%, rgba(11,18,32,.20), rgba(11,18,32,.85) 55%),
              linear-gradient(to bottom, rgba(11,18,32,.15), rgba(11,18,32,.92));
}
.hero-content{
  padding: 84px 0 64px;
}
.hero h1{
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.05;
  margin: 14px 0 12px;
  letter-spacing: -0.6px;
}
.lead{
  max-width: 60ch;
  color: rgba(255,255,255,.82);
  font-size: 16px;
}
.hero-actions{ display:flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.hero-badges{
  margin-top: 20px;
  display:flex; flex-wrap:wrap; gap:10px;
}
.badge{
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.86);
  font-size: 13px;
}

/* Sections */
.section{ padding: 70px 0; }
.section-alt{
  background: linear-gradient(to bottom, rgba(255,255,255,.03), rgba(255,255,255,.02));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section-head{ max-width: 70ch; margin-bottom: 26px; }
.section-head h2{ margin: 0 0 8px; font-size: 30px; letter-spacing:-0.4px; }
.section-head p{ margin:0; color: var(--muted); }

/* Cards & grids */
.grid-3{ display:grid; gap: 16px; grid-template-columns: repeat(3, 1fr); }
.grid-2{ display:grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.card-media img{
  width:100%; height: 220px; object-fit: cover;
}
.card-body{ padding: 18px; }
.card-body h3{ margin: 0 0 6px; font-size: 18px; }
.card-body p{ margin: 0 0 12px; color: rgba(255,255,255,.80); }
.bullets{ margin: 0; padding-left: 18px; color: rgba(255,255,255,.78); }
.bullets li{ margin: 6px 0; }

.cta-strip{
  margin-top: 18px;
  display:flex; gap: 18px; align-items:center; justify-content:space-between;
  padding: 18px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(135deg, rgba(31,79,142,.35), rgba(51,208,255,.10));
}
.cta-strip h3{ margin:0 0 4px; }
.cta-strip p{ margin:0; color: var(--muted); }
.cta-strip-actions{ display:flex; gap:10px; flex-wrap: wrap; }

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item{
  border:none;
  background: transparent;
  padding:0;
  cursor:pointer;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 14px 32px rgba(0,0,0,.25);
  transition: transform .15s ease;
}
.gallery-item:hover{ transform: translateY(-2px); }
.gallery-item img{ width:100%; height: 210px; object-fit: cover; }
.gallery-item-wide{ grid-column: span 3; }
.gallery-item-wide img{ height: 320px; object-fit: cover; }

.note{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.84);
}

.video-wrap{
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.video-wrap iframe{
  width:100%;
  aspect-ratio: 16/9;
  border:0;
}

/* Embeds */
.embed iframe{
  width:100%;
  height: 520px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.social-buttons{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 10px; }

.map{
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  min-height: 340px;
}
.map iframe{ width:100%; height:100%; border:0; min-height: 340px; }

.divider{
  height:1px; background: rgba(255,255,255,.10);
  margin: 14px 0;
}
.mini-title{ margin: 0 0 6px; font-size: 14px; color: rgba(255,255,255,.86); }

/* Form */
.form input, .form textarea{
  width:100%;
  margin-top: 6px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,14,24,.55);
  color: var(--text);
  outline: none;
}
.form input:focus, .form textarea:focus{
  box-shadow: 0 0 0 4px var(--ring);
  border-color: rgba(51,208,255,.45);
}
.form label{ display:block; font-size: 14px; color: rgba(255,255,255,.84); }
.form-row{ margin-bottom: 12px; }

.contact-line{ display:flex; gap:10px; align-items:center; margin: 8px 0; }
.contact-line span{ opacity:.9; }

.small{ font-size: 13px; }
.muted{ color: var(--muted); }

/* Footer */
.footer{
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.15);
}
.footer-inner{
  display:flex; gap: 16px; align-items:flex-start; justify-content:space-between;
  flex-wrap: wrap;
}
.footer-logo{ width:56px; height:56px; border-radius: 18px; }
.footer-left{ max-width: 48ch; }

/* Lightbox */
.lightbox{
  position: fixed; inset: 0;
  display:none;
  place-items: center;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(10px);
  z-index: 80;
  padding: 18px;
}
.lightbox.open{ display:grid; }
.lightbox-img{
  max-width: min(1100px, 96vw);
  max-height: 82vh;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 55px rgba(0,0,0,.55);
}
.lightbox-close{
  position:absolute; top: 14px; right: 14px;
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 26px;
  cursor:pointer;
}

/* WhatsApp float */
.wa-float{
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(51,208,255,.95), rgba(43,120,212,.95));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
  z-index: 60;
}
.wa-float svg{ width: 28px; height: 28px; fill: #fff; }

/* Reveal animation */
.reveal{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .grid-3{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr 1fr; }
  .gallery-item-wide{ grid-column: span 2; }
  .gallery-item img{ height: 220px; }
  .gallery-item-wide img{ height: 260px; }
}
@media (max-width: 820px){
  .nav-toggle{ display:block; }
  .nav{
    position: absolute;
    right: 20px;
    top: 66px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    min-width: 220px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(11,18,32,.92);
    box-shadow: var(--shadow);
    display:none;
  }
  .nav.open{ display:flex; }
  .grid-2{ grid-template-columns: 1fr; }
  .cta-strip{ flex-direction: column; align-items: flex-start; }
}
