.vt-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    background-size: 108% auto;
    background-position: 60% 28%;
    background-repeat: no-repeat;
    overflow: hidden;
}
.vt-hero-overlay-h {
    position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(to right,
        rgba(15,23,42,0.92) 0%,
        rgba(15,23,42,0.8) 30%,
        rgba(15,23,42,0.45) 60%,
        rgba(15,23,42,0.15) 85%,
        rgba(15,23,42,0.15) 100%);
}
.vt-hero-overlay-v {
    position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0) 50%,
        rgba(0,0,0,0.25) 80%,
        rgba(0,0,0,0.5) 100%);
}
.vt-hero-contenido {
    position: relative;
    z-index: 3;
    max-width: 620px;
}
.vt-hero-eyebrow {
    display: inline-block;
    color: var(--color-primario);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
.vt-hero-titulo {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 1rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.35);
}
.vt-hero-highlight { color: var(--color-primario); }
.vt-hero-bajada {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.75rem;
    max-width: 480px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
.vt-hero-ctas { display: flex; gap: 1rem; }

.vt-trust-strip { background: #f8fafc; padding: 2rem 0; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
.vt-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.vt-trust-item { display: flex; align-items: center; gap: 0.75rem; font-weight: 500; color: #1e293b; }

.vt-soluciones { padding: 3rem 0; }
.vt-soluciones-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.vt-solucion-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    transition: transform 0.2s ease;
}
.vt-solucion-card:hover { transform: translateY(-3px); }
.vt-solucion-flecha { color: var(--color-primario); font-size: 1.4rem; }

.precio-iva-incluido { font-size: 0.75rem; color: #64748b; margin-top: 0.15rem; }

@media (max-width: 768px) {
    .vt-hero {
        min-height: 420px;
        background-position: 78% 22%;
    }
    .vt-hero-overlay-h {
        background: linear-gradient(to right, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.6) 50%, rgba(15,23,42,0.6) 100%);
    }
    .vt-hero-titulo { font-size: 2.1rem; }
    .vt-hero-contenido { max-width: 100%; }
    .vt-trust-grid { grid-template-columns: 1fr; }
    .vt-soluciones-grid { grid-template-columns: 1fr; }
}
