/* =============================================================
   MÓDULO: ZEPPELIN (TEMA AVIACIÓN / RADAR TÉCNICO)
   ============================================================= */

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Lato', sans-serif;
    background-color: #0f0f0f; 
    color: #e5e5e5; 
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Courier New', monospace; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- NAVBAR (Técnica) --- */
.navbar { 
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 5%; position: sticky; top: 0; z-index: 1000;
    background: rgba(15, 15, 15, 0.95); 
    border-bottom: 1px solid #32cd32; 
    backdrop-filter: blur(10px);
}
.navbar a { color: #aaa; } 
.logo { font-size: 1.5rem; font-weight: 700; letter-spacing: 2px; display: flex; align-items: center; gap: 12px; color: #fff; font-family: 'Cinzel', serif; }
.logo img { height: 45px; width: auto; object-fit: contain; filter: grayscale(100%); transition: 0.3s; }
.logo:hover img { filter: grayscale(0%); }
.logo span { color: #32cd32; }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a { font-size: 0.9rem; letter-spacing: 1px; font-weight: bold; text-transform: uppercase; }
.nav-links a:hover { color: #32cd32; }

/* --- HERO & RADAR --- */
.hero-zeppelin {
    background-color: #0f0f0f;
    background-image: 
        linear-gradient(rgba(50, 205, 50, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(50, 205, 50, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    min-height: 60vh; display: flex; align-items: center; justify-content: center;
    position: relative; border-bottom: 2px solid #32cd32; padding: 40px 20px; text-align: center;
}
.hero-zeppelin::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 40%, #000 100%); pointer-events: none;
}
.brand-intro { position: relative; z-index: 10; max-width: 900px; margin: 0 auto; }
.texto-suizo {
    font-weight: 700; letter-spacing: 4px; color: #32cd32; text-transform: uppercase;
    text-shadow: 0 0 20px rgba(50, 205, 50, 0.4); margin-bottom: 1.5rem;
}
.zeppelin-desc { font-family: 'Lato', sans-serif; font-size: 1.1rem; line-height: 1.8; color: #aaa; }
.zeppelin-desc strong { color: #32cd32; }

/* --- CONTROLES Y TARJETAS TÉCNICAS --- */
.section-padding { padding: 4rem 5%; max-width: 1400px; margin: 0 auto; }
.catalog-controls { display: flex; justify-content: center; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }
.catalog-controls input, .catalog-controls select {
    background: #1a1a1a; border: 1px solid #333; color: #32cd32;
    border-radius: 4px; padding: 12px 20px; outline: none; transition: 0.3s; font-family: 'Courier New', monospace; text-transform: uppercase; font-size: 0.85rem;
}
.catalog-controls input::placeholder { color: #555; }
.catalog-controls input:focus, .catalog-controls select:focus { border-color: #32cd32; box-shadow: 0 0 10px rgba(50, 205, 50, 0.2); }

.catalog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 2.5rem; }

.product-card {
    background: #111; border: 1px solid #222; border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5); transition: all 0.3s ease;
    overflow: hidden; text-align: center; padding: 1.5rem; cursor: pointer;
    position: relative;
}
.product-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
    background: #32cd32; transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.product-card:hover { transform: translateY(-5px); border-color: #333; box-shadow: 0 10px 20px rgba(50, 205, 50, 0.1); }
.product-card:hover::before { transform: scaleX(1); }
.product-card img { width: 100%; height: 250px; object-fit: contain; margin-bottom: 1rem; filter: drop-shadow(0 5px 10px rgba(0,0,0,0.8)); }
.product-card h4 { color: #e5e5e5; font-weight: 700; margin: 10px 0 5px 0; font-size: 1rem; }
.product-card .price { color: #32cd32; font-size: 1.3rem; font-weight: 800; font-family: 'Courier New', monospace; }
.category-tag { color: #aaa; background: #1a1a1a; padding: 4px 12px; border-radius: 2px; font-size: 0.75rem; letter-spacing: 1px; display: inline-block; margin-bottom: 5px; text-transform: uppercase; border: 1px solid #333; }

/* =========================================
   ESTRUCTURA BASE DEL MODAL (COMPACTO Y CRO + ESTILO ZEPPELIN)
   ========================================= */
.modal {
    display: none; position: fixed; z-index: 10000; left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; overflow-y: auto; padding: 0;
}
.modal-content {
    background: #0f0f0f; border: 1px solid #32cd32; border-radius: 4px;
    box-shadow: 0 0 30px rgba(50, 205, 50, 0.15); color: #e5e5e5;
    position: relative; display: flex; flex-direction: column; align-items: center; text-align: center;
    width: 92%; max-width: 420px; padding: 2.5rem 1rem 1rem 1rem; margin: auto;
    background-image: linear-gradient(rgba(50, 205, 50, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(50, 205, 50, 0.02) 1px, transparent 1px); background-size: 20px 20px;
}
.close-btn { position: absolute; top: 5px; right: 10px; font-size: 2.5rem; color: #555; cursor: pointer; font-weight: 300; line-height: 1; z-index: 20; width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.close-btn:hover { color: #32cd32; }
.galeria-container { position: relative; display: flex; align-items: center; justify-content: center; margin-bottom: 0.5rem; width: 100%; }
.modal-content img { width: 100%; height: auto; max-height: 250px; object-fit: contain; }
.nav-btn { background: rgba(0,0,0,0.5); color: #32cd32; border: 1px solid #32cd32; border-radius: 2px; padding: 10px; font-size: 1rem; cursor: pointer; position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; transition: 0.3s; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
.nav-btn:hover { background: #32cd32; color: #000; }
.prev { left: -5px; } .next { right: -5px; }

#modal-titulo { color: #32cd32; font-size: 1.2rem; margin-bottom: 5px; text-transform: uppercase; text-shadow: 0 0 10px rgba(50, 205, 50, 0.3); }
#modal-precio { color: #fff !important; font-size: 1.4rem !important; margin: 0 0 5px 0 !important; font-weight: 700; font-family: 'Courier New', monospace; }
#modal-descripcion { color: #aaa; border-top: 1px dashed #333; border-bottom: 1px dashed #333; font-family: 'Courier New', monospace; margin: 0.5rem 0 !important; padding: 5px 0 !important; font-size: 0.85rem !important; line-height: 1.4 !important; max-height: 65px; overflow-y: auto; text-align: left;}
#modal-descripcion::-webkit-scrollbar { width: 3px; }
#modal-descripcion::-webkit-scrollbar-thumb { background: #32cd32; border-radius: 2px; }

.privacy-wrapper { background: rgba(50, 205, 50, 0.05); border: 1px solid #222; border-radius: 2px; padding: 8px; color: #aaa !important; margin: 3px 0 !important; font-size: 0.75rem !important; display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; }
.privacy-wrapper a { color: #32cd32 !important; text-decoration: none; font-weight: bold; }
.privacy-wrapper a:hover { text-decoration: underline; color: #fff !important; }
.privacy-wrapper input[type="checkbox"] { accent-color: #32cd32; width: 16px; height: 16px; cursor: pointer; }

.btn-llamada-doble {
    background: #32cd32; color: #000; border: none; box-shadow: 0 0 15px rgba(50, 205, 50, 0.2); border-radius: 2px;
    padding: 10px !important; margin-top: 10px !important; transition: 0.3s ease;
    display: flex; flex-direction: column; align-items: center; width: 100%; text-transform: uppercase; font-family: 'Courier New', monospace; font-weight: bold;
}
.btn-llamada-doble:hover { background: #fff; box-shadow: 0 0 20px rgba(255, 255, 255, 0.4); }
.btn-llamada-doble .texto-grande { font-weight: 800; letter-spacing: 1px; font-size: 0.9rem !important; margin-bottom: 2px !important; }

/* --- FOOTER --- */
footer { background: #0a0a0a; color: #aaa; padding: 3rem 5% 1rem; border-top: 2px solid #333; font-family: 'Courier New', monospace; }
.footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; }
.contact-details h3 { color: #32cd32; margin-bottom: 1rem; font-weight: 700; letter-spacing: 2px; }
.contact-details p { margin-bottom: 0.3rem; font-size: 0.9rem; }
.copyright { text-align: center; margin-top: 3rem; border-top: 1px solid #222; padding-top: 1rem; font-size: 0.8rem; }
.legal-links { margin-top: 10px; font-size: 0.75rem; text-align: center; }
.legal-links a { color: #32cd32; text-decoration: none; font-weight: bold; transition: 0.3s; }
.legal-links a:hover { color: #fff; }

/* --- MÓVIL --- */
@media (max-width: 768px) {
    .burger { display: block; cursor: pointer; }
    .burger div { width: 25px; height: 2px; background-color: #32cd32; margin: 5px; transition: all 0.3s ease; }
    .nav-links { background: #111 !important; border-left: 2px solid #32cd32; position: absolute; right: 0; top: 70px; height: 90vh; width: 80%; flex-direction: column; transform: translateX(100%); transition: 0.5s ease; justify-content: center; box-shadow: -5px 0 20px rgba(0,0,0,0.8); }
    .nav-links.nav-active { transform: translateX(0%); }
    .nav-links a { color: #aaa !important; border-bottom: 1px dashed #333; width: 80%; text-align: center; padding-bottom: 10px; }
    
    .modal-content { padding: 2rem 0.8rem 1rem 0.8rem; margin: 2vh auto; }
    .modal-content img { max-height: 180px !important; }
    #modal-descripcion { max-height: 50px; }
}