/* === GENERAL === */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    color: #0a4275;
    font-weight: 600;
}

/* === NAVBAR === */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #fff !important;
}

.nav-link {
    color: #ffffff !important; /* Letras blancas */
    font-weight: 500; /* Un poco más gruesas */
    letter-spacing: 0.5px; /* Espaciado sutil */
    text-transform: uppercase; /* OPCIONAL: todo en mayúsculas */
}

    .nav-link:hover {
        color: #00d9ff !important; /* Celeste brillante al pasar el mouse */
    }

.navbar-nav .nav-link.active {
    font-weight: bold;
    background-color: #0d6efd;
    border-radius: 5px;
    color: white !important;
}

/* === HERO / LANDING === */
    .hero {
    background: url('/images/IMAGEN1.jpeg') center/cover no-repeat;
    color: white;
    padding: 100px 0;
    text-align: center;
    text-shadow: 1px 1px 5px #000;
}

/* === SECCIONES === */
.section, .info-section {
    padding: 60px 20px;
    background-color: #ffffff;
    margin-bottom: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

    .info-section h2 {
        margin-bottom: 20px;
        color: #0a4275;
        font-weight: 600;
    }

    .info-section img {
        max-width: 100%;
        border-radius: 10px;
    }

/* === FOOTER === */
footer {
    background-color: #0a4275;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

    footer a {
        color: #ffffff;
        text-decoration: underline;
    }

        footer a:hover {
            text-decoration: none;
        }

    footer img {
        filter: brightness(0) invert(1); /* deja el logo blanco si es oscuro */
    }

/* === BOTONES === */
.btn-primary {
    background-color: #0a4275;
    border-color: #0a4275;
}

    .btn-primary:hover {
        background-color: #06325d;
        border-color: #06325d;
    }

/* === TARJETAS === */
.card {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.card-title {
    color: #0a4275;
    font-weight: 600;
}

/* === IMÁGENES === */
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* === FORMULARIOS === */
input.form-control, textarea.form-control, select.form-select {
    border-radius: 0.5rem;
}

input:focus, textarea:focus, select:focus {
    border-color: #0a4275;
    box-shadow: 0 0 0 0.2rem rgba(10, 66, 117, 0.25);
}
