:root {
    --accion: #FF5B00;
    --bk: #11161B;
    --gris: #4b4b4b;
    --texto: #11161B;
    --textoL: #d2d6df;
    --blanco: #ffffff;
}

ul {
    padding-left: 0;
}

li {
    list-style: none;
}

.h50 {
    width: 100%;
    height: 50px;
}

.h100 {
    width: 100%;
    height: 100px;
}

.h150 {
    width: 100%;
    height: 150px;
}

* {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
    /* transition: all 300ms ease-in-out; */
    /* border: solid 1px greenyellow; */
    z-index: 3;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'arial', sans-serif;
    color: var(--texto);
    font-weight: 600;
    overflow-x: hidden;
}

main {
    overflow: hidden;
}

img {
    width: 100%;
}

a {
    text-decoration: none;
}

p {
    font-size: 1rem;
}

h1,
h2 {
    font-weight: 700;
}

h3 {
    font-size: 1.38rem;
}

h4 {
    font-size: 1.2rem;
}

.fila {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.columna {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-back {
    width: 700px;
    opacity: 0.3;
    left: -52px;
    top: -54px;
    position: absolute;
    z-index: 1;
}

.contenedor {
    width: 95%;
    max-width: 1600px;
    margin: auto;
}

header .contenedor {
    width: 100%;
}

.icon {
    aspect-ratio: 1 / 1;
    height: 50px;
    fill: var(--accion)
}

.der,
.izq {
    width: 50%;
}

/* #home .contenedor {
    height: 120vh;
} */

.fondo {
    background-image: url("img/hero.jpeg");
    background-size: auto 100%;
    background-position-x: 100%;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
    z-index: 1;
}

.hero {
    align-items: flex-start;
    margin: auto;
    height: 100vh;
    /* padding: 50px 0; */
}

.hero .cont {
    position: relative;
    width: 55%;
    height: 100%;
    padding: 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 50px;
    /* background: #ffffff; */
    overflow: hidden;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 0) 100%);
}

.hero h1,
.hero h2 {
    font-weight: 700;
    justify-content: justify;
    line-height: 60px;
}



.hero h1 {
    font-size: 5rem;
    color: var(--accion)
}

.hero h2 {
    font-size: 3.5rem;
}

.hero p {
    font-size: 1.2rem;
    line-height: 25px;
    margin: 0;
}

.hero .item p {
    font-size: 1rem;
    margin: 0;
    text-shadow:
        -1px -1px 0 #fff,
        1px -1px 0 #fff,
        -1px 1px 0 #fff,
        1px 1px 0 #fff;

}

.hero .items {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
}

.hero .item {
    gap: 10px;
}

.botones {
    gap: 25px;
    justify-content: center;
}

.botones .boton-whatsapp {
    background-color: var(--accion);
    color: var(--blanco);
    padding: 10px 15px;
    width: 400px;
    height: 65px;
    border-radius: 10px;
    gap: 25px;
    transition: all 0.3s ease-in-out;
}

.botones .boton-whatsapp img {
    width: 40px;
}

.boton-whatsapp:hover {
    background-color: #fc9f14;
}

.beneficios {
    position: relative;
    margin-top: 100px;
    width: 95%;
    background-color: var(--bk);
    border-radius: 15px;
    padding: 20px 50px;
    border: solid 4px var(--blanco);
    gap: 25px;
}

.liner {
    width: 2px;
    height: 120px;
    background-color: var(--gris);
    position: relative;
}

.beneficio {
    width: 20%;
    gap: 25px;
}

.beneficio .icon {
    height: 60px;
}

.beneficio p {
    color: var(--blanco);
    text-align: center;
}

/* why capa */

.dos-columnas {
    display: flex;
    gap: 50px;
    margin: auto;
    justify-content: stretch;
}

.boxs {
    width: 50%;
    padding-left: 20px;
}

.boxs .imagen {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    background-image: url("img/operador-chaleco.jpg");
    background-size: cover;
    background-position: 0 50%;
    background-repeat: no-repeat;
}

.boxs .items {
    flex-wrap: wrap;
    gap: 25px;
}

.item {
    display: grid;
    grid-template-columns: 50px auto;
    align-items: center;
    width: 45%;
    gap: 15px;
}

.boxs .item h4 {
    /* font-size: 1rem; */
    font-weight: 600;
}

.boxs .item p {
    /* font-size: 0.8rem; */
    font-weight: 600;
}

.boxs .item svg {
    aspect-ratio: 1 / 1;
    width: 50px;
    height: 50px;
}

