
@import url('https://fonts.googleapis.com/css2?family=Handlee&display=swap');

body {
    background: #F5F5F5;
    justify-content: center;
    font-family: "Handlee", cursive;
}

/* Configuracion General */
:root {
    --color-blanco: #ffffff;
    --color-azul: #323f7c;
    --color-azul-pastel: #a2d5f2;
    --color-amarillo: #f79c53;
    --color-gris-claro: #f8f9fa;
    --color-plomo: #606060;
    --color-negro: #000000;

    --color-amarillo-pastel: #fef6ee;
}

body {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--color-blanco);
    color: var(--color-negro);
    font-family: "Roboto", sans-serif;
}











/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--color-blanco);
    color: var(--color-azul);
    padding: 10px;
    text-align: center;
    z-index: 1000;
    /* Asegura que el header esté por encima de otros elementos */
    border-bottom: 1px solid var(--color-plomo);
    font-size: 16px;
    font-weight: bold;
}

header .navbarPrincipal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    margin: auto;
    text-align: justify;
    max-width: 1100px;
}

header .logo {
    font-size: 1.5em;
    width: 200px;
}

header .menu {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1px;
}

header .menu li {
    position: relative;
}

header .subMenu {
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    white-space: nowrap;
    color: var(--color-azul);
    font-weight: bolder;
    font-size: 16px;
}

header .desplegable {
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    margin-left: -10px;
    border-bottom: 1px solid var(--color-plomo);
    border-top: 1px solid var(--color-plomo);
    background: var(--color-azul);
    color: var(--color-blanco);
    font-size: 14px;
}

header .menu .subMenu:hover {
    border-radius: 10px;
    background: var(--color-amarillo-pastel);
}

header .menu .desplegable:hover {
    border-radius: 10px;
    background: rgba(39, 164, 202, 0.2);
    animation: fadeIn 0.3s ease;
}

/* Animación */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.menu-icon {
    display: none;
    font-size: 2em;
    cursor: pointer;
}

#menu-toggle {
    display: none;
}

header .MenuDesplegable {
    display: none;
    position: absolute;
    background: var(--color-azul);
    top: 100%;
    left: 0;
    min-width: 150px;
    list-style: none;
    /* Agrega esta línea para quitar los puntos redondos */
    margin: 0;
    padding: 0;
    padding-left: 10px;
    margin-top: 1px;
}

.dropdown:hover .MenuDesplegable {
    display: block;
}





header .navbarCorto {
    display: none;
    flex-direction: column;
    align-items: flex-start;
}

.navbarCorto .menu-icon {
    display: black;
}

header .menuCorto {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}

header .menuCorto li {
    position: relative;
}

header .subMenuCorto {
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    white-space: nowrap;
    color: var(--color-azul);
    font-weight: bolder;
    font-size: 16px;
}

header .desplegableCorto {
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    margin-left: -10px;
    border-bottom: 1px solid var(--color-plomo);
    border-top: 1px solid var(--color-plomo);
    background: var(--color-azul);
    color: var(--color-blanco);
    font-size: 14px;
}

header .menuCorto .subMenuCorto:hover {
    border-radius: 10px;
    background: var(--color-amarillo-pastel);
}

header .menuCorto .desplegableCorto:hover {
    border-radius: 10px;
    background: rgba(39, 164, 202, 0.2);
    animation: fadeIn 0.3s ease;
}








/* Responsive Styles 768*/
@media (max-width: 650px) {
    header .navbarPrincipal {
        display: none;
    }

    header .navbarCorto {
        display: block;
    }

    .cajas {

        margin-top: 330px;
    }





}







.action_btn {
    background-color: var(--color-amarillo);
    color: var(--color-blanco);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2 ease;
    margin-top: 6px;
    text-decoration: none;
}

.action_btn:hover {
    scale: 1.05;
    color: var(--color-blanco);
}

.action_btn:active {
    scale: 0.95;
}

.action_btn {
    width: 100%;
    display: flex;
    justify-content: center;
}



