:root {
    --color1: #56c6d8;
    --color2: #351031;
    --color3: #9539ea;
    --color4: #ae1332;
    --color5: #e43d3d;
    --color6: #262626;
    --color7: #313131;
}

* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
}

body {
    color: white;
    background-color: var(--color6);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}


em {
    font-style: normal;
}

img,
video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

select::after {
    content: '0025bc';
    color: #fff;
    position: absolute;
    top: .25em;
    right: 1em;
    width: .75em;
    height: .75em;
}

input,
select,
textarea {
    -webkit-appearance: none;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: start;
}

.align-end {
    align-items: end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-end {
    justify-content: end;
}

.justify-start {
    justify-content: start;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.text-center {
    text-align: center;
}

.text-white {
    color: #fff;
}

.gap-1 {
    gap: 1em;
}

.gap-5 {
    gap: 0.5em;
}

.w-100 {
    width: 100%;
}

.wrapper {
    margin-inline: 5em;
    margin-block: 6em;
}

.not-visible {
    display: none;
}

.highlight {
    color: var(--color5)!important;
    font-weight: 600;
}

.elipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    overflow-wrap: anywhere;
    line-height: 1em;
}

.empty-state {
    margin-top: 2em;
    width: 100%;
    border-radius: .5em;
    background-color: var(--color7);
    padding: 2em;
    text-align: center;
}

.empty-state span {
    font-weight: 600;
}

.empty-state img {
    width: 40%;
}

.mensaje-error {
    color: var(--color5);
    margin-top: 1em;
    font-weight: 600;
    height: 1em;
}

.mensaje-success {
    color: greenyellow;
}

.loader {
    width: 3em;
    height: 3em;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
    border: .3125em solid #C4C0B5;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: loader 1s linear infinite;
}

/* PRELOADER ------------------------------------------------------------ */

body.is-loading {
    overflow: hidden;
    user-select: none;
    pointer-events: none;
    cursor: none;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color1);
    z-index: 100;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: none;
}

#preloader img {
    width: 15em;
    height: 10em;
    animation: loaderImg 1s linear infinite alternate;
}

#preloader.hidden {
    animation: loaderImg 1s linear;
    display: none;
}

/* NAVBAR ------------------------------------------------------------ */

#navbar a {
    color: white;
}

#navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 32;
    padding: 1em 1.5em;
    background-color: #00000063;
    transition: all 0.5s;
}

#navbar.top {
    background-color: transparent;
}

#navbar .logo a {
    width: 6em;
    display: block;
}

#navbar > div ul li a::after {
    content: "";
    width: 0.5em;
    height: 0.125em;
    background-color: transparent;
    transition: all 0.5s;
    display: block;
    margin: 0 auto;
}

#navbar > div ul li a:hover::after{
    content: "";
    width: 100%;
    height: 0.125em;
    background-color: var(--color4);
    display: block;
    margin: 0 auto;
}

#navbar > div ul li a:hover {
    color: var(--color4);
    text-shadow: 0px 0px 20px var(--color4);
}

#navbar > div > div {
    margin-left: 3em;
}

#navbar > div > div > a {
    background-color: #00000060;
    border-radius: .5em;
    padding: .5em 1em;
}

#navbar > div > div > a:hover {
    background-color: var(--color4);
    box-shadow: 0px 8px 37px -7px var(--color4);
    color: #fff;
}

#navbar > div > div > a img {
    width: 1.75em;
    min-width: 1.75em;
    height: 1.75em;
    min-height: 1.75em;
}

/* CAROUSEL ------------------------------------------------------------ */

.carousel {
    overflow: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    height: 100%;
}

.carousel > li {
    min-width: 100%;
    height: 100%;
    overflow: hidden;
    scroll-snap-align: center;
}

.carousel > li img {
    position: relative;
    z-index: 2;
}

/* NAV ARROWS ------------------------------------------------------------ */

.nav-arrows {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 8;
}

.nav-arrows.disabled {
    display: none;
}

.nav-arrows a {
    border-radius: .2em;
    padding: 2em 0;
    visibility: visible;
    font-size: 2em;
    z-index: 8;
}

.nav-arrows a i {
    background-color: #fff;
}

/* INPUT STYLES ------------------------------------------------------------ */

.input {
    position: relative;
    width: 100%;
    margin-top: 3em;
}
  
.input input,
.input textarea,
.input select{
    color: #9F9F9F;
    border: 1px solid var(--color5);
    border-radius: .5em;
    padding: 1.5em 1.75em;
    outline: none;
    width: 100%;
    resize: none;
    background-color: var(--color7);
}

.input select {
    font-size: 1em;
    padding: 1.1em;
}

.input input[type="file"] {
    margin-top: 1em;
}
  
