html,
body {
    height: 100% !important;
}

.font-bebas {
    font-family: 'Bebas Neue', sans-serif !important;
}

.font-poppins {
    font-family: 'Poppins', sans-serif !important;
}

.font-semibold {
    font-weight: 600;
}

.font-regular {
    font-weight: 400;
}

.uppercase {
    text-transform: uppercase;
}

.underline {
    text-decoration: underline;
}

.home-banner {
    display: flex;
    width: 100vw;
    height: calc(100vh - 100px);
    border: 1px solid yellow;
    /* background-color: #0a0061; */
    margin-top: 100px;
    box-sizing: border-box;
}

.home-banner-left {
    display: flex;
    flex-direction: column;
    flex: 0 0 65%;
    box-sizing: border-box;
    padding: 0 50px 0 50px;
    justify-content: center;
    align-items: left;
    overflow: hidden;
}

.home-banner-left h2.subtitle-1-movil {
    display: none;
}

@media (max-width: 768px) {
    .home-banner-left h1.title {
        font-size: 4.5em !important;
        padding-top: .5rem;
    }

    .home-banner-left h2.subtitle-1 {
        display: none;
    }

    .home-banner-left h2.subtitle-1-movil {
        display: block;
        font-size: 1.2em;
        color: #ffffff;
    }

    .home-banner-left h3.subtitle-2 {
        font-size: 1.8em;
        padding-bottom: .5rem;
    }
}

.home-banner-right {
    flex: 0 0 35%;
    box-sizing: border-box;
    /* height: 100vh; */
}

.home-banner-right>video,
.home-banner-right>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p0 {
    padding: 0 0 0 0 !important;

}

.p10 {
    padding: 10px !important;
}

.p20 {
    padding: 20px !important;
}


.m0 {
    margin: 0 0 0 0;
}

.m10 {
    margin: 10px;
}

.home-banner .title {
    /* font-size: 132pt !important; */
    /* font-size: 64pt !important; */
    font-size: 108pt;
    color: white;
}

.home-banner .subtitle-1 {
    /* font-size: 33pt !important; */
    font-size: 26pt;
    color: white;
}

.home-banner .subtitle-2 {
    /* font-size: 44pt !important; */
    font-size: 35pt;
    font-weight: bold;
    color: #fccf44;
}

.w100 {
    /* width: 100%; */
    /* max-width: 100%; */
    max-height: 100%;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-white {
    color: white;
}

.text-primary-color {
    color: #253840;
}

.text-turquesa {
    color: #03A6A6;
}

.bg-primary-color {
    background-color: rgb(0, 169, 157);
}

.bg-seconday-color {
    background-color: #7ED3DE;
}

.fs-86 {
    /* font-size: 86pt; */
    font-size: 68pt;
}

.fs-48 {
    font-size: 48pt;
}

.fs-38 {
    /* font-size: 38pt; */
    font-size: 30pt;
}

.fs-30 {
    font-size: 30pt;
}

.fs-22px {
    font-size: 22px;
}

.rounded-button {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}



.rounded-button.bg-seconday-color {
    background-color: #7656a9 !important;
}

.rounded-button.bg-seconday-color:hover:not(:disabled) {
    background-color: #7e00f9 !important;
}

.rounded-tl {
    border-top-left-radius: 15%;
}

.rounded-bl {
    border-bottom-left-radius: 15%;
}

.rounded-br {
    border-bottom-right-radius: 15%;
}

.box-shadow {
    /* box-shadow: 8px 8px 3px 0px rgba(0,0,0,0.75);
    box-shadow: 5px 4px 5px 0px rgba(171,156,156,0.75); */
    box-shadow: 8px 8px 5px 0px rgba(90, 89, 89, 0.75);
}


#content {
    padding-bottom: 0 !important;
}

#colophon {
    /* margin: -20px 0 0 !important; */
}

a,
a:visited,
a:hover,
a:active {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: relative;
    transition: 0.5s color ease;
    text-decoration: none;
    /* color: #81b3d2; */
}

a:hover {
    /* color: #00a99d; */
}

/* Restablecer estilos básicos */
@media (min-width: 768px) {
    #top-menu li a {
        position: relative;
        text-decoration: none;
        display: inline-block;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box;
    }

    /* Eliminar los pseudo-elementos anteriores */
    #menu-item-2337 a:before,
    #menu-item-2338 a:before,
    #menu-item-2335 a:before,
    #menu-item-7828 a:before,
    #menu-item-7884 a:before {
        display: none;
    }

    /* Crear un nuevo pseudo-elemento que use una técnica diferente */
    #menu-item-2337 a::after,
    #menu-item-2338 a::after,
    #menu-item-2335 a::after,
    #menu-item-7828 a::after,
    #menu-item-7884 a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 4px;
        top: -0.25em;
        left: 0;
        background-color: #00a99d;
        transition: width 0.5s ease;
    }

    /* Efecto hover con la nueva técnica */
    #menu-item-2337 a:hover::after,
    #menu-item-2338 a:hover::after,
    #menu-item-2335 a:hover::after,
    #menu-item-7828 a:hover::after,
    #menu-item-7884 a:hover::after {
        width: 100%;
    }

    /* Mantener el estilo para la página actual */
    .current_page_item>a {
        border-bottom: 6px solid #00a99d !important;
    }
}