/* header modificado */
.logo {
    max-width: 150px;
  }
  
  .nav-link {
    font-size: 16px;
    transition: all 0.3s ease-in-out;
  }
  
  .nav-link:hover {
    background-color: rgba(255, 223, 0, 0.3);
    border-radius: 5px;
  }
  
  .dropdown-item {
    transition: all 0.3s ease-in-out;
  }
  
  .dropdown-item:hover {
    background-color: rgba(39, 164, 202, 0.2);
    border-radius: 5px;
  }
  
  .btn-warning {
    padding: 0.3rem 1rem;
    border-radius: 20px;
  }
  
  .btn-warning:hover {
    background-color: #f5c100;
  }
  











/*  Pie de Paguina */

footer {
    background-color: var(--color-azul);
    color: var(--color-blanco);
    padding: 20px 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: justify;
}

.footer-section {
    flex: 1 1 200px;
    margin: 5px 15px;
}

.footer-section h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-section p,
.footer-section ul {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
    margin-left: -25px;
}

.footer-section ul li a {
    color: var(--color-blanco);
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.social-media {
    display: flex;
}

.social-media li {
    margin-right: 10px;
}


.footer-bottom {
    text-align: center;
    margin-top: 25px;
    padding-top: 5px;
    border-top: 1px solid var(--color-plomo);
}

@media (max-width: 650px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        flex: 1 1 100%;
        text-align: center;
        margin: 10px 0;
    }
}










.container {
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* max-width: 1100px; [sin Publicidad]*/
    max-width: 1420px;
    margin: auto;
    padding: 0 20px;
    text-align: justify;
}









.slider {
    position: relative;
    width: 100%;
    margin: 50px auto;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 1s ease;
    width: 100%;
    height: 500px;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 40px;
    background-color: rgba(28, 60, 240, 0.5);
}

.slide .content {

    padding: 20px;
    border-radius: 10px;
    height: 100%;
    width: 100%;

    padding-top: 150px;
}

.content h2 {
    font-size: 30px;
    margin: 0px;
    padding: 0px;
}


.content p {
    padding: 0px;
    margin: 0px;
}

button.ingreso {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #0fca28;
    color: white;
    border: none;
    cursor: pointer;
}

button.ingreso:hover {
    background-color: #0056b3;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}



















/*PORTADA - COVER*/
/*BANNER*/
.ConterMain {
    max-width: 1200px;
    padding: 20px;
    padding-left: 40px;
    margin: auto;
}

.container__banner {
    margin-top: 10px;
}

.banner {
    /* height: 250px; */
    display: flex;
    align-items: center;
    background: #121214;
    position: relative;
}


.banner0 {
    /* height: 250px; */
    /* display: flex; */
    align-items: center;
    /* background: #121214; */
    position: relative;
    padding: 1%;
    text-align: center;

}


.banner__icon-heart {
    width: 35%;
    height: 100%;
}

#icon_heart {
    width: 400px;
    margin-top: -20px;
    position: relative;
    filter: drop-shadow(-40px 0px 30px rgba(0, 0, 0, 0.5));
}

.banner__text {
    width: 60%;
    position: relative;
    padding: 40px;
}

.banner__text h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 400;
}

.banner__text a {
    text-decoration: none;
    display: block;
    margin-top: 20px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    transition: color 300ms;
}

.banner__text a:hover {
    color: #69F1A1;
}

.banner__icon-fire {
    height: 100%;
    position: absolute;
    right: 10px;
    overflow: hidden;
}

#icon_fire {
    width: 300px;
    position: relative;
    margin-top: -100px;
    opacity: 0.6;
}


@media (max-width: 1024px) {

    .container__header,
    .ConterMain {
        padding: 20px;
        margin-left: 0px;
    }

    #icon_menu {
        display: block;
        cursor: pointer;
        font-size: 24px;
    }

    .header__register {
        display: none;
    }

    .menu {
        height: 0px;
        position: absolute;
        right: 20px;
        top: 70px;
        overflow: hidden;
        z-index: 10;
        box-shadow: 0px 0px 30px -20px rgba(0, 0, 0, 0.5);
        transition: all 300ms;
    }

    .menu nav ul {
        padding: 20px 0px;
        flex-direction: column;
        background: #fff;
    }

    .menu nav ul li {
        padding: 10px 40px;
    }

    .mostrar_menu {
        /*CLASE MANIPULADA POR JS*/
        height: 235px;
    }

    .text__information-cover h1 {
        font-size: 40px;
    }

    .text__information-cover p {
        font-size: 16px;
    }

    .banner__text h2 {
        font-size: 22px;
    }

    #icon_heart {
        left: -60px;
    }

    .banner__icon-fire {
        right: -20px;
    }
}