.input label {
    position: absolute;
    left: 1em;
    font-size: 1em;
    pointer-events: none;
    transition: 0.5s;
    color: #a1a1a1;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    overflow-wrap: anywhere;
    height: 1em;
    margin: auto;
}

.input textarea::placeholder,
.input input::placeholder {
    font-size: 1.25em;
    color: #a1a1a1;
}
  
.input input:focus ~ label,
.input textarea:focus ~ label,
.input textarea.input-active ~ label,
.input input.input-active ~ label{
    color: #a1a1a1;
    transform: translateY(-3em);
    left: 0;
}

.input.cod-pais {
    width: 7em;
}

/* BUTTONS STYLES ---------------------------------------------------------- */

.btn > button,
.btn > a,
.btn > label {
    border: none;
    color: var(--color5);
    font-weight: 700;
    padding: 1em 2em;
    background-color: #000;
    cursor: pointer;
    border-radius: .5em;
    font-size: .9em;
    transition: all 0.5s;
}
.btn > button:hover,
.btn > a:hover,
.btn > label:hover {
    background-color: var(--color4);
    box-shadow: 0px 8px 37px -7px var(--color4);
    color: #fff;
    transform: translateY(-7px);
}

.btn > button:hover,
.btn > a:hover,
.btn > label:hover {
    transform: translateY(-1px);
}

.btn > a img, 
.btn > button img, 
.btn > label img {
    width: 1.75em;
    min-width: 1.75em;
    height: 1.75em;
    min-height: 1.75em;
}

/* INPUT STYLES ------------------------------------------------------------ */

.error-404 {
    height: 100vh;
}

.error-404 .error-msg strong {
    color: var(--color5);
    font-weight: 600;
    font-size: 4em;
}

.error-404 .error-msg span {
    font-weight: 600;
}

.error-404 .btn {
    margin-top: 2em;
}

/* NOTIFICATIONS ------------------------------------------------------------------ */

.notification_card {
    position: absolute;
    width: max-content;
    left: 2em;
    right: 0;
    bottom: 2em;
    margin-right: auto;
    border-radius: 0.5em;
    background-color: var(--color3);
    color: var(--color2);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
    animation: fade-in 9.5s linear;
}

.notification_body {
    display: flex;
    align-items: center;
    padding: 1em 0.5em;
    gap: 0.5em;
    color: white;
}

.notification_progress {
    position: absolute;
    left: 4px;
    bottom: 4px;
    width: calc(100% - 8px);
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(to right, var(--color2), var(--color3));
    border-radius: inherit;
    animation: progress 10s 0.3s linear;
}

.gradient-main {
    position: relative;
}

/* INDEX ------------------------------------------------------------------ */

.banner-btn {
    height: 100%;
}

.banner-btn > ul > li > a{
    align-items: center;
    background-image: linear-gradient(144deg,var(--color2), var(--color4) 50%,var(--color5));
    border: 0;
    border-radius: 0.5em;
    box-sizing: border-box;
    color: #FFFFFF;
    display: flex;
    font-size: 1.25em;
    justify-content: center;
    line-height: 1em;
    max-width: 100%;
    min-width: 8.75em;
    padding: 0.25em;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    cursor: pointer;
    transition: all .3s;
    text-align: center;
}
   
.banner-btn > ul > li > a:active,
.banner-btn > ul > li > a:hover {
    outline: 0;
}
   
.banner-btn > ul > li > a > span {
    background-color: #000;
    padding: 1em 2em;
    border-radius: 0.5em;
    width: 100%;
    height: 100%;
    transition: 300ms;
}
   
.banner-btn > ul > li > a:hover > span {
    background: none;
}
   
.banner-btn > ul > li > a:active {
    transform: scale(0.9);
}
      
#metricas,
#reviews,
#cotiza {
    margin-top: 8em;
}


#proyectos,
#servicios {
    margin-top: 4em;
}

h4, h2 {
    font-size: 2.75em;
    color: var(--color5);
}

#inicio {
    position: relative;
    mask-image: linear-gradient(
    #262626 80%,
    transparent
    );
}

#inicio figure {
    width: 100%;
    height: 100vh;
    position: relative;
    background-color: gray;
}

#inicio figcaption {
    position: absolute;
    inset: 0;
}

#inicio .home-text {
    margin-right: 3em;
    margin-top: 5em;
}

#inicio .home-text > span {
    font-weight: 600;
    letter-spacing: .1em;
}

#inicio .home-text > div > p {
    font-weight: 500;
}

#inicio .home-text > footer {
    margin-top: 2.75em;
}

#inicio .home-text > footer > button {
    border: none;
    padding: 1.5em 4.5em;
    cursor: pointer;
    border-radius: 0.5em;
}

#inicio .home-text > footer > button:hover {
    opacity: .7;
}

#inicio .home-text > footer > button > a {
    text-transform: uppercase;
    font-weight: 700;
}

