/* ======================================== */
/* RESET */
/* ======================================== */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ======================================== */
/* BODY */
/* ======================================== */
body{
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
}

/* ======================================== */
/* HEADER */
/* ======================================== */
.header-cursos{

    /* COLOR DE FONDO */
    background: #ffbd59;

    /* ESPACIADO */
    padding: 22px 0;

    /* SOMBRA */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    /* POSICIÓN */
    position: relative;
    z-index: 1000;
}

/* ======================================== */
/* CONTENIDO GENERAL */
/* ======================================== */
.header-contenido{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* ======================================== */
/* LOGO */
/* ======================================== */
.logo img{

    /* TAMAÑO */
    height: 50px;
    width: auto;
    max-width: 100%;

    /* COLOR NEGRO */
    filter: brightness(0);

    /* EFECTO */
    transition: all 0.3s ease;
}

/* HOVER LOGO */
.logo img:hover{
    transform: scale(1.04);
}

/* ======================================== */
/* ÁREA CTA */
/* ======================================== */
.header-accion{
    display: flex;
    align-items: center;
    gap: 25px;
}

/* ======================================== */
/* TEXTO CTA */
/* ======================================== */
.texto-cta{
    text-align: right;
}

/* TEXTO SUPERIOR */
.cta-superior{

    display: inline-block;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;

    background: #000000;
    color: #ffbd59;

    padding: 6px 12px;
    border-radius: 50px;

    margin-bottom: 8px;
}

/* TÍTULO */
.texto-cta h1{

    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;

    color: #000000;

    margin: 0;
}

/* ======================================== */
/* BOTÓN TELÉFONO */
/* ======================================== */
.btn-telefono{

    /* COLOR */
    background: #000000;
    color: #ffbd59;

    /* TIPOGRAFÍA */
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;

    /* ESPACIADO */
    padding: 14px 26px;

    /* BORDE */
    border-radius: 12px;

    /* FLEX */
    display: inline-flex;
    align-items: center;
    gap: 12px;

    /* SOMBRA */
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);

    /* EFECTO */
    transition: all 0.3s ease;
}

/* HOVER */
.btn-telefono:hover{

    background: #25D366;
    color: #ffffff;

    transform: translateY(-4px) scale(1.04);

    box-shadow: 0 18px 35px rgba(0,0,0,0.35);
}

/* ICONO */
.btn-telefono i{
    font-size: 18px;
}