@media (max-width: 768px) {
    .current_page_item>a {
        font-family: 'Montserrat-Bold', sans-serif;
    }

    #colophon {
        margin: 0 !important;
    }
}

/* Estilos para los enlaces del footer */
.footer-nav-1 nav a,
.footer-nav-3 nav a {
    position: relative;
    display: inline-block;
    width: fit-content;
}

/* Pseudo-elemento para el efecto hover */
.footer-nav-1 nav a::after,
.footer-nav-3 nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    /* Posición por debajo del texto */
    left: 0;
    background-color: white;
    /* Color blanco */
    transition: width 0.5s ease;
}

/* Efecto al hacer hover */
.footer-nav-1 nav a:hover::after,
.footer-nav-3 nav a:hover::after {
    width: 100%;
    /* Se expande al ancho del texto */
}

.ficha-curso {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15); */
    transition: all 0.3s ease;
}

.ficha-curso:hover {
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px); */
}

button.custom-curso-boton,
.boton-enviar {
    padding: 15px;
    font-size: 0.8em;
    width: 65%;
    border-radius: 50px !important;
    margin: 0 auto;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.boton-enviar {
    width: 100%;
    padding: 0;
}

button.custom-curso-boton:hover,
.boton-enviar:hover {
    /* Color un poco más claro para el hover */
    transform: translateY(-2px);
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); */
}

button.custom-curso-boton:active,
input.wpcf7-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

/* Estilos generales */
body {
    font-family: 'Montserrat-Regular', sans-serif !important;
    color: #333 !important;
    line-height: 1.6 !important;
}

/* Títulos */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat-Bold', sans-serif !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

h1 {
    letter-spacing: -0.5px !important;
}

h2 {
    letter-spacing: -0.3px !important;
}

/* Textos para tarjetas de curso */
.curso-titulo {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 1.2rem !important;
    line-height: 1.4 !important;
}

.curso-descripcion {
    font-family: 'Open Sans', sans-serif !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
}

/* Texto para botones */
button,
.btn {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
}

/* Texto para destacados, precios, etc. */
.precio,
.destacado {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
}

/* Textos pequeños, pies de página, etc. */
.texto-pequeno,
footer {
    font-family: 'Open Sans', sans-serif !important;
    font-size: 0.85rem !important;
}

.whatsapp-tel:hover {
    color: #FFFFFF !important;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #333;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Colores por marca cuando se hace hover */
.social-icons a:hover i.fa-facebook-f,
.social-icons a:hover i.bi-facebook {
    color: #1877F2;
}

.social-icons a:hover i.fa-twitter,
.social-icons a:hover i.bi-twitter-x {
    color: #000000;
    /* X (antes Twitter) ahora usa negro */
}

.social-icons a:hover i.fa-linkedin-in,
.social-icons a:hover i.bi-linkedin {
    color: #0A66C2;
}

.social-icons a:hover i.fa-instagram,
.social-icons a:hover i.bi-instagram {
    color: #E4405F;
}

.social-icons a:hover i.fa-youtube,
.social-icons a:hover i.bi-youtube {
    color: #FF0000;
}

.social-icons a:hover i.fa-tiktok,
.social-icons a:hover i.bi-tiktok {
    color: #000000;
}

/* Efecto de hover */
.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

/* Tamaño de los iconos */
.social-icons i {
    font-size: 18px;
}

.font-montserrat {
    font-family: 'Montserrat-Regular', sans-serif !important;
}

.font-montserrat-bold {
    font-family: 'Montserrat-Bold', sans-serif !important;
}

.preinscribete {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
}


.preinscribete::after {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background-image: url('/wp-content/uploads/2025/04/flechas_preinscribete.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateX(10px);
}

.formulario select {
    width: 200px;
    padding: 10px 15px;
    font-size: 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 30px;
    background-image: url('/wp-content/uploads/2025/04/flecha_FAQS_abrir.png');
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
    background-size: 25px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
}

.formulario label {
    font-size: .7em;
    display: flex;
    align-items: center;
}

.formulario input[type="submit"] {
    background-color: transparent !important;
    color: #FFFFFF !important;
    /* width: 40% !important; */
    /* height: 50px; */
    /* margin-top: 20px; */
    /* font-size: 16px; */
    /* border: 2px solid #FFFFFF !important; */
    /* padding-left: 2rem; */
    border-radius: 25px;
    /* height: 30px; */
    /* padding: 0 1.5rem; */
    color: white;
    white-space: nowrap;
    font-size: 1em;
}

.boton-enviar {
    margin-top: 1rem;
    /* padding-top: 1rem; */
}

.boton-enviar p {
    background-color: transparent !important;
    color: #FFFFFF !important;
    width: fit-content !important;
    height: 30px;
    margin: 1rem 0 0 !important;
    /* margin-top: 20px; */
    /* font-size: 16px; */
    border: 2px solid #FFFFFF !important;
    /* padding-left: 2rem; */
    border-radius: 25px;
    /* height: 30px; */
    padding: 0 1rem;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: .2rem;
}

.checkbox label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.wpcf7-submit {
    /* background-image: url('/wp-content/uploads/2025/04/ico_enviar.png');
    background-repeat: no-repeat;
    background-position: 70% 50%;;
    background-size: 30px;
    padding-right: 10px;
    text-align: left; */
    border: none;
}

.formulario form {
    background-color: rgb(0, 169, 157);
    padding: 25px;
    border-radius: 40px 0 !important;
}