/* SOBRE-NOSTROS */

#sobre-nosotros article {
    flex: 1;
}

#sobre-nosotros article > span {
    letter-spacing: .2em;
}

#sobre-nosotros article > div,
#sobre-nosotros article > div > div {
    margin-top: 1em;
}

#sobre-nosotros > article > div > div svg {
    width: 2.5em;
    height: 2.5em;
}

/* PROYECTOS --------------------------------------------------------------------------*/

#proyectos {
    position: relative;
    margin-top: 10em;
}

/* SERVICIOS --------------------------------------------------------------------------*/

.tabs-container {
    width: 100%;
    display: flex;
    margin: 1em .625em 0 .625em;
    overflow: hidden;
    border-radius: 1em;
    background-color: var(--color7);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.tab-content-wrapper {
    overflow: hidden;
    height: 24em;
    color: white;
    transition: all 0.45s ease-in-out;
}

.tab-content{
    display: block;
    font-size: 1em;
    width: 100%;
    height: 384px;
    transition: all 0.45s ease-in-out;
    padding: 1em;
}

.tabs {
    position: relative;
    display: flex;
    flex-direction: column;

    max-height: 24em;
    min-width: 22em;
    overflow-y: auto;
    overflow-x: hidden;
}

.tabs a {
    position: relative;
    display: flex;
    width: 100%;
    font-weight: 600;
    overflow: hidden;
    color: white;
    justify-content: start;
    height: 90px;
    padding: 0px 1.25em;
    align-items: center;
    gap: 1em;
}

.tabs .active,
.tabs a:hover {
    font-weight: 700;
    outline: none;
    color: var(--color5);
    border-left: 4px solid var(--color5);
}

#servicios .tab-content-wrapper em {
    font-weight: 600;
    color: var(--color5);
    font-size: 1.5em;
}

#servicios .tab-content-wrapper p {
    margin-top: 1em;
    text-align: center;
}

#servicios .tab-content-wrapper div {
    margin-top: 2em;
}

#servicios .tab-content-wrapper img {
    width: 8em;
    min-width: 8em;
    height: 8em;
    min-height: 8em;
}

#servicios .tab-content-wrapper .tab-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* METRICAS ----------------------------------------------------------------------------*/

#metricas {
    background-color: var(--color1);
    padding: 3em;
}

#metricas > ul {
    width: 100%;
    margin-top: 2em;
    overflow-y: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

#metricas > ul > li {
    width: 16em;
    min-width: 16em;
    min-height: 30em;
    height: 30em;
    background-color: #494949;
    border-radius: .5em;
    scroll-snap-align: center;
    position: relative;
}

#metricas > ul > li img {
    border-radius: .5em;
    position: relative;
    z-index: 2;
}

/* REVIEWS ----------------------------------------------------------------------------*/

#reviews {
    margin-top: unset;
    background-color: var(--color2);
    padding: 2em 2em 4em;
}

#reviews > header > aside {
    height: 20em;
}

#reviews > ul {
    width: 100%;
    margin-top: 2em;
    overflow-y: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

#reviews > ul > li {
    width: 23em;
    min-width: 23em;
    min-height: 14em;
    padding: 1em;
    background-color: #494949;
    border-radius: .5em;
    scroll-snap-align: center;
}

#reviews .customer > img {
    width: 5em;
    height: 5em;
    border: 1px solid black;
    border-radius: 50%;
}

#reviews .customer > div {
    margin: 1em 0 1em 1em;
}

#reviews .customer > div em {
    font-weight: 700;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    overflow-wrap: anywhere;
    line-height: 1em;
}

#reviews .customer > div div {
    margin-top: .5em;
}

#reviews .customer > div span {
    margin-top: .25em;
    font-size: .9em;
}

#reviews > ul > li div > i {
    margin: 0 .125em;
    background-color: yellow;
}

#reviews > ul > li > aside {
    margin-top: 1em;
    overflow-y: auto;
}

#reviews > footer {
    margin-top: 2em;
}

/* cotiza -------------------------------------------------------------------------------*/

#cotiza > div {
    width: 100%;
    margin-top: 2em;
    gap: 4em;
}

#cotiza > div > aside {
    flex: 1;
    height: 40em;
}

#cotiza > div > article > form {
    max-width: 40em;
}

#cotiza > div > article {
    width: 50%;
}

#cotiza .ul-form > li > ul {
    margin-top: 1em;
}

#cotiza .ul-form > li > ul > li {
    padding: 0.5em;
}

#cotiza .ul-form > li > ul > li label {
    cursor: pointer;
    padding: 0.5em;
    transition: all 0.25s;
    background-color: var(--color7);
    color: #a1a1a1;
    border-radius: 1em;
    font-size: 1.25em;
}

