
    :root{
      --bg:#050508;            /* negro profundo */
      --bg2:#0A0A12;           /* negro azulado suave */
      --card:rgba(255,255,255,.06);
      --card2:rgba(255,255,255,.09);
      --line:rgba(255,255,255,.12);
      --text:rgba(255,255,255,.92);
      --muted:rgba(255,255,255,.68);

      /* ROJO + NEGRO */
      --glow1:#FF1E3C;         /* rojo intenso */
      --glow2:#FF4D6D;         /* rojo neón (rosado) */

      --ok:#34D399;
      --warn:#FBBF24;
      --radius:18px;
      --shadow: 0 10px 40px rgba(0,0,0,.55);
      --shadow2: 0 8px 28px rgba(0,0,0,.42);
      --max: 1120px;
      --ease: cubic-bezier(.2,.9,.2,1);
    }

    *{ box-sizing:border-box; }
    html,body{ height:100%; }
  body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background: linear-gradient(
    180deg,
    #050508 0%,
    #0A0A12 40%,
    #120308 70%,
    #050508 100%
  );
}

    /* Fondo grid sutil */
    .grid{
      position:fixed;
      inset:0;
      pointer-events:none;
      background:
        linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: radial-gradient(900px 600px at 50% 20%, black 35%, transparent 70%);
      opacity:.35;
      transform: translateZ(0);
    }
    .noise{
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.055;
      background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
      mix-blend-mode: overlay;
    }

    a{ color:inherit; text-decoration:none; }
    .wrap{ width:min(var(--max), calc(100% - 44px)); margin:0 auto; }

    /* Nav */
    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter: blur(12px);
      background: linear-gradient(180deg, rgba(5,5,8,.85), rgba(5,5,8,.45));
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .nav{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:12px;
      user-select:none;
    }
    .logo{
      width:38px; height:38px; border-radius:14px;
      background:
        radial-gradient(12px 12px at 30% 35%, rgba(255,255,255,.55), transparent 60%),
        linear-gradient(135deg, rgba(255,30,60,.95), rgba(255,77,109,.80));
      box-shadow: 0 0 0 1px rgba(255,255,255,.14), 0 14px 40px rgba(255,30,60,.18);
      position:relative;
      overflow:hidden;
    }
    .logo:before{
      content:"";
      position:absolute; inset:-30%;
      background: conic-gradient(from 180deg, transparent, rgba(255,255,255,.22), transparent);
      animation: spin 7s linear infinite;
      opacity:.75;
    }
	.logo{
	width:90px;
	height:60px;
	object-fit:contain;
	}
    @keyframes spin{ to{ transform:rotate(360deg);} }
    .brand b{ letter-spacing:.2px; font-weight:800; }
    .brand span{ display:block; color:var(--muted); font-size:12px; margin-top:2px; }

    nav .links{
      display:flex; gap:18px; align-items:center;
      color:var(--muted);
      font-weight:600; font-size:14px;
    }
    nav .links a{ padding:10px 10px; border-radius:12px; transition: all .25s var(--ease); }
    nav .links a:hover{ color:var(--text); background:rgba(255,255,255,.06); transform: translateY(-1px); }

    .cta{ display:flex; align-items:center; gap:10px; }

    /* Botones */
    .btn{
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      color:var(--text);
      padding:10px 14px;
      border-radius:14px;
      font-weight:800;
      font-size:14px;
      box-shadow: var(--shadow2);
      transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
      cursor:pointer;
      display:inline-flex; gap:10px; align-items:center;
      white-space:nowrap;
    }
    .btn:hover{
      transform: translateY(-2px);
      background: rgba(255,255,255,.09);
      border-color: rgba(255,255,255,.22);
    }
    .btn.primary{
      border-color: rgba(255,30,60,.55);
      background: linear-gradient(135deg, rgba(255,30,60,.95), rgba(255,77,109,.80));
      color:#120207;
      box-shadow: 0 18px 60px rgba(255,30,60,.18);
    }
    .btn.primary:hover{ filter: brightness(1.05); transform: translateY(-2px) scale(1.01); }

    .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.05);
      color:var(--muted);
      font-weight:700;
      font-size:12px;
    }
    .dot{
      width:8px; height:8px; border-radius:99px;
      background: linear-gradient(135deg, var(--glow1), var(--glow2));
      box-shadow: 0 0 20px rgba(255,30,60,.25);
    }

    /* Hero */
    .hero{ padding:54px 0 24px; position:relative; }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:28px;
      align-items:stretch;
    }
    .h-title{
      font-size: clamp(34px, 4.6vw, 56px);
      line-height:1.02;
      margin:14px 0 12px;
      letter-spacing:-.6px;
    }
    .h-sub{
      color:var(--muted);
      font-size: clamp(15px, 1.45vw, 18px);
      line-height:1.55;
      margin:0 0 18px;
      max-width: 60ch;
    }
    .hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 20px; }
    .stats{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
    .stat{
      background: rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.12);
      border-radius: 16px;
      padding:12px 14px;
      min-width: 150px;
    }
    .stat b{ display:block; font-size:16px; }
    .stat span{ color:var(--muted); font-size:12px; }

    /* Panel */
    .panel{
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
      border:1px solid rgba(255,255,255,.14);
      box-shadow: var(--shadow);
      overflow:hidden;
      position:relative;
      min-height: 360px;
    }
    .panel .top{
      display:flex; justify-content:space-between; align-items:center;
      padding:16px 16px 10px;
      border-bottom:1px solid rgba(255,255,255,.1);
    }
    .tag{ font-weight:900; font-size:12px; letter-spacing:.3px; color:rgba(255,255,255,.85); }
    .chip{
      font-size:12px;
      color:rgba(18,2,7,.92);
      font-weight:900;
      padding:7px 10px;
      border-radius:999px;
      background: linear-gradient(135deg, rgba(255,30,60,.95), rgba(255,77,109,.80));
    }

    .radar{
      position:absolute; inset:0;
      display:grid; place-items:center;
      transform: translateZ(0);
    }
    .radar:before{
      content:"";
      width:min(340px, 78%);
      aspect-ratio:1/1;
      border-radius:999px;
      background:
        radial-gradient(circle at 50% 50%, rgba(255,30,60,.10), transparent 55%),
        radial-gradient(circle at 50% 50%, transparent 52%, rgba(255,255,255,.10) 53%, transparent 54%),
        radial-gradient(circle at 50% 50%, transparent 36%, rgba(255,255,255,.09) 37%, transparent 38%),
        radial-gradient(circle at 50% 50%, transparent 18%, rgba(255,255,255,.08) 19%, transparent 20%);
      border:1px solid rgba(255,255,255,.12);
      box-shadow: 0 0 0 1px rgba(255,255,255,.06), 0 30px 90px rgba(255,30,60,.10);
    }
    .sweep{
      position:absolute;
      width:min(340px, 78%);
      aspect-ratio:1/1;
      border-radius:999px;
      overflow:hidden;
      mask-image: radial-gradient(circle, black 60%, transparent 75%);
    }
    .sweep:before{
      content:"";
      position:absolute; inset:-50%;
      background: conic-gradient(from 0deg, rgba(255,30,60,0), rgba(255,30,60,.22), rgba(255,30,60,0) 65%);
      animation: sweep 3.4s linear infinite;
      opacity:.95;
    }
    @keyframes sweep{ to{ transform: rotate(360deg);} }

    .drone{
      position:absolute;
      width:min(360px, 86%);
      height: 220px;
      border-radius: 28px;
      background:
        radial-gradient(180px 120px at 40% 35%, rgba(255,255,255,.12), transparent 55%),
        linear-gradient(135deg, rgba(255,30,60,.18), rgba(255,77,109,.10));
      border:1px solid rgba(255,255,255,.12);
      box-shadow: 0 30px 120px rgba(255,30,60,.10);
      transform: translateY(14px);
      display:grid; place-items:center;
      overflow:hidden;
    }
    .drone svg{
      width: 86%;
      max-width: 320px;
      opacity:.9;
      filter: drop-shadow(0 18px 24px rgba(0,0,0,.45));
    }

    .panel .bottom{
      position:absolute; left:0; right:0; bottom:0;
      padding:14px 16px 16px;
      background: linear-gradient(180deg, transparent, rgba(5,5,8,.86));
      border-top:1px solid rgba(255,255,255,.08);
      display:flex; justify-content:space-between; align-items:flex-end; gap:10px;
    }
    .panel .bottom small{ display:block; color:var(--muted); line-height:1.35; }

    section{ padding:44px 0; }
    .sec-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
      margin-bottom:16px;
    }
    h2{ margin:0; font-size: 26px; letter-spacing:-.3px; }
    .sec-head p{
      margin:0;
      color:var(--muted);
      max-width: 62ch;
      line-height:1.5;
      font-weight:600;
    }

    .cards{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .card{
      border-radius: var(--radius);
      background: rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.12);
      box-shadow: var(--shadow2);
      padding:14px;
      transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
      position:relative;
      overflow:hidden;
    }
    .card:before{
      content:"";
      position:absolute; inset:-40%;
      background: radial-gradient(circle at 30% 30%, rgba(255,30,60,.14), transparent 50%),
                  radial-gradient(circle at 70% 40%, rgba(255,77,109,.10), transparent 55%);
      opacity:.95;
      transform: translate3d(var(--px,0), var(--py,0), 0);
      transition: transform .15s var(--ease);
      pointer-events:none;
    }
    .card:hover{
      transform: translateY(-4px);
      background: rgba(255,255,255,.07);
      border-color: rgba(255,255,255,.18);
    }
    .icon{
      width:40px; height:40px; border-radius:14px;
      display:grid; place-items:center;
      background: rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.12);
      margin-bottom:10px;
    }
    .card b{ display:block; font-size:15px; letter-spacing:.1px; }
    .card span{ display:block; color:var(--muted); font-size:13px; line-height:1.45; margin-top:6px; }

    /* Flota */
    .fleet .card{ padding:0; }
    .thumb{
      height:160px;
      border-bottom:1px solid rgba(255,255,255,.10);
      background:
        radial-gradient(300px 160px at 30% 20%, rgba(255,30,60,.18), transparent 60%),
        radial-gradient(260px 160px at 70% 10%, rgba(255,77,109,.14), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
      display:grid; place-items:center;
      position:relative;
      overflow:hidden;
    }
    .thumb:after{
      content:"";
      position:absolute; inset:0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
      transform: translateX(-120%);
      animation: shimmer 4.5s var(--ease) infinite;
      opacity:.6;
    }
    @keyframes shimmer{
      0%,60%{ transform: translateX(-120%); }
      100%{ transform: translateX(120%); }
    }
    .thumb .label{
      position:absolute; top:12px; left:12px;
      font-size:12px; font-weight:900;
      color:rgba(255,255,255,.88);
      background: rgba(0,0,0,.25);
      border:1px solid rgba(255,255,255,.14);
      padding:6px 10px;
      border-radius: 999px;
      backdrop-filter: blur(10px);
    }
    .content{ padding:14px; }
    .specs{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:10px;
      color:rgba(255,255,255,.80);
      font-weight:800;
      font-size:12px;
    }
    .spec{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.05);
    }

    /* Pricing */
    .pricing{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
      margin-top:14px;
    }
    .price{ padding:16px; }
    .price .big{
      font-size:34px;
      letter-spacing:-.6px;
      font-weight:950;
      margin:6px 0 0;
    }
    .price .per{ color:var(--muted); font-weight:700; font-size:12px; margin-top:2px; }
    .list{ margin:12px 0 14px; padding:0; list-style:none; color:var(--muted); font-weight:700; font-size:13px; line-height:1.6; }
    .list li{ display:flex; gap:10px; align-items:flex-start; margin:8px 0; }
    .tick{
      width:18px; height:18px; border-radius:6px;
      background: rgba(52,211,153,.14);
      border:1px solid rgba(52,211,153,.35);
      display:grid; place-items:center;
      flex:0 0 auto;
      margin-top:2px;
    }
    .hot{
      border-color: rgba(255,30,60,.45);
      background: linear-gradient(180deg, rgba(255,30,60,.14), rgba(255,255,255,.05));
      position:relative;
    }
    .ribbon{
      position:absolute; top:14px; right:14px;
      font-size:12px; font-weight:950;
      color:rgba(18,2,7,.92);
      background: linear-gradient(135deg, rgba(255,30,60,.95), rgba(255,77,109,.80));
      padding:7px 10px;
      border-radius:999px;
    }

    /* Galería */
    .gallery{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap:12px;
      margin-top:14px;
    }
    .shot{
      border-radius: 18px;
      border:1px solid rgba(255,255,255,.12);
      background:
        radial-gradient(300px 160px at 30% 20%, rgba(255,30,60,.18), transparent 60%),
        radial-gradient(260px 160px at 70% 10%, rgba(255,77,109,.14), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
      height: 160px;
      box-shadow: var(--shadow2);
      overflow:hidden;
      position:relative;
      cursor:pointer;
      transition: transform .2s var(--ease);
    }
    .shot:hover{ transform: translateY(-4px); }
    .shot .cap{
      position:absolute; left:12px; bottom:12px;
      font-size:12px; font-weight:900;
      color:rgba(255,255,255,.92);
      background: rgba(0,0,0,.25);
      border:1px solid rgba(255,255,255,.14);
      padding:6px 10px;
      border-radius: 999px;
      backdrop-filter: blur(10px);
    }
    .shot:nth-child(1){ grid-column: span 5; height: 220px; }
    .shot:nth-child(2){ grid-column: span 4; height: 220px; }
    .shot:nth-child(3){ grid-column: span 3; height: 220px; }
    .shot:nth-child(4){ grid-column: span 4; }
    .shot:nth-child(5){ grid-column: span 4; }
    .shot:nth-child(6){ grid-column: span 4; }

    /* FAQ */
    .faq{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      margin-top:14px;
    }
    details{
      border-radius: var(--radius);
      background: rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.12);
      box-shadow: var(--shadow2);
      padding:12px 14px;
    }
    summary{
      cursor:pointer;
      font-weight:900;
      list-style:none;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    summary::-webkit-details-marker{ display:none; }
    details p{
      margin:10px 0 0;
      color:var(--muted);
      line-height:1.55;
      font-weight:700;
      font-size:13px;
    }
    .chev{
      width:26px; height:26px; border-radius:10px;
      background: rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.12);
      display:grid; place-items:center;
      transition: transform .18s var(--ease);
      flex:0 0 auto;
    }
    details[open] .chev{ transform: rotate(180deg); }

    /* Contacto */
    .contact{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      margin-top:14px;
    }
    .form{ padding:16px; }
    label{ display:block; font-size:12px; font-weight:900; color:rgba(255,255,255,.86); margin:10px 0 6px; }
    input, textarea, select{
      width:100%;
      padding:12px 12px;
      border-radius: 14px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(0,0,0,.22);
      color:var(--text);
      font-weight:700;
      outline:none;
      transition: border-color .18s var(--ease), background .18s var(--ease);
    }
    input:focus, textarea:focus, select:focus{
      border-color: rgba(255,30,60,.45);
      background: rgba(0,0,0,.28);
    }
    textarea{ min-height: 120px; resize: vertical; }
    .mini{
      color:var(--muted);
      font-size:12px;
      font-weight:700;
      line-height:1.45;
      margin-top:10px;
    }
    .box{ padding:16px; }
    .box b{ display:block; margin-bottom:6px; }
    .kv{
      margin-top:10px;
      display:grid;
      gap:10px;
      color:var(--muted);
      font-weight:700;
      font-size:13px;
      line-height:1.45;
    }
    .kv div{
      padding:10px 12px;
      border-radius: 14px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
    }

    footer{
      padding:30px 0 34px;
      border-top:1px solid rgba(255,255,255,.08);
      color:var(--muted);
      font-weight:700;
      font-size:12px;
    }

    /* Reveal */
    .reveal{
      opacity:0;
      transform: translateY(14px);
      transition: opacity .7s var(--ease), transform .7s var(--ease);
    }
    .reveal.on{ opacity:1; transform: translateY(0); }

    /* Grupo flotante redes sociales + WhatsApp */
    .social-float {
      position: fixed;
      right: 18px; bottom: 18px;
      z-index: 60;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
    }

    /* Fila de íconos de redes */
    .social-icons {
      display: flex;
      gap: 8px;
      align-items: center;
    }
    .social-icon {
      width: 38px; height: 38px;
      border-radius: 999px;
      display: grid; place-items: center;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,.15);
      background: rgba(255,255,255,.08);
      color: rgba(255,255,255,.85);
      transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
      box-shadow: 0 8px 24px rgba(0,0,0,.4);
    }
    .social-icon svg {
      width: 17px; height: 17px;
    }
    .social-icon:hover { transform: translateY(-3px); }

    /* Colores de hover por red */
    .social-icon.tiktok:hover    { background: rgba(0,0,0,.7);          border-color: rgba(255,255,255,.35); box-shadow: 0 8px 24px rgba(0,0,0,.5); }
    .social-icon.instagram:hover { background: rgba(193,53,132,.35);     border-color: rgba(193,53,132,.6);   box-shadow: 0 8px 24px rgba(193,53,132,.3); }
    .social-icon.facebook:hover  { background: rgba(24,119,242,.35);     border-color: rgba(24,119,242,.6);   box-shadow: 0 8px 24px rgba(24,119,242,.3); }
    .social-icon.youtube:hover   { background: rgba(255,0,0,.35);        border-color: rgba(255,0,0,.6);      box-shadow: 0 8px 24px rgba(255,0,0,.3); }
    .social-icon.discord:hover   { background: rgba(88,101,242,.35);     border-color: rgba(88,101,242,.6);   box-shadow: 0 8px 24px rgba(88,101,242,.3); }

    /* WhatsApp flotante */
    .wa{
      display:flex; align-items:center; gap:10px;
      padding:12px 14px;
      border-radius:999px;
      background: rgba(52,211,153,.14);
      border:1px solid rgba(52,211,153,.35);
      box-shadow: 0 18px 60px rgba(0,0,0,.45);
      backdrop-filter: blur(10px);
      font-weight:950;
      color:rgba(255,255,255,.92);
      transition: transform .18s var(--ease);
    }
    .wa:hover{ transform: translateY(-2px); }
    .wa .bubble{
      width:34px; height:34px; border-radius:999px;
      display:grid; place-items:center;
      background: rgba(52,211,153,.18);
      border:1px solid rgba(52,211,153,.38);
    }

    /* Responsive */
    @media (max-width: 980px){
      .hero-grid{ grid-template-columns: 1fr; }
      .panel{ min-height: 340px; }
      .cards{ grid-template-columns: repeat(2, 1fr); }
      .fleet{ grid-template-columns:1fr;}
      .pricing{ grid-template-columns: 1fr; }
      .faq{ grid-template-columns: 1fr; }
      .contact{ grid-template-columns: 1fr; }
      nav .links{ display:none; }
    }
    @media (max-width: 520px){
      .cards{ grid-template-columns: 1fr; }
      .shot:nth-child(1), .shot:nth-child(2), .shot:nth-child(3),
      .shot:nth-child(4), .shot:nth-child(5), .shot:nth-child(6){
        grid-column: span 12; height: 170px;
      }
    }
  
