:root {
    --bg-dark: #0f0f13;
    --bg-darker: #050507;
    --primary: #0023b6; /* Azul del Logo */
    --accent: #8b5cf6;  /* Violeta Creativo */
    --text: #f3f4f6;
    --text-muted: #9ca3af;
    --card-bg: #1f2937;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVBAR */
.navbar {
    background: rgba(15, 15, 19, 0.95);
    padding: 0.8rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 50px; width: auto; display: block; } /* Estilo para el logo */
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: 0.9rem; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary); }
.btn-nav {
    border: 1px solid var(--text);
    padding: 0.5rem 1.2rem;
    border-radius: 5px;
}

/* HERO */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a2e 0%, var(--bg-dark) 70%);
    margin-top: 60px;
}
.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
}
.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2rem;
}
.badge {
    background: rgba(0, 35, 182, 0.1); /* Color primario del logo con transparencia */
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
}

/* BOTONES */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: white; border: 1px solid var(--primary); }
.btn-outline { border: 1px solid var(--text-muted); margin-left: 1rem; }
.btn-full { width: 100%; background: var(--primary); border: none; color: white; cursor: pointer; }

/* SECTIONS */
.section { padding: 5rem 0; }
.bg-dark { background-color: var(--bg-dark); }
.bg-darker { background-color: var(--bg-darker); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.section-header p { color: var(--text-muted); }

/* CARDS & GRIDS */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 2rem; }

.card, .card-wide {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}
.card:hover { border-color: var(--primary); transform: translateY(-5px); }
.icon { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; }

/* TIENDA */
.store-banner {
    background: linear-gradient(90deg, #1e1b4b, #312e81);
    padding: 3rem;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.mb-5 { margin-bottom: 3rem; }

/* CLIENTES */
.clients-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1.5rem;
    opacity: 0.6;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* CONTACTO */
.bg-gradient { background: linear-gradient(to bottom, var(--bg-dark), #000); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.contact-list li { margin-bottom: 1rem; font-size: 1.1rem; }
.contact-list i { margin-right: 10px; color: var(--primary); }
.social-links { margin-top: 1.5rem; display: flex; gap: 1.5rem; }
.social-links a { display: flex; align-items: center; font-size: 0.9rem; color: var(--text-muted); transition: color 0.3s; }
.social-links a i { margin-right: 8px; font-size: 1.2rem; }
.social-links a:hover { color: var(--primary); }

.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    border-radius: 5px;
    font-family: inherit;
}
.contact-form select option { background: black; }

footer { padding: 2rem 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; color: var(--text-muted); }

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .nav-links { display: none; } /* En móvil simplificamos por ahora */
    .contact-wrapper { grid-template-columns: 1fr; }
    .store-banner { text-align: center; justify-content: center; }
}