/* RESET DE PLANTILLA ASP.NET */
html {
    font-size: 14px;
    height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    /* Limpiamos el margin-bottom que rompía el layout */
    margin-bottom: 0 !important;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* COMPONENTES PERSONALIZADOS */
.bg-primary {
    background-color: #004a99 !important;
}

.text-primary {
    color: #004a99 !important;
}

.hero-section {
    background: linear-gradient(rgba(0,74,153,0.8), rgba(0,74,153,0.8)), url('https://images.unsplash.com/photo-1523050853064-dbad35009f9a?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0;
    border-radius: 15px;
    margin-bottom: 40px;
}

/* CARDS E INFORMACIÓN */
.card {
    transition: transform 0.3s ease;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

    .card:hover {
        transform: translateY(-5px);
    }

.bg-success {
    background-color: #28a745 !important;
}

/* FOOTER - CORRECCIÓN DEFINITIVA */
.footer {
    /* Eliminamos position: absolute y bottom: 0 si existieran */
    position: relative !important;
    width: 100%;
    background-color: #212529 !important;
}

    .footer a:hover {
        color: #fff !important;
        text-decoration: underline !important;
    }

/* FACEBOOK CONTAINER */
.fb-container {
    display: flex;
    justify-content: center;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

#contacto .btn-outline-primary {
    border-radius: 20px;
    padding: 10px 25px;
}