@media (max-width: 920px) {
    .text__information-cover {
        width: 100%;
    }

    .media__cover {
        display: none;
    }

    .banner {
        width: 100%;
        height: auto;
        flex-wrap: wrap;
    }

    #icon_fire {
        display: none;
    }

    #icon_heart {
        left: 0;
    }

    .banner__text {
        width: 100%;
        /* margin-top: -100px; */
    }
}






















.contenedorM {
    /* max-width: 800px; */
    margin: 0 auto;
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* background-color: aqua; */
    /* width: 100%;             */
    position: relative;
    /* padding: 1rem; */
}

.cajaM {
    background-color: rgb(255, 255, 255);
    padding: 20PX;
    text-align: center;
    cursor: pointer;
    border: 1px solid lightgray;

    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.cajaM p {
    margin: 0px;
}

.cajaM h4 {
    margin: 5px;
    color: var(--color-azul);
}

.cajaM table {
    font-weight: bold;
    color: var(--color-plomo);
    text-align: justify;
    font-size: 12px;
}






.btnComenzar {
    background-color: var(--color-azul);
    color: var(--color-amarillo);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2 ease;
    text-decoration: none;
    display: flex;
    justify-content: center;
}

.btnComenzar:hover {
    scale: 1.05;
    background-color: var(--color-amarillo);
    color: var(--color-azul);
}

.btnComenzar:active {
    scale: 0.95;
}















.team-section {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 20px 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.team-container,
.advisor-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.team-member,
.advisor {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 calc(33% - 40px);
    max-width: calc(33% - 40px);
}

.team-member h3,
.advisor h3 {
    margin-bottom: 10px;
    color: var(--color-azul);
}

.team-member p,
.advisor p {
    color: #555;
}

























/*  ##################
    Parte Publicidad
 #################### */
main {
    flex: 1;
    width: 900px;
}


.ad-banner {
    background-color: #eeebeb;
    text-align: center;
    color: #666;
    font-size: 14px;
    border: 1px solid #ccc;
    margin: 20px 0;
}

.skyscraper {
    width: 160px;
    height: 600px;
}

.left-ad, .right-ad {
    width: 160px;
}

.in-content {
    width: auto;
    margin: 20px 0;
}

#left-bannerVertical{
        display: block;
    }
#left-bannerHorizontal{
        display: none;
    }
#right-bannerVertical{
        display: block;
    }
#right-bannerHorizontal{
        display: none;
    }

@media screen and (max-width: 1260px) {
    .left-ad, .right-ad, main {
        width: 100%;
        margin: 0;
    }
    .skyscraper {
        width: 100%;
        height: auto;
    }

    #left-bannerVertical{
        display: none;
    }
    #left-bannerHorizontal{
        display: block;        
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    #right-bannerVertical{
        display: none;
    }
    #right-bannerHorizontal{
        display: block;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .in-content{
        display: flex;
        justify-content: center;
        align-items: center;
    }

}














/*  ##################
    cambio de fuentes
 #################### */
.content h2 {
    margin-bottom: 0.5rem;
    font-family: "Handlee", cursive;
    font-weight: bold;
    line-height: 1.2;
    color: var(--color-gris-claro);

}

#comenzar h1{
    margin-bottom: 0.5rem;
    font-family: "Handlee", cursive;
    font-weight: bold;
    line-height: 1.2;
    color: var(--color-azul);
}
.banner0 h1, h2{ 
    margin-bottom: 0.5rem;
    font-size: 24px;
    font-family: "Handlee", cursive;
    color:var(--color-plomo);
}