/* --- SECCIÓN INICIO --- */
/* Estilos para la sección Hero */
.hero-saas {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 1px solid #eee;
}

.hero-saas h1 {
    color: #1a1a1a;
    font-size: 3.5rem;
}

.checked-list li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #4a4a4a;
}

/* Efecto para la imagen */
.img-frame {
    position: relative;
    padding: 10px;
}

.floating-card {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    font-weight: bold;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Mejora de botones */
.btn-danger {
    background-color: #A30B14;
    border: none;
    border-radius: 50px; /* Bordes redondeados modernos */
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background-color: #820910;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(163, 11, 20, 0.4);
}

/* Estilos para las tarjetas de beneficios */
/* Contenedor de iconos circulares */
.icon-shape {
    font-size: 2rem;
    background: #fff5f5; /* Un rojo muy clarito de fondo */
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin: 0 auto;
}

/* Efecto para las tarjetas */
.saas-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
}

.saas-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1) !important;
}

.saas-card h5 {
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Estilos para la lista de funcionalidades */
.features-list {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-icon {
    background: #e9ecef;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.feature-item h6 {
    color: #A30B14; /* Rojo MBM */
    font-size: 1.1rem;
}

.feature-item p {
    margin-bottom: 0;
    line-height: 1.4;
}

/* Estilos para Gestión Integral */
.gestao-icon {
    font-size: 3rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.gestao-icon:hover {
    transform: scale(1.2) rotate(5deg);
}

.rounded-custom {
    border-radius: 20px;
}

/* Efecto para resaltar la tarjeta de Inteligencia de Negocio */
.bg-dark {
    background: #2d3436 !important;
}

.text-warning {
    color: #fdcb6e !important;
}

/* Bordes redondeados para el contenedor de cierre */
.rounded-custom {
    border-radius: 25px !important;
}

/* Efecto de brillo para el botón de acción final */
.btn-lg.shadow-lg {
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-lg.shadow-lg:hover {
    transform: scale(1.05);
    background-color: #820910;
    box-shadow: 0 15px 30px rgba(163, 11, 20, 0.4) !important;
}

/* Estilo para el resaltado lateral del cuadro de diferencia */
.border-left.border-danger {
    border-left-width: 5px !important;
}

/* Estilo para las nuevas tarjetas en cuadrícula */
.info-grid-card {
    transition: all 0.3s ease;
    border-radius: 15px;
}

.info-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

/* Círculo para los iconos/emojis */
.icon-circle {
    width: 50px;
    height: 50px;
    background: #fff5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Ajuste de listas dentro de tarjetas */
.info-grid-card ul li {
    font-size: 0.95rem;
    color: #555;
}

.info-grid-card.bg-dark ul li {
    color: #eee;
}

/* Títulos internos */
.info-grid-card h4 {
    font-size: 1.25rem;
    color: #1a1a1a;
}

.bg-dark h4 {
    color: #ffffff;
}

/* Fuente moderna similar */
.logo-text {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: 72px;
    line-height: 1;
    margin: 0;
}

/* mbm gris oscuro */
.logo-mbm {
    color: #2b2b2b;
    font-weight: 700;
}

/* Lab verde inclinado */
.logo-lab {
    color: #18a957;
    font-weight: 700;
    font-style: italic;
    margin-left: 8px;
}

/* Subtítulo */
.logo-subtitle {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    letter-spacing: 3px;
    color: #555;
    margin-top: 6px;
    font-size: 14px;
}