.shot img,
.shot video{
width:100%;
height:100%;
object-fit:cover;
border-radius:12px;
}
.watermark{
position:absolute;
right:10%;
bottom:10%;
width:300px;
opacity:0.05;
pointer-events:none;
}
.footer-logo{
width:60px;
opacity:0.8;
margin-bottom:10px;
}
.thumb{
  position: relative;
  overflow: hidden;
}

.thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.thumb::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(5,5,8,.9), transparent);
}
.thumb img{
  transition: transform .4s ease;
}

.card:hover .thumb img{
  transform: scale(1.08);
}
.fleet{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap:20px;
}
.fleet{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap:20px;
  align-items:start;
}
.fleet .card{
  height:fit-content;
}
body::before{
content:"";
position:fixed;
inset:0;
background:radial-gradient(circle at 50% 60%, rgba(255,30,60,0.25), transparent 60%);
pointer-events:none;
z-index:-1;
}
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}

.modal-content {
  background: #1a1a1a;
  margin: 10% auto;
  padding: 30px;
  width: 400px;
  border-radius: 12px;
  color: white;
}

.cerrar {
  float: right;
  font-size: 25px;
  cursor: pointer;
}
/* ===== DRONE CARDS ===== */
.drone-card {
  padding: 0;
  cursor: pointer;
  transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.drone-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,30,60,.35);
  box-shadow: 0 20px 60px rgba(255,30,60,.12), var(--shadow2);
}
.drone-card .thumb {
  height: 190px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.drone-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease);
}
.drone-card:hover .thumb img {
  transform: scale(1.07);
}
.drone-card .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,8,.88) 0%, transparent 55%);
}
.drone-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px 14px;
}
.drone-card-footer b {
  display: block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .1px;
}
.drone-card-footer span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}
.btn-info {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,30,60,.45);
  background: linear-gradient(135deg, rgba(255,30,60,.18), rgba(255,77,109,.10));
  color: rgba(255,255,255,.92);
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: all .18s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-info svg {
  width: 16px;
  height: 16px;
  stroke: var(--glow2);
}
.btn-info:hover {
  background: linear-gradient(135deg, rgba(255,30,60,.32), rgba(255,77,109,.20));
  border-color: rgba(255,30,60,.7);
  transform: translateY(-1px);
}

