:root {
    --primary-color: #1a1a1a;
    --accent-color: #008006;
    --text-muted: #666;
    --bg-light: #fcfcfc;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--primary-color); margin: 0; }

.v-container { max-width: 1300px; margin: 0 auto; padding: 0 40px; }

/* HERO */
.v-hero { position: relative; height: 70vh; display: flex; align-items: center; background: #000; overflow: hidden; }
.v-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.5; z-index: 1; }
.v-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.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: 11px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; background: rgba(255,255,255,0.1); backdrop-filter: blur(5px); }
.v-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); 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: 30px; }

.v-btn-primary { display: inline-block; padding: 16px 35px; background: var(--accent-color); color: #fff !important; text-decoration: none; border-radius: 50px; font-weight: 700; transition: var(--transition); }
.v-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,128,6,0.3); }

/* PARTNERS (LOGOS IGUALES) */
.v-partners { padding: 50px 0; background: var(--bg-light); text-align: center; border-bottom: 1px solid #eee; }
.v-partners p { font-size: 12px; text-transform: uppercase; letter-spacing: 3px; color: var(--text-muted); margin-bottom: 40px; font-weight: 700; }
.v-partner-logos { display: flex; justify-content: center; align-items: center; gap: 60px; flex-wrap: wrap; }
.v-partner-logos img { height: 50px; width: 160px; object-fit: contain; filter: grayscale(100%); opacity: 0.6; transition: var(--transition); }
.v-partner-logos img:hover { filter: grayscale(0%); opacity: 1; }

/* SOLUTIONS */
.v-solutions { padding: 80px 0; }
.v-section-header { text-align: center; margin-bottom: 60px; }
.v-section-header h2 { font-size: 2.8rem; font-weight: 800; }
.v-section-header h2 span { color: var(--accent-color); }
.v-dual-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.v-sol-card { background: #fff; border: 1px solid #eee; border-radius: 30px; padding: 40px; transition: var(--transition); }
.v-sol-card:hover { border-color: var(--accent-color); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.v-sol-label { font-size: 11px; font-weight: 800; color: var(--accent-color); text-transform: uppercase; margin-bottom: 15px; display: block; }
.v-sol-card h3 { font-size: 2rem; margin-bottom: 15px; }
.v-features { list-style: none; padding: 0; }
.v-features li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; color: var(--text-muted); }
.v-features i { color: var(--accent-color); }

/* HIOFFICE */
.v-hioffice { padding: 80px 0; background: #fff; }
.v-hioffice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.v-hioffice-text h2 { font-size: 2.8rem; font-weight: 800; margin-bottom: 20px; }
.v-hioffice-text h2 span { color: var(--accent-color); }
.v-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; list-style: none; padding: 0; margin-top: 30px; }
.v-features-grid li { font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.v-features-grid i { color: var(--accent-color); }
.v-hioffice-visual img { width: 100%; }

/* STOCKS BANNER */
.v-stocks-banner { background: var(--primary-color); color: #fff; padding: 70px 0; text-align: center; }
.v-stocks-content { max-width: 800px; margin: 0 auto; }
.v-icon-large { font-size: 40px; color: var(--accent-color); margin-bottom: 20px; }
.v-stocks-banner h3 { font-size: 2rem; margin-bottom: 15px; }
.v-stocks-banner p { opacity: 0.8; font-size: 1.1rem; line-height: 1.6; }

/* ECOSYSTEM */
.v-ecosystem { padding: 80px 0; }
.v-glass-box { background: #f9f9f9; border-radius: 30px; padding: 50px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.v-eco-item { text-align: center; }
.v-icon { width: 60px; height: 60px; background: #fff; border-radius: 15px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--accent-color); font-size: 24px; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.v-eco-item h4 { font-size: 1.2rem; margin-bottom: 10px; }
/* RESPONSIVE */
@media (max-width: 992px) {
    .v-dual-layout, .v-hioffice-grid, .v-glass-box { grid-template-columns: 1fr; }
    .v-hioffice-text { text-align: center; }
    .v-features-grid { text-align: left; max-width: 400px; margin: 30px auto; }
}