#cotiza .ul-form > li > ul input[type="radio"] {
    display: none;
}

#cotiza .ul-form > li > ul input[type="radio"]:checked + label {
    background-color: var(--color4);
    color: white;
}

/* PORTAFOLIO ------------------------------------------------------------------ */

#portafolio {
    margin-top: 8em;
}

#portafolio .destacados {
    width: 100%;
    margin-top: 1em;
}

#portafolio em {
    color: var(--color5);
    font-size: 2em;
    font-weight: 700;
}

#portafolio .destacados span {
    font-size: 1.25em;
}

#portafolio .destacados > ul {
    margin-top: 2em;
    overflow: hidden;
    padding: 1em;
}

#portafolio .destacados > ul > li {
    border-radius: .25em;
    background-color: var(--color7);
}

#portafolio .destacados > ul > li + li {
    margin-top: 2em;
}

#portafolio .destacados > ul > li:hover {
    box-shadow: 0px 0px 10px 3px #ffffff30;
    transition: all .3s;
}

#portafolio .destacados > ul > li a {
    cursor: pointer;
}

#portafolio .destacados .proyecto {
    position: relative;
}

#portafolio .destacados > ul > li:hover a .proyecto {
    overflow: hidden;
    border-radius: .25em 0 0 .25em;
}

#portafolio img {
    z-index: 2;
    position: relative;
}

#portafolio .destacados > ul > li:hover .proyecto img {
    transform: scale(1.125);
    transition: all .3s;
}

#portafolio .destacados ul li:nth-child(2n) a .proyecto,
#portafolio .destacados ul li:nth-child(2n) a img {
    border-radius: 0 .25em .25em 0;
}

#portafolio .destacados > ul > li:nth-child(2n) .proyecto + div {
    border-radius: .25em 0 0 .25em;
    align-items: end;
}

#portafolio .destacados .proyecto + div {
    cursor: default;
    border-radius: 0 .25em .25em 0;
    flex: 1;
    padding: 1.5em;
}

#portafolio .destacados .proyecto + div > div{
    text-align: start;
}

#portafolio .destacados > ul > li:nth-child(2n) .proyecto + div > div {
    text-align: end;
    align-items: end;
}

#portafolio .destacados .proyecto + div em {
    font-size: 3em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    overflow-wrap: anywhere;
    line-height: 1em;
    height: max-content;
}

#portafolio .destacados .proyecto + div ul {
    margin-top: 5em;
}

#portafolio .destacados .proyecto + div > ul i {
    background-color: #fff;
    width: 2em;
    min-width: 2em;
    height: 2em;
    min-height: 2em;
}

#portafolio .destacados ul li div span {
    margin-top: 1em;
    color: white;
}

.listado {
    margin: 2em 0 4em 0;
    padding: 0 2em;
}

.listado ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 3em;
}

.listado ul li {
    border-radius: .25em;
    text-align: center;
    position: relative;
    display: flex;
    overflow: hidden;
    border: 1px solid #313131;
}

.listado ul li a {
    overflow: hidden;
    flex: 1;
    aspect-ratio: auto;
    position: relative;
    background-color: var(--color7);
    border-radius: .25em;
}

.listado ul li img {
    border-radius: .25em;
}

.listado ul li .prod {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    color: #fff;
    font-weight: 700;
    background-color: #313131e0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 5;
    padding: .5em;
}

.listado ul li .prod span {
    font-size: 1.325em;
    color: var(--color5);
}

.listado ul li:hover img {
    transform: scale(1.125);
    transition: all .3s;
}

.listado ul li:hover .prod {
    opacity: 1;
    visibility: visible;
    z-index: 4;
}

.listado > div > span {
    font-size: 1.125em;
}

.listado ul li .hover {
    display: none;
}

.listado ul li:hover .without-hover {
    display: none;
}

.listado ul li:hover .hover {
    display: block;
}

/* PROYECTO ------------------------------------------------------------------ */

#banner div {
    position: relative;
    scroll-snap-type: x mandatory;
    width: 100%;
}

#banner div aside {
    width: 6em;
    height: 100vh;
    flex-direction: column-reverse;
    padding: 4em 2em;
    background-color: #00000030;
}

#banner .vertical-text {
    writing-mode: tb-rl;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    font-weight: 600;
    letter-spacing: .2em;
    color: var(--color5);
    cursor: default;
}

#banner div aside a {
    cursor: pointer;
    writing-mode: tb-rl;
    -webkit-transform: rotate(2700deg);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

#banner div aside a,
#agendar .popup .imagenes a {
    cursor: none;
    pointer-events: none;
    user-select: none;
}

#banner div aside a i {
    width: 1.75em;
    min-width: 1.75em;
    height: 1.75em;
    min-height: 1.75em;
    background-color: var(--color5);
}