/* ===== MODAL OVERLAY ===== */
.drone-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5,5,8,.82);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fadeIn .22s var(--ease);
}
.drone-modal-overlay.open {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ===== MODAL BOX ===== */
.drone-modal-box {
  background: linear-gradient(160deg, #0e0e18, #120308 80%);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  box-shadow: 0 40px 120px rgba(0,0,0,.8), 0 0 0 1px rgba(255,30,60,.12);
  width: min(860px, 100%);
  height: min(560px, 90vh);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  position: relative;
  animation: slideUp .28s var(--ease);
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 620px) {
  .drone-modal-box {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 1fr;
    height: min(720px, 90vh);
  }
}

/* ===== CERRAR ===== */
.drone-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 10;
  width: 34px; height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all .18s var(--ease);
}
.drone-modal-close:hover {
  background: rgba(255,30,60,.18);
  border-color: rgba(255,30,60,.45);
  color: #fff;
}
.drone-modal-close svg { width: 16px; height: 16px; }

/* ===== CARRUSEL ===== */
.drone-carousel {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 24px 0 0 24px;
  background: #08080f;
}
@media (max-width: 620px) {
  .drone-carousel {
    border-radius: 24px 24px 0 0;
    height: 240px;
  }
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform .45s var(--ease);
}
.carousel-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #08080f;
}
.carousel-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  z-index: 1;
}
/* Fondo desenfocado detrás de la imagen */
.carousel-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-src);
  background-size: cover;
  background-position: center;
  filter: blur(20px) brightness(.3) saturate(.5);
  transform: scale(1.15);
  z-index: 0;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all .18s var(--ease);
}
.carousel-btn:hover { background: rgba(255,30,60,.5); border-color: rgba(255,30,60,.7); }
.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }
.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 5;
}
.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 99px;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.carousel-dot.active {
  width: 20px;
  background: var(--glow2);
}

