/* =========================================
   NOSOTROS - NIVEL PRO (BENTO GRID)
   ========================================= */

.nosotros-wrapper {
    background-color: #050505;
    color: #fff;
    padding: 80px 20px;
    font-family: 'Segoe UI', system-ui, sans-serif;
    min-height: 100vh;
}

/* --- HERO SECTION --- */
.about-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.badge-pill {
    background: rgba(255, 152, 0, 0.15);
    color: var(--brand-accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(90deg, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-subtitle {
    font-size: 1.2rem;
    color: #888;
    line-height: 1.6;
}

/* --- BENTO GRID LAYOUT --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columnas */
    grid-template-rows: 300px 180px; /* Alturas de filas */
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Estilo Base de las Tarjetas */
.bento-card {
    background: #111;
    border-radius: 24px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid #222;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: #333;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* --- TARJETA 1: PRINCIPAL (Ocupa 2 columnas) --- */
.card-main {
    grid-column: span 2;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
}

.card-main h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

.card-main p {
    font-size: 1.1rem;
    color: #aaa;
    max-width: 80%;
    margin-bottom: 25px;
}

.btn-arrow {
    color: var(--brand-accent);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s;
}

.btn-arrow:hover {
    gap: 15px;
    color: #fff;
}

/* Efecto de luz de fondo en la tarjeta principal */
.card-bg-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(8, 82, 161, 0.2), transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

/* --- TARJETAS PEQUEÑAS (Vapes y Lujo) --- */
.card-vape {
    background: linear-gradient(to bottom right, #1a1a1a, #150a00); /* Toque naranja oscuro */
}
.card-luxury {
    background: linear-gradient(to bottom right, #1a1a1a, #000a15); /* Toque azul oscuro */
}

.card-vape:hover, .card-luxury:hover {
    background: #222;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--brand-accent);
}
.card-luxury .card-icon { color: var(--brand-blue); }

.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #eee;
}
.bento-card p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.4;
}

/* --- TARJETA TRUST (Ocupa todo el ancho abajo) --- */
.card-trust {
    grid-column: span 3; /* Ocupa las 3 columnas */
    flex-direction: row; /* Elementos al lado */
    justify-content: space-around;
    align-items: center;
    background: #0f0f0f;
    border: 1px solid #1f1f1f;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.trust-item i {
    font-size: 2rem;
    color: #333;
    transition: color 0.3s;
}

.trust-item:hover i {
    color: var(--brand-accent);
}

.trust-item div {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    color: #fff;
    font-size: 1.1rem;
}

.trust-item span {
    color: #666;
    font-size: 0.9rem;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background-color: #222;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 991px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .bento-grid {
        grid-template-columns: 1fr; /* Todo en una columna */
        grid-template-rows: auto; /* Altura automática */
    }

    .card-main, .card-trust {
        grid-column: span 1;
    }

    .card-trust {
        flex-direction: column; /* Iconos uno abajo del otro en celular */
        gap: 30px;
        align-items: flex-start;
        padding: 40px;
    }

    .trust-divider {
        display: none;
    }
}