#banner div aside a:hover i {
    opacity: .5;
}

#banner > div article {
    position: relative;
    flex: 1;
    width: 100%;
}

#banner > div article nav {
    bottom: unset;
    transform: translate(0, 125%);
}

#banner div aside ul li {
    margin: .5em 0;
}

#banner > div article > ul {
    overflow: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    width: 100%;
    height: 100vh;
}

#banner > div article > ul > li {
    min-width: 100%;
    height: 100%;
    overflow: hidden;
} 

#banner > div article > ul > li img,
#banner > div article > ul > li video{
    position: relative;
    z-index: 2;
}

#proyecto em {
    font-size: 1.25em;
    font-weight: 600;
    margin-bottom: .5em;
}

#proyecto > div {
    margin-top: 1em;
}

#proyecto > div > div i {
    background-color: #fff;
}

#proyectos .nav-arrows{
     display: none;
}

/* SERVICIO ------------------------------------------------------------------ */

#servicio {
    margin-top: 8em;
    position: relative;
    z-index: 1;
}

#servicio > aside {
    width: 80%;
}

#servicio > aside em {
    font-size: 2.5em;
    font-weight: 600;
    color: var(--color5);
}

#servicio > aside span {
    margin-top: 1em;
}

.proyectosImg {
    margin-top: 4em;
    position: relative;
}

.proyectosImg .empty-state {
    width: 80%;
}

.proyectosImg strong {
    color: var(--color5);
    font-size: 1.5em;
}

.proyectosImg .mockups {
    margin: 2em 0;
    background: linear-gradient(to left, var(--color1) 65%, var(--color6) 40%);
    border-radius: 1em;
    padding: 2em 0;
    width: 95%;
}

.proyectosImg .phone {
    position: relative;

    animation: bounce 1s; 
    animation-direction: alternate; 
    animation-timing-function: cubic-bezier(.5, 0.05, 1, .5); 
    animation-iteration-count: infinite; 
}

.proyectosImg .tablet,
.proyectosImg .phone {
    position: relative;
    height: 100%;
}

.proyectosImg .phone > img,
.proyectosImg .tablet > img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 4;
}

.proyectosImg .phone ul,
.proyectosImg .tablet ul {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
}

.proyectosImg .phone > ul li img {
    transform: skewy(10deg);
}

/* NOSOTROS ------------------------------------------------------------------ */

#valores, 
#equipo, 
#join {
    margin-top: 4em;
}

#equipo > h2, 
#join > em {
    margin-bottom: 1em;
}

#valores > ul > li {
    width: 80%;
}

#valores > ul > li + li {
    margin-top: 3em;
}

#valores > ul li.right {
    flex-direction: row-reverse;
    margin-left: auto;
}

#valores > ul li.right div em{
    margin-left: auto;
    text-align: end;
}

#valores > ul li.right div span {
    text-align: end;
}

#valores > ul li em {
    margin-bottom: .25em;
    font-weight: 700;
    font-size: 3em;
    color: var(--color5);
}

#valores > ul li em::after {
    content: '';
    width: 4.5em;
    height: .08em;
    background-color: var(--color5);
    display: block;
    margin-top: .125em;
}

#valores > ul li img {
    width: 14em;
    min-width: 14em;
    height: 14em;
    min-height: 14em;
}

#valores > ul > li li + li {
    margin-top: .125em;
}

#valores b {
    color: var(--color5);
}

#join .btn {
    margin-top: 2em;
}

#join .btn a {
    width: max-content;
    margin: auto;
}

#join em {
    color: var(--color5);
    font-size: 1.5em;
    font-weight: 600;
}

.nosotros > aside {
    flex: 1;
}

/* UNETE ------------------------------------------------------------------ */

#unete {
    margin-top: 9em;
}

#unete h2 {
    color: var(--color5);
    font-weight: 600;
}

#unete > header {
    width: 100%;
    position: relative;
}

#unete > header span {
    color: #9f9f9f;
}

#unete > header > div {
    width: 60%;
}

#unete > header > aside{
    flex: 1;
}
    
#unete .beneficios {
    width: 100%;
    position: relative;
    margin-top: 4em;
}

#unete .beneficios strong {
    color: var(--color5);
    font-size: 1.5em;
}

#unete .beneficios ul li {
    padding: 1.5em;
    background-color: var(--color7);
    border-radius: 0.5em;
}

#unete .beneficios ul li i {
    background-color: var(--color5);
} 

#unete .beneficios ul li span {
    margin-left: .5em;
    font-weight: 700;
}

#unete form {
    width: 100%;
    max-width: 40em;
}

#unete .ul-form > li > ul {
    margin-top: 1em;
}

#unete .ul-form > li > ul > li {
    padding: 0.5em;
}