/* ===== MODAL BODY ===== */
.drone-modal-body {
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.drone-modal-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,30,60,.4);
  background: rgba(255,30,60,.12);
  color: var(--glow2);
  margin-bottom: 8px;
}
.drone-modal-body h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.3px;
}
.drone-modal-body p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}
.drone-modal-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.drone-spec-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.drone-spec-row .spec-icon {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}
.drone-spec-row .spec-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  display: block;
  margin-bottom: 1px;
}
.drone-modal-cta {
  width: 100%;
  justify-content: center;
  padding: 13px;
  font-size: 14px;
  border-radius: 14px;
}

/* ===== SECCIONES EXTRA DEL MODAL ===== */
.modal-section-title {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--glow2);
  margin-top: 6px;
  margin-bottom: 4px;
  padding: 0 2px;
}
.modal-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.modal-list li {
  position: relative;
  padding: 8px 12px 8px 30px;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.4;
}
.modal-list li::before {
  content: "→";
  position: absolute;
  left: 10px;
  color: var(--glow2);
  font-weight: 900;
  font-size: 12px;
}
.modal-marketing {
  margin-top: 4px;
  padding: 12px 14px;
  border-radius: 12px;
  border-left: 3px solid var(--glow1);
  background: linear-gradient(135deg, rgba(255,30,60,.10), rgba(255,77,109,.05));
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
  font-style: italic;
}

