.bg-primary {
    background-color: #6da7de !important;
}

h1 {
    font-size: 50px !important;
}

h2 {
    font-size: 25px !important;
    font-family: "Nixie One", fantasy, "google";
}

.font-titulos {
    font-family: "Allura", cursive;
}

p {
    font-family: "Open Sans", sans-serif;
}

.font-aviso-legal {
    font-family: "Nixie One", serif !important;
}

/* Enlace */
.navbar-nav .nav-link {
    color: #222;
    position: relative;
    transition: .3s;
    padding: .8rem 1rem;
}

/* Hover */
.navbar-nav .nav-link:hover {
    color: #5a97d1;
}

/* Activo */
.navbar-nav .nav-link.active {
    color: #5a97d1 !important;
    font-weight: 600;
}

/* Línea inferior */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #5a97d1;
    transform: translateX(-50%);
    transition: .3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

.navbar-nav .nav-link:visited {
    color: black;
}

.navbar-nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
}

.navbar-nav .nav-link {
    display: block;
    text-align: center;
    font-size: 14px !important;
    font-family: "Lora", serif;
}

.navbar-nav {
    max-width: 1100px;
    /* ajusta este valor */
}

.logo-footer-1 {
    width: 240px;
}

.logo-footer-2 {
    width: 200px;
}

/*Pagina de inicio*/
.program-img img {
    width: 100%;
    height: 300px;
    /* ajusta la altura */
    object-fit: cover;
}

/*Pagina que es reutilizar*/
.imagen-figuras {
    width: 300px;
    border-radius: 20px;
}

.imagen-figuras-big {
    border-radius: 20px;
}

/*Pagina Proceso creativo*/

.imagen-proceso {
    width: 300px;
    height: 250px;
    border-radius: 20px;
}

.titulo-proceso {
    font-size: 60px;
    font-weight: 800;
    color: #2f3b7c;
}

.position-relative {
    position: relative;
}

.linea-proceso {
    position: absolute;
    top: 28px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #b9ddd7;
    z-index: 1;
}

.numero {
    width: 60px;
    height: 60px;
    background: #d7f0eb;
    border: 2px solid #a9d5cd;
    border-radius: 12px;
    margin: 0 auto 30px;
    font-size: 32px;
    font-weight: 700;
    color: #2f3b7c;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 2;
}

.proceso h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2f3b7c;
    margin-bottom: 20px;
}

.proceso p {
    font-size: 13px;
    line-height: 1.8;
    color: #4b4b4b;
}

@media (max-width: 991px) {

    .linea-proceso {
        display: none;
    }

    .titulo-proceso {
        font-size: 42px;
    }

    .proceso h3 {
        font-size: 30px;
    }

    .proceso p {
        font-size: 18px;
    }
}

/*======*/

/*Colaboraciones*/

.imagen-colab {
    width: 500px;
    height: 300px;
    border-radius: 15px;
}

/*Contacto pagina*/

.contact-form-section {
    padding: 60px 0;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-title {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1f2d5a;
}

.custom-input {
    border: 1px solid #dcdcdc;
    border-radius: 0;
    padding: 12px 15px;
    box-shadow: none !important;
}

.custom-input:focus {
    border-color: #D5CEAF;
}

.contact-btn {
    background-color: #6da7de;
    color: #fff;
    border: none;
    padding: 10px 30px;
    display: block;
    margin: 0 auto;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background-color: #5a97d1;
    color: #fff;
}

/*======*/

/* =========================================
   SUBMENÚ WORDPRESS + BOOTSTRAP 5
   ========================================= */

/* Elemento padre */
.navbar-nav .dropdown {
    position: relative;
}

/* Submenú */
.navbar-nav .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 220px;
    margin: 0;
    padding: 8px 0;

    background: #fff;
    border: 0;
    border-radius: 4px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, .12);

    transform: translateY(10px);
    transition:
        opacity .2s ease,
        visibility .2s ease,
        transform .2s ease;

    z-index: 9999;
}

/* Mostrar submenu al pasar el mouse */
.navbar-nav .dropdown:hover>.dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Enlaces del submenu */
.navbar-nav .dropdown-menu .dropdown-item {
    display: block;
    width: 100%;

    padding: 10px 20px;

    color: #222;
    background: transparent;

    text-decoration: none;
    white-space: nowrap;

    text-align: center;

    transition: all .2s ease;
}

/* Hover submenu */
.navbar-nav .dropdown-menu .dropdown-item:hover {
    background: #f7f7f7;
}

/* Enlace principal que tiene submenu */
.navbar-nav .dropdown>.nav-link {
    cursor: pointer;
}

/* Flecha */
.navbar-nav .dropdown>.nav-link .bi {
    font-size: .7em;
    transition: transform .2s ease;
}

/* Girar flecha al pasar el mouse */
.navbar-nav .dropdown:hover>.nav-link .bi {
    transform: rotate(180deg);
}

.dropdown-menu li a{
    text-align: center;
}

.dropdown-menu li a:hover{
    background-color: white !important;
}
/* =========================================
   SUBMENÚS EN MÓVIL
   ========================================= */

@media (max-width: 991.98px) {

    .navbar-nav .dropdown-menu {
        position: static;

        width: 100%;
        min-width: 0;

        margin: 0;
        padding: 0;

        box-shadow: none;
        border-radius: 0;

        transform: none;

        visibility: visible;
        opacity: 1;
    }

    .navbar-nav .dropdown-menu .dropdown-item {
        text-align: center;
        padding: 10px 15px;
    }

}