#unete .ul-form > li > ul > li label {
    cursor: pointer;
    padding: 0.5em;
    transition: all 0.25s;
    background-color: var(--color7);
    color: #a1a1a1;
    border-radius: 1em;
    font-size: 1.25em;
}

#unete .ul-form > li > ul input[type="radio"] {
    display: none;
}

#unete .ul-form > li > ul input[type="radio"]:checked + label {
    background-color: var(--color4);
    color: white;
}

#unete .ul-form > li:last-child {
    margin-top: 2em;
}

#unete .puestos {
    margin-top: 2em;
}

#unete .custom-file{
    border: 1px dashed var(--color5);
    border-radius: 0.5em;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: inline-block;
    padding: 1em;
    margin-top: 0.5em;
}

#unete .custom-file i {
    background-color: var(--color5);
}

#unete .custom-file-label {
    cursor: pointer;
    gap: 0.5em;
}

#unete .custom-file input{
    display: none;
}

#unete ul.file-list{
    font-family:arial;
    list-style: none;
    padding:0;
}

#unete ul.file-list li{
    padding: 0.5em;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#unete .remove-list{
    cursor:pointer;
    margin-left:10px;
}

#unete .cv {
    margin-top: 1em;
}

/* AGENDAR ---------------------------------------------------------------- */

#agendar {
    position: relative;
    margin-top: 8em;
}

#agendar > article{
    margin-top: 2em;
}

#agendar > header > span {
    color: #9F9F9F;
}

#agendar .ul-form {
    width: 50%;
}

#agendar .ul-form .label-cotizacion:not(.not-visible) + .input select {
    margin-top: 0;
} 

#agendar .horarios {
    margin-top: 1em;
}

#agendar .horarios > li {
    padding: 0.5em;
}

#agendar .horarios > li label {
    cursor: pointer;
    padding: 0.5em;
    color: #a1a1a1;
    transition: all 0.25s;
    background-color: var(--color7);
    border-radius: 1em;
    font-size: 1.25em;
}

#agendar .horarios input[type="radio"] {
    display: none;
}

#agendar .horarios input[type="radio"]:checked + label {
    background-color: var(--color4);
    color: white;
}

#agendar form > footer {
    margin-top: 2em;
}

#agendar .item-horarios span,
#agendar label {
    color: #a1a1a1;
}

#agendar label img {
    width: 2em;
    min-width: 2em;
    height: 2em;
    min-height: 2em;
}

#agendar  .background-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #00000050;
    z-index: 32;
}

#agendar .popup {
    background-color: var(--color2);
    padding: 2em;
    margin: auto;
    z-index: 65;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}    

#agendar .popup > div {
    width: 100%;
}

#agendar .popup ul li,
#agendar .popup span {
    color: white;
}

#agendar .popup div label {
    cursor: pointer;
}

#agendar .popup .imagenes {
    position: relative;
}

#agendar .popup div label i {
    margin-left: auto;
    background-color: white;
}

#agendar #background-popup,
#agendar #background-popup:checked + .background-popup,
#agendar #background-popup:checked ~ .popup {
    display: none;
}

/* CONTACTO ---------------------------------------------------------------- */

#contacto {
    margin-top: 8em;
}

#contacto i {
    background-color: var(--color4);
}

#contacto i.argentina,
#contacto i.mexico {
    background-color: transparent;
}

#contacto > header {
    max-width: 40em;
}

#contacto > header p {
    color: #9F9F9F;
    font-weight: 400;
}

#contacto > article {
    width: 100%;
    margin-top: 4em;
}

#contacto > article > div {
    width: 40%;
}

#contacto .item + .item {
    margin-top: 2em;
}

#contacto .item > div {
    margin-left: 1em;
    max-width: 80%;
}

#contacto .item > div > header em {
    font-size: 1.5em;
    font-weight: 600;
}

#contacto .item > div > ul a {
    font-size: 2em;
}

#contacto .item > div > ul > li > a > i {
    background-color: var(--color5);
}

#contacto .ul-form > li:first-child .input, 
#contacto .ul-form > li:first-child .input input {
    margin-top: 0;
}

#contacto .ul-form > li:first-child .input label {
    top: 0.25em;
}

#contacto .ul-form > li:last-child > div + div {
    margin-top: 1em;
}

#contacto .ul-form > li + li {
    margin-top: 2.25em;
}

#contacto .phone {
    position: relative;
    animation: bounce 1s;
    animation-direction: alternate;
    animation-timing-function: cubic-bezier(.5, 0.05, 1, .5);
    animation-iteration-count: infinite;
    height: 30em;
}

#contacto .phone > img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 10;
    height: 30em;
}

#contacto .phone > ul {
    overflow: hidden;
    scroll-snap-type: x mandatory;
    width: 98%;
    height: 98%;
    margin: auto;
}

