/* --- VICON KDS: MINIMAL PREMIUM STYLE --- */
:root {
    --v-accent: #008006;
    --v-text-dark: #121212;
    --v-text-light: #555555;
    --v-bg-soft: #fbfbfb;
    --v-border: #eeeeee;
    --v-white: #ffffff;
}

body {
    background-color: var(--v-white);
    color: var(--v-text-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    margin: 0;
}

.v-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 25px;
}

/* --- HERO CON IMAGEN Y TEXTO A LA DERECHA --- */
.v-hero-kds {
    position: relative;
    min-height: 85vh; /* Un poco más de altura para impacto visual */
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; 
    overflow: hidden;
}

/* Capa oscura gradual para legibilidad */
.v-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
    z-index: 1;
}

.v-flex-right {
    display: flex;
    justify-content: flex-end; /* Empuja a la derecha */
    position: relative;
    z-index: 2;
    width: 100%;
}

.v-hero-content {
    text-align: left;
    color: var(--v-white);
}

.v-badge {
    background: var(--v-accent); /* Badge más visible sobre imagen */
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 24px;
}

.v-hero-content h1 {
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.v-hero-content h1 span {
    color: var(--v-accent);
}

.v-hero-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.v-hero-btns {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

/* Botones especiales para el Hero (sobre fondo oscuro) */
.v-btn-primary {
    background: var(--v-accent);
    color: white !important;
    padding: 18px 35px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.v-btn-outline-hero {
    padding: 18px 35px;
    border: 2px solid white;
    color: white !important;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.v-btn-outline-hero:hover {
    background: white;
    color: var(--v-text-dark) !important;
}

/* --- SECCIONES INTERMEDIAS --- */
.v-kds-intro { padding: 100px 0; }
.v-grid-intro { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.v-sol-label { color: var(--v-accent); font-weight: 700; text-transform: uppercase; font-size: 13px; display: block; margin-bottom: 10px; }
.v-intro-text h2 { font-size: 2.8rem; font-weight: 800; margin-bottom: 25px; line-height: 1.1; }
.v-list-check { list-style: none; padding: 0; margin-top: 30px; }
.v-list-check li { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; font-weight: 500; }
.v-list-check i { color: var(--v-accent); }
.v-intro-visual img { width: 100%; border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.05); border: 1px solid var(--v-border); }

/* --- FEATURES --- */
.v-kds-features { padding: 100px 0; background: var(--v-bg-soft); }
.v-section-header { text-align: center; margin-bottom: 60px; }
.v-features-grid-kds { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.v-kds-card { background: var(--v-white); padding: 45px; border-radius: 20px; border: 1px solid var(--v-border); transition: 0.3s; }
.v-kds-card:hover { border-color: var(--v-accent); transform: translateY(-5px); }
.v-kds-card i { font-size: 32px; color: var(--v-accent); margin-bottom: 25px; }

/* --- INFO BOX --- */
.v-kds-info { padding: 80px 0; }
.v-info-box { background: var(--v-text-dark); color: white; padding: 60px; border-radius: 30px; text-align: center; }
.v-info-tags { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-top: 30px; }
.v-info-tags span { background: rgba(255,255,255,0.1); padding: 12px 24px; border-radius: 100px; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.v-info-tags i { color: var(--v-accent); }

/* --- CTA FINAL --- */
.v-kds-cta { padding: 120px 0; text-align: center; background: var(--v-white); }
.v-btn-final { background: var(--v-accent); color: white !important; padding: 20px 50px; border-radius: 12px; font-weight: 700; font-size: 1.1rem; text-decoration: none; display: inline-block; transition: 0.3s; }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .v-flex-right { justify-content: center; }
    .v-hero-content { text-align: center; }
    .v-hero-btns { justify-content: center; flex-direction: column; }
    .v-hero-content h1 { font-size: 2.8rem; }
    .v-grid-intro, .v-features-grid-kds { grid-template-columns: 1fr; }
}