/* VARIABLES GLOBALES */
:root {
    --negro: #09090b;
    --negro-card: #121214;
    --morado: #7c3aed;
    --morado-glow: rgba(124, 58, 237, 0.3);
    --blanco: #ffffff;
    --gris: #dbdbdb;
}

/* RESET & BASE */
body {
    background-color: var(--negro);
    color: white;
    font-family: 'Poppins', sans-serif;
}

/* NAVBAR */
.navbar {
    background: rgba(9, 9, 11, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #27272a;
    padding: 1rem 0;
}

.text-purple { color: var(--morado); }

.btn-nav-purple {
    background: var(--morado);
    color: white !important;
    border-radius: 8px;
    padding: 8px 20px !important;
    font-weight: 600;
}

/* HERO SECTION */
.hero-section { padding: 120px 0 60px; }

.badge-tech {
    background: #1e1e22;
    border: 1px solid #3f3f46;
    color: var(--gris);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-top: 20px;
}

.hero-title span {
    background: linear-gradient(to right, #a78bfa, #7c3aed);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: var(--gris);
    font-size: 1.25rem;
    margin-bottom: 30px;
}

/* BOTONES */
.btn-purple-lg {
    background: var(--morado);
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-purple-lg:hover {
    background: #6d28d9;
    box-shadow: 0 0 20px var(--morado-glow);
}

.btn-outline-white {
    border: 1px solid #3f3f46;
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
}

/* TARJETAS */
.custom-card {
    background: var(--negro-card);
    border: 1px solid #27272a;
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
   
}

.custom-card:hover {
    border-color: var(--morado);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.card-icon { font-size: 2.5rem; margin-bottom: 1rem; }

/* COTIZADOR */
.cotizador-inner {
    background: var(--negro-card);
    border-radius: 30px;
    border: 1px solid #27272a;
}

.form-select, .form-control {
    background: #1c1c1f;
    border: 1px solid #3f3f46;
    color: white;
    padding: 12px;
}

.form-select:focus {
    background: #1c1c1f;
    color: white;
    border-color: var(--morado);
}

.check-card {
    background: #1c1c1f;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid transparent;
}

.check-card:has(input:checked) {
    border-color: var(--morado);
    background: rgba(124, 58, 237, 0.05);
}

/* CAJA DE PRECIO */
.price-box {
    background: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%);
    border-radius: 20px;
    color: white;
}

.price-display {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 10px 0;
}

/* --- ESTILOS DE LA SECCIÓN IDENTIDAD (NOSOTROS) --- */
#nosotros {
    padding-top: 100px;
    padding-bottom: 100px;
}


.identity-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #1c1c1f;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    margin-top: -15px; 
}


.identity-card .card-icon {
    font-size: 2.2rem;
    margin-bottom: 0;
    
}




.identity-card:hover .identity-icon-wrapper {
    background: var(--morado);
    border-color: var(--morado);
    box-shadow: 0 0 20px var(--morado-glow);
    transform: scale(1.1);
}


.objectives-list li {
    margin-bottom: 10px;
    padding-left: 5px;
}


#nosotros .badge-tech {
    background-color: #0f0f12;
}

.text-muted{
    color: var(--gris);
}


/* --- TARJETA DE FORMULARIO MORADA --- */
.form-purple-card {
    background: linear-gradient(135deg, var(--morado) 0%, #4c1d95 100%);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.4) !important;
}


.bg-dark-input {
    background-color: rgba(0, 0, 0, 0.2) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.bg-dark-input::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.bg-dark-input:focus {
    background-color: rgba(0, 0, 0, 0.3) !important;
    box-shadow: none;
    border-color: white !important;
}


.text-purple-dark {
    color: #4c1d95 !important;
}


#precioTotal {
    transition: all 0.3s ease;
}