/* ======================================== */
/* RESPONSIVE */
/* ======================================== */
@media(max-width:991px){

    .header-contenido{
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .header-accion{
        flex-direction: column;
    }

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

    .texto-cta h1{
        font-size: 20px;
    }

}

/* ======================================== */
/* MOBILE */
/* ======================================== */
@media(max-width:576px){

    /* LOGO */
    .logo img{
        height: 50px;
    }

    /* TÍTULO */
    .texto-cta h1{
        font-size: 18px;
    }

    /* BOTÓN */
    .btn-telefono{
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

}

/* =============================================================================================================================================================== */
/* SECCION */
/* =============================================================================================================================================================== */

.seccion-formulario {

    position: relative;

    background-image: url('../img/fondo_banner_cursos.jpg');
    background-size: cover;
    background-position: center;

    padding: 100px 0;

    overflow: hidden;
}

/* ======================================== */
/* OVERLAY */
/* ======================================== */

.overlay-formulario {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.65);

    z-index: 1;
}

/* ======================================== */
/* CONTENIDO */
/* ======================================== */

.seccion-formulario .container {
    z-index: 2;
}

/* ======================================== */
/* TITULO */
/* ======================================== */

.titulo-impacto {

    font-size: clamp(38px, 5vw, 65px);

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 25px;
}

/* ======================================== */
/* DESCRIPCION */
/* ======================================== */

.descripcion-impacto {

    font-size: clamp(16px, 2vw, 22px);

    line-height: 1.7;

    max-width: 600px;
}

/* ======================================== */
/* FORMULARIO */
/* ======================================== */

.formulario-box {

    background: #000;

    padding: 40px;

    border-radius: 18px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

/* ======================================== */
/* TITULO FORM */
/* ======================================== */

.titulo-formulario {

    text-align: center;

    font-size: 32px;
    font-weight: 800;

    color: #fff;

    margin-bottom: 30px;
}

/* ======================================== */
/* INPUTS */
/* ======================================== */

.custom-input {

    height: 55px;

    border: none;

    border-radius: 10px;

    padding-left: 15px;

    font-size: 15px;
}

/* TEXTAREA */

textarea.custom-input {
    height: auto;
}

/* ======================================== */
/* CHECK */
/* ======================================== */

.texto-check {

    color: #fff;

    font-size: 13px;

    line-height: 1.5;
}

/* ======================================== */
/* BOTON */
/* ======================================== */

.btn-enviar-formulario {

    width: 100%;
    height: 55px;

    border: none;

    background: #c40000;
    color: #fff;

    border-radius: 10px;

    font-size: 16px;
    font-weight: 700;

    transition: 0.3s;
}

/* HOVER */

.btn-enviar-formulario:hover {

    background: #a50000;

    transform: translateY(-2px);
}

/* ======================================== */
/* RESPONSIVE */
/* ======================================== */

@media (max-width: 991px) {

    .titulo-impacto {

        text-align: center;
    }

    .descripcion-impacto {

        text-align: center;

        margin: auto;
    }

}

@media (max-width: 768px) {

    .seccion-formulario {

        padding: 70px 0;
    }

    .formulario-box {

        padding: 30px 25px;
    }

    .titulo-formulario {

        font-size: 28px;
    }

}










/* ====================================================================================================================== */
/* SECCION */
/* ====================================================================================================================== */

.curso-seccion {

    background: #f8fafc;

    padding: 90px 0;
}

/* ======================================== */
/* IMAGEN */
/* ======================================== */

.imagen-curso {

    overflow: hidden;

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.imagen-curso img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s ease;
}

/* EFECTO HOVER */

.imagen-curso:hover img {

    filter: grayscale(100%);

    transform: scale(1.03);
}

/* ======================================== */
/* CARD */
/* ======================================== */

.card-curso {

    background: #fff;

    padding: 40px;

    border-radius: 20px;

    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

/* ======================================== */
/* TITULO */
/* ======================================== */

.titulo-curso {

    font-size: clamp(30px, 4vw, 48px);

    font-weight: 800;

    color: #111827;

    margin-bottom: 20px;
}

/* ======================================== */
/* DESCRIPCION */
/* ======================================== */

.descripcion-curso {

    font-size: 16px;

    line-height: 1.8;

    color: #4b5563;

    margin-bottom: 30px;
}

/* ======================================== */
/* ACORDEON */
/* ======================================== */

.accordion-item {

    border: none;

    margin-bottom: 12px;

    border-radius: 12px !important;

    overflow: hidden;

    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.accordion-button {

    font-weight: 700;

    background: #fff;

    color: #111827;
}

.accordion-button:not(.collapsed) {

    background: #dc2626;

    color: #fff;
}

.accordion-button:focus {

    box-shadow: none;
}

/* ======================================== */
/* LISTA */
/* ======================================== */

.lista-curso {

    padding-left: 20px;
}

.lista-curso li {

    margin-bottom: 10px;

    color: #374151;

    line-height: 1.6;
}

/* ======================================== */
/* BOTON CTA */
/* ======================================== */

.btn-curso-cta {

    display: inline-block;

    margin-top: 30px;

    background: #dc2626;
    color: #fff;

    padding: 15px 35px;

    border-radius: 50px;

    font-weight: 700;

    text-decoration: none;

    transition: 0.3s;
}

/* HOVER */

.btn-curso-cta:hover {

    background: #b91c1c;

    color: #fff;

    transform: translateY(-2px);
}

/* ======================================== */
/* RESPONSIVE */
/* ======================================== */

@media (max-width: 991px) {

    .card-curso {

        padding: 30px;
    }

    .titulo-curso {

        text-align: center;
    }

    .descripcion-curso {

        text-align: center;
    }

    .btn-curso-cta {

        width: 100%;

        text-align: center;
    }

}

@media (max-width: 768px) {

    .curso-seccion {

        padding: 70px 0;
    }

    .card-curso {

        padding: 25px;
    }

}



/*====================================*/
/* SECCIÓN */
/*====================================*/

.porque-nosotros{

    background:#ffffff;

    padding:90px 0;
}

.titulo-seccion{

    font-size:clamp(36px,4vw,55px);

    font-weight:800;

    color:#111;
}

.linea-titulo{

    width:90px;

    height:5px;

    background:#ff6b00;

    margin:18px auto 25px;

    border-radius:10px;
}

.subtitulo-seccion{

    max-width:760px;

    margin:auto;

    color:#666;

    font-size:18px;

    line-height:1.8;
}

/*====================================*/
/* TARJETAS */
/*====================================*/

.card-porque{

    background:#fff;

    padding:40px 30px;

    border-radius:18px;

    text-align:center;

    height:100%;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;
}

.card-porque:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 45px rgba(0,0,0,.15);
}

.card-porque i{

    font-size:55px;

    color:#d62828;

    margin-bottom:25px;

    transition:.35s;
}

.card-porque:hover i{

    transform:scale(1.15);

    color:#ff6b00;
}

.card-porque h4{

    font-weight:700;

    color:#111;

    margin-bottom:18px;
}

.card-porque p{

    color:#666;

    line-height:1.8;

    font-size:15px;
}

/*====================================*/
/* RESPONSIVE */
/*====================================*/

@media(max-width:768px){

    .porque-nosotros{

        padding:70px 0;

    }

    .subtitulo-seccion{

        font-size:16px;

    }

}





/*====================================*/
/* CTA FINAL */
/*====================================*/

.cta-final{

    background:#111111;

    color:#fff;

    padding:100px 0;
}

.cta-etiqueta{

    display:inline-block;

    background:#d62828;

    color:#fff;

    padding:10px 22px;

    border-radius:40px;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:25px;
}

.cta-titulo{

    font-size:clamp(36px,5vw,60px);

    font-weight:800;

    margin-bottom:25px;
}

.cta-descripcion{

    max-width:760px;

    margin:auto;

    color:#d8d8d8;

    line-height:1.9;

    font-size:18px;
}

/*====================================*/
/* CONTACTO */
/*====================================*/

.cta-contacto{

    display:flex;

    justify-content:center;

    gap:50px;

    margin:45px 0;

    flex-wrap:wrap;
}

.cta-item{

    display:flex;

    align-items:center;

    gap:18px;

    text-align:left;
}

.cta-item i{

    font-size:38px;

    color:#25D366;
}

.cta-item span{

    display:block;

    color:#bfbfbf;

    font-size:14px;
}

.cta-item strong{

    display:block;

    font-size:22px;

    font-weight:700;
}

/*====================================*/
/* BOTON */
/*====================================*/

.btn-whatsapp-final{

    background:#25D366;

    color:#fff;

    padding:18px 50px;

    border-radius:50px;

    font-size:18px;

    font-weight:700;

    transition:.35s;

    box-shadow:0 12px 30px rgba(37,211,102,.35);
}

.btn-whatsapp-final:hover{

    background:#1da851;

    color:#fff;

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(37,211,102,.45);
}

/*====================================*/
/* RESPONSIVE */
/*====================================*/

@media(max-width:768px){

    .cta-final{

        padding:70px 0;
    }

    .cta-descripcion{

        font-size:16px;
    }

    .cta-contacto{

        gap:25px;
    }

    .cta-item{

        justify-content:center;

        text-align:center;

        flex-direction:column;
    }

    .btn-whatsapp-final{

    background:#25D366;

    color:#fff;

    padding:10px 40px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    transition:.35s;

    box-shadow:0 12px 30px rgba(37,211,102,.35);
}


}




/*======================================*/
/* SECCION */
/*======================================*/

.impulso-section{

padding:120px 0;

background:#ffffff;

overflow:hidden;

}

/*======================================*/
/* IMAGEN */
/*======================================*/

.impulso-img{

border-radius:25px;

overflow:hidden;

box-shadow:0 30px 70px rgba(0,0,0,.12);

}

.impulso-img img{

width:100%;

transition:.6s;

display:block;

}

.impulso-img:hover img{

transform:scale(1.08);

filter:grayscale(20%);

}

/*======================================*/
/* TARJETA */
/*======================================*/

.impulso-card{

background:#fff;

padding:55px;

border-radius:25px;

box-shadow:0 25px 70px rgba(0,0,0,.08);

transition:.4s;

border-top:6px solid #ff6b00;

}

.impulso-card:hover{

transform:translateY(-10px);

box-shadow:0 40px 80px rgba(0,0,0,.15);

}

/*======================================*/
/* ICONO */
/*======================================*/

.icon-box{

width:90px;

height:90px;

background:linear-gradient(135deg,#ff6b00,#ff3d00);

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

margin-bottom:25px;

box-shadow:0 15px 35px rgba(255,107,0,.35);

}

.icon-box i{

font-size:40px;

color:#fff;

}

/*======================================*/

.badge-servicio{

display:inline-block;

background:#fff3e6;

color:#ff6b00;

padding:8px 18px;

border-radius:50px;

font-weight:700;

margin-bottom:20px;

}

/*======================================*/

.impulso-card h2{

font-size:clamp(38px,5vw,58px);

font-weight:800;

color:#111;

margin-bottom:15px;

}

.linea-naranja{

width:90px;

height:5px;

background:#ff6b00;

border-radius:20px;

margin-bottom:25px;

}

.impulso-card p{

font-size:18px;

line-height:1.9;

color:#666;

margin-bottom:35px;

}

/*======================================*/
/* LISTA */
/*======================================*/

.lista-servicios{

list-style:none;

padding:0;

margin:0 0 40px;

}

.lista-servicios li{

font-size:17px;

margin-bottom:18px;

display:flex;

align-items:flex-start;

gap:15px;

}

.lista-servicios i{

font-size:20px;

margin-top:2px;

color:#16a34a;

}

/*======================================*/
/* BOTON */
/*======================================*/

.btn-impulso{

display:inline-flex;

align-items:center;

gap:12px;

padding:18px 40px;

background:#d62828;

color:#fff;

font-size:18px;

font-weight:700;

border-radius:50px;

text-decoration:none;

transition:.35s;

box-shadow:0 15px 35px rgba(214,40,40,.35);

}

.btn-impulso:hover{

background:#b71c1c;

color:#fff;

transform:translateY(-4px);

}

.btn-impulso i{

font-size:22px;

}

/*======================================*/

@media(max-width:992px){

.impulso-card{

padding:40px;

}

}

@media(max-width:768px){

.impulso-section{

padding:80px 0;

}

.impulso-card{

text-align:center;

}

.linea-naranja{

margin:auto auto 25px;

}

.lista-servicios{

text-align:left;

}

.btn-impulso{

width:100%;

justify-content:center;

}

}