#contacto .phone > ul > li {
    min-width: 100%;
    height: 100%;
    scroll-snap-align: center;
}

#contacto .bg-gradient {
    height: 30em;
    display: flex;
    align-items: center;
    justify-content: center;
}

#contacto .bg-gradient.instagram {
    background: #833ab4;
    background: linear-gradient(
      to right,
      #833ab4,#fd1d1d,#fcb045
    );
}

#contacto .bg-gradient.facebook {
    background: #00c6ff;
    background: linear-gradient(
      to right,
      #00c6ff,#0072ff
    );
}

#contacto .bg-gradient.linkedin {
    background: #0A66C2;
    background: linear-gradient(
        to right,
        #0A66C2, #044d95
    );
}

#contacto .bg-gradient.mail {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-size: 0.9em;
    transform: skewY(10deg);
    gap: 3em;
}


#contacto .bg-gradient.mail i.icon {
    transform: none;
    margin-left: unset;
}


#contacto .bg-gradient.mail > div {
    margin-left: 2em;
}

#contacto .bg-gradient.mail .correo {
    font-size: 0.7em !important;
}

#contacto .bg-gradient i.icon {
    font-size: 3em;
    margin-left: 0.5em;
    transform: skewY(10deg);
    background: white;
}

#contacto .bg-gradient a {
    z-index: 16;
    position: relative;
}

/* FAQ ------------------------------------------------------------------ */

#faq ~ #footer {
    margin-top: 0;
}

#faq > header {
    position: relative;
    height: 100vh;
    margin: 0 2em;
}

#faq > header span{
    color: #9f9f9f;
}

#faq > article {
    position: relative;
}

#faq .item {
    display: flex;
    align-items: center;
    height: 90vh;
    gap: 1em;
    padding: 1em;
    background-color: var(--color2);
    justify-content: start;
}

#faq .item:nth-child(2n) {
    background-color: var(--color3);
}

#faq .item:nth-child(2n) .text {
    text-align: end;
}

#faq .item:nth-child(2n) .text em {
    color: #000;
}

#faq .item .text {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

#faq .item .text em {
    font-size: 2em;
    font-weight: 700;
    color: var(--color5);
}

/* FOOTER ------------------------------------------------------------------ */

#floating-footer {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 0 .5em 1em 0;
    z-index: 64;
}

#floating-footer > ul {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#floating-footer > ul > li + li{
    margin-top: .5em;
}

#floating-footer > ul > li > a {
    display: flex;
    align-items: center;
    border-radius: 3em;
    color: transparent;
    transition: opacity .5s linear, width .5s linear, color .5s linear;
    opacity: .6;
    white-space: nowrap;
    justify-content: space-between;
    cursor: pointer;
    padding: 0.5em;

    transition: all .5s; 
}

#floating-footer .agendar a {
    background-color: var(--color2);
    border: 0.325em solid var(--color2);
}

#floating-footer > ul > li > a span {
    font-size: 1.125em;
    font-weight: 600;
    width: 0;
    opacity: 0;
    transition: all 0.25s linear;
    overflow: hidden;
}

#floating-footer > ul > li > a:hover {
    color: white;
    opacity: 1;
}

#floating-footer > ul .agendar a:hover {
    width: 18em;
}

#floating-footer > ul > li > a:hover span {
    width: auto;
    opacity: 1;
    margin: 0 1.125em;
}

#floating-footer > ul .whatsapp:hover > .chat {
    display: flex;
}

/* WHATSAPP ------------------------- */

#floating-footer .whatsapp label {
    position: relative;
    height: 100%;
    display: flex;
    border-radius: 50%;
    padding: 0.5em;
    background-color: #25d366;
    border: 0.325em solid #25d366;
    opacity: .6;
}

#floating-footer .whatsapp label:hover {
    opacity: 1;
}

#floating-footer .whatsapp label:hover > .chat-box {
    display: block;
    right: -.5em;
}

#floating-footer .whatsapp label > i {
    background-color: white;
}

/*===============================*/

.chat-box{ 
    position: absolute;
    display: none;
    top: -15em;
    right: 0; 

    animation: ease-in;
    animation-name: run;
    animation-duration: 0.25s;
}

.chat-top {
    width:100%;
    line-height: 1.5;
    background-color: #128c7e;
    color: white;
    text-align: center;
    border-radius: 5px 5px 0 0;
    padding: .5em;
    font-weight: 600;
}

.chat-text { 
    background:#ece5dd;
    border-radius:0 0 5px 5px;
    padding: 1em;
    height: 100%;
}

.chat-text a {
    padding: 0.5em;
    background: white;
    border-radius: 0 50px 50px 50px;
    margin-bottom: .75em;
    color: black;
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-weight: 600;
}

.chat-text a i {
    display: block;
}