/* TEMARIO */
/* Contenedor Principal */
.temario-section {
    background-color: var(--bk);
    background-image: url("img/world-map-dotted.jpg");
    background-size: cover;
    background-position-x: 50%;
    color: var(--blanco);
    padding: 40px 20px;
    text-align: center;
    position: relative;
    border-radius: 25px;
    margin: auto;
}

.temario-titulo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 50px;
    text-transform: uppercase;
}

/* El contenedor de los 5 puntos */
.temario-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 5 columnas iguales en escritorio */
    gap: 20px;
    list-style: none;
    padding: 0;
    /* max-width: 1200px; */
    margin: 0;
    position: relative;
    justify-content: space-between;
}

/* Elemento Individual */
.temario-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
}

/* El número flotante naranja */
.badge-numero {
    background-color: var(--accion);
    color: var(--blanco);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 12px;
    border-radius: 100%;
    margin-bottom: 15px;
    z-index: 2;
    aspect-ratio: 1 / 1;
}

/* Contenedor del SVG para controlar tamaños */

.icon-wrapper {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper svg {
    width: 100%;
    height: 100%;
    fill: var(--blanco);
    /* O el color que tengan tus SVG */
}

.temario-item h3 {
    font-weight: 700;
    margin-bottom: 10px;
}

.temario-item p {
    font-size: 1rem;
    color: var(--textoL);
    line-height: 1.4;
}


/* para quien */
.cards {
    gap: 15px;
    align-items: flex-start;
}

.card {
    /* width: 20%; */
    height: 330px;
    border-radius: 15px;
    overflow: hidden;
    justify-content: flex-start;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.125));
}

.card p {
    padding: 15px 20px;
}

/* final */
.section_4 .contenedor {
    gap: 20px;
    display: flex;
    flex-direction: row;
    position: relative;
    align-items: stretch;
    height: auto;
    min-height: 500px;
}

.section_4 .contenedor>div:nth-child(1),
.section_4 .contenedor>div:nth-child(2),
.section_4 .contenedor>div:nth-child(3) {
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.125);
}

.section_4 .contenedor>div:nth-child(1) {
    width: 25%;
    background-image: url("img/img-6.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom;
}

.section_4 .contenedor>div:nth-child(2) {
    width: 50%;
    background-image: url("img/gera.jpg");
    background-size: auto 100%;
    background-position-x: 95%;
    background-repeat: no-repeat;
    color: var(--blanco)
}

.section_4 .contenedor>div:nth-child(3) {
    width: 30%;
    background-image: url("img/img-7.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom;
}

.section_4 ul li img {
    width: 20px;
}

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

.section_4 .check p {
    text-align: left;
}

.cont-items {
    padding: 25px 30px;
}

.modalidad {
    align-items: flex-start;
}

.modalidad .item {
    gap: 10px;
    width: 100%;
}

h5 {
    font-weight: 700;
    text-align: left;
}

.modalidad h4 {
    font-weight: 700;
}

.modalidad p {
    font-weight: 600;
}

.gera .cont-items {
    width: 75%;
}

.section_4 ul li {
    margin-right: 5px;
}

.section_4 ul li img {
    margin-right: 10px;
}

.cont-items h2 {
    color: var(--accion)
}

.cont-items p {
    font-weight: 600;
}

.check {
    align-items: flex-start;
    justify-content: flex-start;
}

.check p {
    font-weight: 500;
    font-size: 0.9rem;
}

.section_4 .contenedor .botones .boton-whatsapp {
    width: 100%;
    height: 55px;
    margin: auto;
    gap: 10px;
    font-size: 0.9rem;
}

.section_4 .contenedor .botones .boton-whatsapp img {
    width: 30px;
}

.inversion .cont-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.inversion .cont-items ul {
    margin-bottom: 0;
}

.inversion .cont-items li {
    margin-bottom: 5px;
}

footer article {
    background-image: url("img/footer.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    color: var(--blanco);
    padding: 20px;
}

footer h2 {
    font-size: 2.5rem;
}

footer .wasa h1 {
    font-size: 3.5rem;
}

footer .wasa {
    gap: 35px;
    color: var(--blanco);
    transition: all 0.2s ease-in-out;
}


footer .wasa img {
    width: 60px;
}

footer .wasa:hover {
    color: var(--accion);
}

footer ul {
    margin-top: 15px;
}

footer ul li {
    margin-right: 15px;
}

footer ul li img {
    margin-right: 10px;
    width: 20px;
}