/* --- ESTILOS UNIFICADOS VICON --- */
: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.55; z-index: 1; }
.v-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.v-hero-content { position: relative; z-index: 2; max-width: 750px; color: #fff; }
.v-badge { display: inline-block; padding: 8px 18px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50px; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); }
.v-hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; font-weight: 800; }
.v-hero h1 span { color: var(--accent-color); }
.v-hero p { font-size: 1.2rem; opacity: 0.9; margin-top: 20px; }

.v-btn-primary { display: inline-block; padding: 18px 45px; background: var(--accent-color); color: #fff !important; text-decoration: none; border-radius: 60px; font-weight: 700; transition: var(--transition); }

/* PARTNERS */
.v-partners { padding: 60px 0; background: var(--bg-light); text-align: center; }
.v-partner-logos { display: flex; justify-content: center; align-items: center; gap: 60px; flex-wrap: wrap; margin-top: 40px; }
.v-partner-logos img { height: 50px; width: 160px; object-fit: contain; filter: grayscale(100%); opacity: 0.5; transition: var(--transition); }
.v-partner-logos img:hover { filter: grayscale(0%); opacity: 1; }

/* SOLUTIONS & CARDS */
.v-solutions { padding: 100px 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: 30px; }
.v-sol-card { background: #fff; border: 1px solid #eee; border-radius: 35px; padding: 50px; transition: var(--transition); }
.v-sol-card:hover { border-color: var(--accent-color); box-shadow: 0 30px 60px 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; letter-spacing: 1px; }

/* --- SECCIÓN ECOMMERCE --- */
.v-ecommerce { padding: 100px 0; background: #fdfdfd; border-top: 1px solid #f0f0f0; }
.v-ecommerce-header { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.v-ecommerce-header h2 { font-size: 3rem; font-weight: 800; margin-bottom: 20px; }
.v-ecommerce-header h2 span { color: var(--accent-color); }
.v-ecommerce-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.v-eco-feature-card { background: #fff; padding: 40px; border-radius: 30px; border: 1px solid #eee; text-align: center; transition: var(--transition); }
.v-eco-feature-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); border-color: var(--accent-color); }
.v-icon-small { font-size: 30px; color: var(--accent-color); margin-bottom: 20px; }
.v-eco-feature-card h4 { font-size: 1.25rem; font-weight: 800; margin-bottom: 15px; }
.v-eco-feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* HIOFFICE ERP */
.v-hioffice { padding: 100px 0; }
.v-hioffice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.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: 15px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.v-features-grid i { color: var(--accent-color); }
.v-hioffice-visual img { width: 100%; border-radius: 30px; box-shadow: 0 30px 60px rgba(0,0,0,0.1); }

/* STOCKS BANNER */
.v-stocks-banner { background: var(--primary-color); color: #fff; padding: 100px 0; text-align: center; }
.v-icon-large { font-size: 50px; color: var(--accent-color); margin-bottom: 25px; }
.v-stocks-banner h3 { font-size: 2.5rem; margin-bottom: 20px; font-weight: 800; }
.v-stocks-banner p { max-width: 800px; margin: 0 auto; font-size: 1.15rem; opacity: 0.85; line-height: 1.8; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .v-ecommerce-grid { grid-template-columns: 1fr; }
    .v-dual-layout, .v-hioffice-grid { grid-template-columns: 1fr; }
    .v-hioffice-text { text-align: center; }
    .v-features-grid { max-width: 500px; margin: 30px auto; text-align: left; }
}