body {
    background-color: #f8f9fa;
}

.hero {
    background: linear-gradient(135deg, #962626ff, #800c0cff);
    color: white;
    padding: 5rem 2rem;
    padding-top: 0 !important;
    padding-top: 2rem;
    text-align: center;
    border-radius: 0 0 2rem 2rem;
}



.logo {
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    padding: 0 1rem !important;
    background: #e6e6e6;
}

/* Botón Contacto personalizado */
.btn-contacto {
    background-color: #ffffff !important;
    /* fondo blanco */
    color: #a51010 !important;
    /* texto rojo corporativo */
    border: 2px solid #ffffff;
    transition: 0.3s ease;
}

.btn-contacto:hover {
    background-color: #a51010 !important;
    /* hover rojo */
    color: #ffffff !important;
    /* texto blanco */
}




.hero h1 {
    font-weight: bold;
}

.card {
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-body {
    position: relative;
}

.card-body span {
    position: absolute;
    left: 10px;
    top: 10px;
    background-color: #ff2929ff;
    color: #f8f9fa;
    padding: .3rem;
    border-radius: 5px;
    font-size: .7rem;
}