/* ===== SECCIÓN SPONSORS ===== */
.sponsor-card {
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow2);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s var(--ease);
}
.sponsor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 10% 50%, rgba(255,30,60,.07), transparent 60%);
  pointer-events: none;
}
.sponsor-card:hover {
  border-color: rgba(255,255,255,.2);
}

/* Logo + nombre */
.sponsor-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.sponsor-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  padding: 8px;
  flex-shrink: 0;
}
.sponsor-brand b {
  display: block;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.2px;
  margin-bottom: 4px;
}
.sponsor-brand span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

/* Descripción */
.sponsor-desc {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
  margin: 0;
  max-width: 72ch;
  border-left: 2px solid rgba(255,30,60,.4);
  padding-left: 14px;
}

/* Botones */
.sponsor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sponsor-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: transform .18s var(--ease), filter .18s var(--ease);
  text-decoration: none;
  color: #fff;
  border: 1px solid transparent;
}
.sponsor-btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.sponsor-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.sponsor-btn.appstore {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-color: rgba(255,255,255,.18);
}
.sponsor-btn.playstore {
  background: linear-gradient(135deg, #0d3b2e, #1a5c40);
  border-color: rgba(52,211,99,.25);
}
.sponsor-btn.whatsapp {
  background: linear-gradient(135deg, #075e54, #128c7e);
  border-color: rgba(37,211,102,.3);
}
.sponsor-btn.web {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}

/* ===== CONTACT STATS CARD ===== */
.contact-stats-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cstats-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--glow2);
}
.cstats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cstat-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cstat-num {
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -1px;
  line-height: 1;
  background: linear-gradient(135deg, #fff 30%, var(--glow2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cstat-desc {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.3;
}
.cdiffs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cdiff {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}
.cdiff-icon {
  font-size: 16px;
  flex-shrink: 0;
}

/* ===== PERFORMANCE MOBILE ===== */

/* Reducir animaciones pesadas en mobile */
@media (hover: none) and (pointer: coarse) {

  /* Desactivar shimmer en thumbs (animación CSS continua) */
  .thumb::after { animation: none !important; }

  /* Desactivar sweep del radar (animación CSS continua) */
  .sweep::before { animation: none !important; }

  /* Desactivar spin del logo */
  .logo::before { animation: none !important; }

  /* Simplificar transiciones de cards */
  .card { transition: none !important; }
  .card:hover { transform: none !important; }

  /* Reducir blur del fondo (muy costoso en mobile) */
  header { backdrop-filter: blur(6px) !important; }
  .drone-modal-overlay { backdrop-filter: blur(4px) !important; }

  /* Videos: ocupar bien el espacio */
  .shot video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Nav links ocultos en mobile ya estaban, aseguramos botones CTA */
  .cta .btn:first-child { display: none; }
}

/* Hint al browser para optimizar layers */
.card { will-change: transform; }
.reveal { will-change: opacity, transform; }
.reveal.on { will-change: auto; }
