:root {
    --primary-color: #1a1a1a;
    --accent-color: #008006; /* Azul tecnológico */
    --text-muted: #666;
    --bg-light: #fcfcfc;
    --glass: rgba(255, 255, 255, 0.8);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--primary-color);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

.v-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- HERO MODERNO --- */
.v-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

.v-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.6;
}

.v-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
}

.v-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: #fff;
}

.v-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

.v-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
}

.v-hero h1 span {
    color: var(--accent-color);
}

.v-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 300;
}



.v-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.3);
}

/* --- PARTNERS --- */
.v-partners {

    text-align: center;
    background: var(--bg-light);
}

.v-partners {
    padding: 25px 0; /* Un poco más de espacio arriba y abajo */
    text-align: center;
    background: var(--bg-light);
}

.v-partners p {
    font-size: 14px; /* Ligeramente más grande para legibilidad */
    text-transform: uppercase;
    letter-spacing: 3px; /* Más aire entre letras para look premium */
    color: var(--text-muted);
    margin-bottom: 50px; /* Más separación con los logos */
    font-weight: 600;
}

.v-partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px; /* Reducido un poco para mayor cohesión */
    flex-wrap: wrap;
    padding: 0 20px;
}

.v-partner-logos img { 
    /* Definimos un contenedor invisible de tamaño fijo para cada logo */
    height: 50px;       /* Altura fija para todos */
    width: 160px;       /* Ancho fijo para que el espacio ocupado sea igual */
    
    /* La magia para que no se deformen: */
    object-fit: contain; 
    
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.v-partner-logos img:hover { 
    filter: grayscale(0%); 
    opacity: 1;
    transform: translateY(-5px); /* Efecto de levante más elegante */
}

/* Ajuste para móviles */
@media (max-width: 768px) {
    .v-partner-logos {
        gap: 30px;
    }
    .v-partner-logos img {
        width: 120px; /* Un poco más pequeños en móvil */
        height: 40px;
    }
}
/* --- SOLUTIONS DUAL --- */
.v-solutions { padding: 120px 0; }

.v-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.v-section-header h2 { font-size: 3rem; font-weight: 800; }
.v-section-header h2 span { color: var(--accent-color); }

.v-dual-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.v-sol-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 32px;
    padding: 50px;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.v-sol-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 40px 80px rgba(0,0,0,0.04);
}

.v-sol-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-color);
    display: block;
    margin-bottom: 15px;
}

.v-sol-card h3 { font-size: 2.2rem; margin-bottom: 20px; font-weight: 800; }
.v-sol-card h3 span { font-weight: 300; display: block; }

.v-features { list-style: none; padding: 0; margin: 30px 0; }
.v-features li { margin-bottom: 12px; display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-muted); }
.v-features i { color: var(--accent-color); font-size: 12px; }

.v-sol-visual { margin-top: 40px; text-align: center; }
.v-sol-visual img { max-width: 100%; height: 180px; object-fit: contain; }

/* --- ECOSYSTEM GLASS --- */
.v-ecosystem { padding-bottom: 120px; }
.v-glass-box {
    background: var(--bg-light);
    border-radius: 40px;
    padding: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.v-eco-item { text-align: center; }
.v-icon { 
    width: 70px; height: 70px; background: #fff; border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 25px; font-size: 24px; color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.v-eco-item h4 { font-size: 1.3rem; margin-bottom: 15px; }
.v-eco-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 992px) {
    .v-dual-layout, .v-glass-box { grid-template-columns: 1fr; }
    .v-hero h1 { font-size: 3rem; }
}