.vt-hero {
    background: #ffffff;
    padding: 4rem 0;
}
.vt-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.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;
}
.vt-hero-titulo {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    color: #1e293b;
    margin: 0 0 1rem;
}
.vt-hero-highlight { color: var(--color-primario); }
.vt-hero-bajada {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.75rem;
    max-width: 480px;
}
.vt-hero-ctas { display: flex; gap: 1rem; }
.vt-hero-imagen-bg {
    background: #f0f9ff;
    border-radius: 16px;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.vt-hero-imagen-bg img { max-width: 100%; max-height: 360px; object-fit: contain; }

.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; }

.vt-newsletter { background: #f0f9ff; padding: 3rem 0; }
.vt-newsletter-inner { text-align: center; }
.vt-newsletter-inner h3 { font-size: 1.5rem; color: #1e293b; margin-bottom: 0.5rem; }
.vt-newsletter-inner p { color: #64748b; margin-bottom: 1.5rem; }
.vt-newsletter-form { display: flex; gap: 0.75rem; justify-content: center; max-width: 420px; margin: 0 auto; }
.vt-newsletter-form input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .vt-hero-grid { grid-template-columns: 1fr; }
    .vt-trust-grid { grid-template-columns: 1fr; }
    .vt-soluciones-grid { grid-template-columns: 1fr; }
    .vt-newsletter-form { flex-direction: column; }
}
