/* Estilos para la página de selección de empresa */
.company-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    color: #333;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.07);
    color: #0d6efd; /* Color primario de Bootstrap */
}

/* Estilos para el contenedor del formulario */
#form-container {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: none;
}

/* Estilos para los botones de tipo de documento */
.btn-group .btn-check:checked+.btn {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
    box-shadow: none;
}

.page-header {
    padding: 60px 0;
    background-color: #f8f9fa; /* Un fondo suave */
    border-bottom: 1px solid #dee2e6;
}

.product-section {
    padding: 80px 0;
}

/* Para la sección con fondo claro y bordes redondeados en responsive */
.product-section.bg-light {
    padding: 80px 15px;
    margin: 40px 0;
}

@media (min-width: 992px) {
    .product-section.bg-light {
        padding: 80px 40px;
        border-radius: 15px;
    }
}

.product-image {
    transition: transform 0.3s ease-in-out;
}

.product-image:hover {
    transform: scale(1.03);
}

.product-tagline {
    font-size: 1.25rem;
    font-weight: 300;
    color: #6c757d; /* text-muted de Bootstrap */
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.feature-list li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
}

.feature-list .fa-check-circle {
    margin-top: 5px; /* Alinea el ícono con el texto */
}