.chat-text a.right {
    justify-content: end;
    border-radius: 50px 50px 0px 50px;
    width: max-content;
    margin-left: auto;
    background-color: #128c7e;
    color: white;
}

.chat-text a.left {
    justify-content: start;
    width: max-content;
    margin-right: auto;
}

/* WHATSAPP ------------------------- */

#footer {
    background-color: var(--color3);
    position: relative;
    margin-top: 14em;
}

#footer > header,
#footer > ul,
#footer > div {
    width: 100%;
}

#footer > header {
    margin-top: 1em;
    z-index: 1;
}

#footer .redes-sociales li a:hover svg {
    fill: rgb(179, 179, 179);
}

#footer > header > div > ul > li > a i {
    background-color: #fff;
    width: 2.5em;
    min-width: 2.5em;
    height: 2.5em;
    min-height: 2.5em;
}


#footer > div {
    margin-top: 2em;
    padding: .5em;
    color: #000;
    z-index: 32;
    font-weight: 600;
    font-size: .9em;
}

#footer > ul {
    margin-top: 2em;
    z-index: 32;
}

#footer > ul > li {
    max-width: 15em;
}

#footer > ul > li > em {
    color: black;
    font-weight: bold;
    font-size: 1.35em;
}

#footer > ul > li > span {
    display: inline;
    margin-top: 1em;
    color: #fff;
}

#footer > ul > li > ul {
    margin-top: 1em;
}

#footer > ul > li a {
    color: #fff;
    transition: all 0.5s;
}

#footer > ul > li a::after {
    content: "";
    width: 1em;
    height: 0.125em;
    background-color: transparent;
    transition: all 0.5s;
    display: block;
    margin: 0 auto;
}

#footer > ul > li a:hover::after {
    content: "";
    width: 100%;
    height: 0.125em;
    background-color: #000;
    display: block;
    margin: 0 auto;
}

#footer > ul > li a:hover {
    color: white;
}

#footer .contacto {
    color: #fff;
}

#footer .contacto > li > i {
    background-color: white;
    width: 2em;
    height: 2em;
}

#footer .contacto svg {
    width: 2em;
    min-width: 2em;
    height: 2em;
    min-height: 2em;
}

#footer > svg {
    width:100%;
    overflow:visible;
    position: absolute;
    z-index: 16;
    top: -14em;
}
  
.wave {
    animation: wave 3s linear;
    animation-iteration-count:infinite;
    fill: var(--color3);
}
.drop {
    fill: var(--color5);
    animation: drop 3.2s linear infinite normal;
    stroke: var(--color4);
    stroke-width:0.5;
    transform: translateY(25px) ;
    transform-box: fill-box;
    transform-origin: 50% 100%;
}
.drop2 {
    animation-delay: 3s;
    animation-duration:3s;
}
.drop3 {
    animation-delay: -2s;
    animation-duration:3.4s;
}
.drop4 {
    animation-delay: 1.7s;
}
.drop5 {
    animation-delay: 2.7s;
    animation-duration:3.1s;
}
.drop6 {
    animation-delay: -2.1s;
    animation-duration:3.2s;
}
.gooeff {
    filter: url(#goo);
}
#wave2 {
    animation-duration:5s;
    animation-direction: reverse;
    opacity: .6
}
#wave3 {
    animation-duration: 7s;
    opacity:.3;
}

/* ANIMATIONS ------------------------------------------------------------------ */

.gradient {
    position: absolute;
    top: 0;
	width: 100%;
    background: linear-gradient(334deg, var(--color1), var(--color6), var(--color3));
	background-size: 180% 180%;
	animation: gradient-animation 6s ease infinite;
    mask-image: linear-gradient(
        #262626 80%,
        transparent
    );
}

/* KEYFRAMES ------------------------------------------------------------------------------- */

@keyframes rightanimation {
    from {
        transform: translateX(15em);
    }
    to {
        transform: translateX(0em);
    }
}

@keyframes gradient-animation {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@keyframes fade-in {
    5% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    95% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progress {
    to {
        transform: scaleX(1);
    }
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loaderImg {
    to { opacity: 0 }
}

@keyframes drop {
    0% {
      transform: translateY(25px); 
    }
    30% {
      transform: translateY(-10px) scale(.1);
    }
    30.001% {
      transform: translateY(25px) scale(1); 
    }
    70% {
      transform: translateY(25px); 
    }
    100% { 
      transform: translateY(-10px) scale(.1);  
    }
}
@keyframes wave {
    to {transform: translateX(-100%);}
}

@keyframes run {
    0% {
      right: -10em;
      opacity: .5;
    }
    100% {
      right: -8%;  
      opacity: 1;  
    }
}

@keyframes bounce { 
    from { 
        transform: translate3d(0, 0, 0); 
    } 
    to { 
        transform: translate3d(0, 3em, 0); 
    } 
} 
