/*-- THEME COLORS --*/
:root {
	/* Colors */
	--rojo: #C11929;
	--verde: #047021;
	--gris-oscuro: #5E5E5E;
	--shadow-1: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);;
	--shadow-2: 0 8px 17px 2px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
}

@font-face {
	font-family: "Poppins-Light";
	src: url("/fonts/Poppins-Light.woff2") format("woff2"),
		url("/fonts/Poppins-Light.woff") format("woff");
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Poppins-Black";
	src: url("/fonts/Poppins-Black.woff2") format("woff2"),
		url("/fonts/Poppins-Black.woff") format("woff");
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Poppins-Medium";
	src: url("/fonts/Poppins-Medium.woff2") format("woff2"),
		url("/fonts/Poppins-Medium.woff") format("woff");
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Poppins-Regular";
	src: url("/fonts/Poppins-Regular.woff2") format("woff2"),
		url("/fonts/Poppins-Regular.woff") format("woff");
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Poppins-Bold";
	src: url("/fonts/Poppins-Bold.woff2") format("woff2"),
		url("/fonts/Poppins-Bold.woff") format("woff");
	font-style: normal;
	font-display: swap;
}

/*-- END THEME COLORS --*/

/*-- BASE --*/
* {
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Poppins-Regular";
}

body {
	background-color: #ffffff;
	margin: 0px;
}

::-webkit-scrollbar {
	width: 6px;
	height: 5px;
}

::-webkit-scrollbar-thumb {
	background-color: #d3d3d3;
}

a {
	text-decoration: none;
}

button {
	cursor: pointer;
}

input,
textarea,
select {
	outline: none;
}



.popup.showing {
	display: flex;
}

.popup {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	display: none;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}

.popup .popup-container {
	width: 80%;
	max-height: 90%;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.popup .popup-container .btn-close-popup {
	width: 30px;
	height: 30px;
	cursor: pointer;
	border: none;
	position: absolute;
	right: 20px;
	top: 20px;
    z-index: 111;
    background-color: transparent;
}

.popup-content img {
	width: 100%;
    border-radius: 30px;
}

.popup-content {
	width: 100%;
	max-height: 90vh;
	color: #4d4d4d;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12),
		0 2px 4px -1px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	z-index: 2;
	border-radius: 20px;
	overflow: auto;
    background-color: var(--grid-2);
    padding: 50px;
    border-radius: 10px;
}

.popup-content > h3 {
    font-size: 30px;
    text-transform: uppercase;
    color: var(--rojo);
    margin-bottom: 30px;
	font-family: "Poppins-Bold";
}


#principal-banner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-principal-banner {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.card-principal-banner img {
    width: 100%;
}

.card-principal-banner h3 {
    width: 40%;
    position: absolute;
    left: 20%;
    border-left: 2px solid #fff;
    display: flex;
    align-items: stretch;
    font-size: 40px;
}

header {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    z-index: 9;
}

#header-1 {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--rojo);
    padding: 0px 30px;
}

#header-1>div{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

#header-1>div a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

#header-1>div svg{
    fill: #fff;
    height: 20px;
}

#header-1>div span{
    color: #fff;
    font-size: 16px;
}


#header-2 {
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    background-color: #fff;
    box-shadow: var(--shadow-1);
}

.btn-h-home img{
    height: 45px;
}

#header-2> nav{
    display: flex;
    gap: 50px;
}

#header-2> nav >ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    list-style-type: none;
}

#header-2> nav > ul > li> a{
    color: var(--grid-4);
    font-size: 18px;
    padding: 4px 0px;
    transition: ease all 0.6s;
    border-bottom: 2px solid transparent;
	font-family: "Poppins-Bold";
    display: flex;
    justify-content: center;
    align-items: center;
}

#header-2> nav > ul > li> a span{
	font-family: "Poppins-Bold";
}

#header-2> nav > ul > li>a:hover{
    border-bottom: 2px solid var(--grid-4);
}

.content-redes-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.content-redes-header a svg{
    height: 25px;
    fill: var(--gris-oscuro);
}


.sub-items-header {
	display: none;
	max-width: 250px !important;
	position: absolute;
	background-color: #fff;
	border-radius: 15px;
	top: 78%;
	z-index: 9999;
    flex-direction: column;
    box-shadow: var(--shadow-1);
    overflow: hidden;
}

.content-sub-items-header:hover ul {
	display: flex;
    padding: 10px;
    gap: 6px;
}

.sub-items-header > li > a {
    width: 100%;
	display: flex;
	justify-content: flex-start !important;
	align-items: center;
	color: var(--grid-4) ;
	border-bottom: 2px solid var(--grid-4);
	padding: 5px 30px 5px 5px;
	transition: ease all 0.6s;
	font-family: "Poppins-Bold";
}

