/* apps/eyiro_website/eyiro_website/public/css/business.css */

/* Hero B2B (Fondo Oscuro) */
.hero-b2b {
    background-color: #0f172a;
    color: white;
    padding: 100px 0;
}
.hero-b2b h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.hero-b2b p {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Tarjeta del Formulario */
.form-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: inherit;
}

/* Grid de Beneficios Flotantes */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: -50px; /* Efecto flotante sobre el hero */
    position: relative;
    z-index: 10;
}
.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    border: 1px solid var(--border-color);
}
.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}