/* Estilos generales */
body {
    font-family: 'Inter', sans-serif;
    margin-top: 80px;
}

/* Navbar */
.navbar {
    background-color: #193b92;
    color: white;
    padding: 1rem 0 1rem;
}

/* Color del texto en el Nebú de Navegación */
.navbar-brand {
    color: white !important;
}

.navbar .nav-link {
    color: white !important;
}

/* Footer */
.footer {
    background-color: #2b385a;
    color: white;
    padding: 1rem 0 1rem;
}

/* Sección padin */
.padin-section {
    padding: 4rem 0;
}

.padin-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Botones personalizados */
.btn-primary-custom {
    background-color: #193b92;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
}

.btn-primary-custom:hover {
    background-color: #122c6e;
    color: white;
}

/* Tarjetas de equipo */
.team-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 32px rgba(84, 118, 204, 0.25), 0 3px 8px rgba(0,0,0,0.12);
}

.team-avatar {
    text-align: center;
    padding: 2rem;
    font-size: 4rem;
    color: #193b92;
}

/* Tarjetas de estadísticas */
.stats-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stats-number {
    font-size: 2rem;
    font-weight: bold;
    color: #193b92;
}

/* Sombra para las tarjetas de servicios */
.service-card {
    box-shadow: 0 4px 16px rgba(43, 87, 199, 0.15), 0 1.5px 4px rgba(0,0,0,0.08);
    border-radius: 12px;
    border: 1px solid #e3e6f0;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 15px 32px rgba(84, 118, 204, 0.25), 0 3px 8px rgba(0,0,0,0.12);
}

/* Sombra para las tarjetas de nosoros */
.stats-card {
    box-shadow: 0 4px 16px rgba(43, 87, 199, 0.15), 0 1.5px 4px rgba(0,0,0,0.08);
    border-radius: 12px;
    border: 1px solid #e3e6f0;
    transition: box-shadow 0.3s;
}

.stats-card:hover {
    box-shadow: 0 15px 32px rgba(84, 118, 204, 0.25), 0 3px 8px rgba(0,0,0,0.12);
}