.sub-items-header > li > a:hover {
    background-color: var(--rojo);
    color: #fff;
    border-radius: 6px;
	border-bottom: 2px solid var(--amarillo);
}

.sub-items-header > li {
    width: 100%;
}

.btn-header-sub svg {
    width: 25px;
    fill: var(--grid-4);
}

.btn-h {
    background-color: var(--amarillo);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 2px 10px;
    border-radius: 20px;
}

.btn-h span{
    color: #fff;
}

.btn-h svg{
    width: 25px;
    fill: #fff;
}

main {
    margin-top: 120px;
}

#menu-btn {
    display: none;
}

#menu-btn svg {
    width: 40px;
}

#menu-btn svg path{
    fill: var(--rojo);
}

.bnn {
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: calc(50% - 15px);
    border-radius: 50%;
    border: 2px solid var(--rojo);
    z-index: 1;
}

.bnn svg{
    fill: var(--rojo);
}

footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2E2E2E;
    flex-direction: column;
}

#content-info-footer {
    width: 80%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    align-items: stretch;
    padding: 80px 0px 60px;
}

#content-icontec-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

#content-icontec-footer a {
    width: auto !important;
}
#content-icontec-footer a img{
    height: 110px;
    border-radius: 10px;
    box-shadow: var(--shadow-1);
}

#content-info-footer >div{
    width: 100%;
    flex-direction: column;
    display: flex;
    justify-content: center;
    padding: 30px;
}

#content-info-footer >div:not(:last-child){
    border-right: 1px solid #047021;
}

#footer-1 a {
    width: 100%;
}

#footer-1 a img {
    width: 100%;
}

#footer-2 {
    align-items: flex-start;
}

#footer-2 h3 {
    font-size: 22px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
}

#footer-2 a{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 10px;
}

#footer-2 a svg{
    width: 20px;
    fill: #fff;
}

#footer-2 a span{
    width: calc(100% - 20px);
    color: #FEFEFE;
    font-size: 18px;
}
#footer-3 {
    align-items: center;
    gap: 15px;
}

#footer-3 h3 {
    font-size: 22px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
}

#footer-3 div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

#footer-3 a svg {
    width: 40px;
    fill: #fff;
}

#content-info-desarrollador {
    width: 100%;
    background-color: var(--verde);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#content-info-desarrollador span{
    width: 100%;
    font-size: 16px;
    color: #FEFEFE;
    text-align: center;
}

.btn-popup-experiencia {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.btn-popup-experiencia svg{
    fill: #fff;
    width: 25px;
}

.s-informativo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(/img/jpg_web/1.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 0px;
}

.content-s-informativo {
    width: 65%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.content-s-informativo img{
    width: 50%;
    border-radius: 15px;
    box-shadow: var(--shadow-1);
}

.info-s-informativo {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.info-s-informativo p{
    text-align: justify;
    font-size: 20px;
}

.info-s-informativo p b{
    font-weight: bold;
}

.p-title-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.p-title-center p{
    font-size: 30px;
    color: var(--gris-oscuro);
    font-weight: bold;
}

.p-title-center span{
    width: 40%;
    content: "";
    height: 4px;
    background-color: var(--rojo);
}

.p-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.p-title p{
    font-size: 25px;
    color: var(--gris-oscuro);
    font-weight: bold;
}

.p-title span{
    width: 40%;
    content: "";
    height: 4px;
    background-color: var(--rojo);
}

.p-title.blanco p{
    color: #fff;
}

.p-title.blanco span{
    background-color: #fff;
}

.btn {
    padding: 6px 30px;
    border-radius: 20px;
    background-color: var(--rojo);
    color: #fff;
    border: none;
}

.btn-icon {
    padding: 10px 30px;
    border-radius: 10px;
    background-color: var(--rojo);
    color: #fff;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-icon svg{
    width: 30px;
    fill: #fff;
}

.btn.blanco {
    background-color: #fff;
    color: var(--verde);
}

.btn.verde {
    background-color: var(--verde);
    color: #fff;
}

#s-migas-de-pan {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: -30px;
    z-index: 1;
}

#content-migas {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background-color: #fff;
    border-radius: 15px;
    padding: 20px 40px;
    box-shadow: var(--shadow-2);
}

#content-migas a {
    font-size: 18px;
    color: var(--gris-oscuro);
    font-weight: bold;
}

#content-migas a.active {
    color: var(--rojo);
}

#content-migas svg {
    width: 20px;
    fill: var(--gris-oscuro);
}

#s-form {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#content-form {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
}

#content-form >h4{
    width: 100%;
    padding: 30px;
    font-weight: bold;
    background-color: var(--rojo);
    color: #fff;
    text-align: center;
    font-size: 30px;
}

#content-form form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #EDEDED;
    padding: 25px;
    gap: 15px;
}

.content-input-form {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.content-input-form.dos-inp {
    grid-template-columns: 1fr 1fr;
}

.content-input-form select,
.content-input-form input,
.content-input-form textarea{
    width: 100%;
    padding: 15px 10px;
    background-color: #fff;
    border: none;
}
.content-input-form textarea{
    resize: none;
    height: 150px;
}

.content-input-form-terminos {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
}

.content-input-form-terminos input{
    width: auto !important;
}

.content-input-form-terminos label {
    font-size: 16px;
    color: var(--gris-oscuro);
    height: 90px;
    overflow: auto;
}

.content-btns-form {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
}
#content-form form button{
    font-size: 25px;
}


#s-text-trabaja {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0px 80px;
}

#content-text-trabaja {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#content-text-trabaja p{
    width: 100%;
    text-align: center;
    color: var(--gris-oscuro);
    font-size: 20px;
}

#content-text-trabaja img{
    width: 100%;
    aspect-ratio: 2/1;
    object-fit: cover;
    margin: 30px 0px;
}

#content-text-trabaja a{
    font-size: 25px;
}

@media screen and (max-width: 1024px) {
    #header-1>div {
        width: 100%;
        padding: 0px 6px;
        justify-content: center;
        gap: 10px;
    }

    #header-1 {
        gap: 20px;
        padding: 0px 10px;
    }

    #header-1>div {
        justify-content: center;
    }

    #header-1>div {
        gap: 20px;
    }

    #header-1>div a span {
        display: none;
    }

    #menu-btn {
        display: flex;
    }

    nav {
        display: none;
    }

    nav.active {
        width: 100%;
        display: flex;
        position: absolute;
        background-color: #fff;
        top: 120px;
        left: 0px;
        box-shadow: var(--shadow-2);
    }

    #header-2> nav> ul {
        flex-direction: column;
    }

    #header-2> nav> ul {
        width: 100%;
        padding: 20px;
        gap: 15px;
    }

    #header-2 {
        padding: 0px 15px;
        justify-content: space-between;
    }

    .principal-title h2 {
        font-size: 30px;
        line-height: 22px;
    }

    .section-text {
        width: 100%;
        padding: 20px;
        font-size: 16px;
    }

    .bnn {
        width: 30px;
        height: 30px;
    }

    #bnn-izq {
        left: 3%;
    }

    #bnn-der {
        right: 3%;
    }

    .principal-title {
        padding: 20px 0px;
    }

    .principal-title.interno h2 {
        text-align: center;
    }

    #s-resenas {
        padding: 0px;
    }

    #banner-interno .principal-title.interno h2 {
        font-size: 35px;
        line-height: 28px;
    }

    #banner-interno .principal-title {
        padding: 0px !important;
    }

    .p-title {
        font-size: 20px;
    }

    .sub-items-header {
        max-width: 100% !important;
        position: unset;
        padding: 20px;
        list-style: none;
    }

    .content-sub-items-header {
        width: 100%;
    }

    #principal-banner-interno, #principal-banner-interno img {
        height: 200px;
        object-fit: cover;
    }

    #principal-banner-interno h2 span {
        font-size: 25px;
    }

    #content-gal-popup {
        grid-template-columns: 1fr;
    }

    .popup-content {
        padding: 40px 20px;
    }

    .popup-content > h3 {
        font-size: 25px;
    }

    #header-2> nav {
        display: none;
    }

    #header-2> nav.active {
        display: flex;
        flex-direction: column;
        padding-bottom: 20px;
    }

    .content-s-informativo {
        width: 100%;
        flex-direction: column;
        gap: 20px;
    }

    .content-s-informativo img {
        width: 80%;
    }

    .info-s-informativo {
        width: 100%;
        padding: 20px;
    }

    #content-info-footer {
        width: 100%;
        grid-template-columns: 1fr;
        padding: 20px;
    }

    #content-info-footer >div:not(:last-child) {
        border-right: navajowhite;
        border-bottom: 1px solid #047021;
    }

    #content-info-footer >div {
        padding: 15px;
    }

    #footer-1 a {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #footer-1 a img {
        width: 60%;
    }

    #footer-2 h3 {
        font-size: 20px;
    }

    #s-migas-de-pan {
        padding-top: 30px;
        position: unset;
    }

    #content-migas {
        padding: 10px 20px;
    }

    #s-form {
        padding: 20px;
    }

    #content-form {
        width: 100%;
    }

    .content-input-form.dos-inp {
        grid-template-columns: 1fr;
    }

    .content-btns-form {
        flex-direction: column;
        gap: 20px;
    }

    #content-text-trabaja {
        width: 100%;
        padding: 20px;
    }

    #s-text-trabaja {
        padding: 20px;
    }

    .card-principal-banner img {
        height: 180px;
        object-fit: cover;
    }
}
