@font-face {
    font-family: "fontello_tiktok";
    src: url("../fonts/fontello_tiktok.eot?45484529");
    src: url("../fonts/fontello_tiktok.eot?45484529#iefix") format("embedded-opentype"),
        url("../fonts/fontello_tiktok.woff2?45484529") format("woff2"),
        url("../fonts/fontello_tiktok.woff?45484529") format("woff"),
        url("../fonts/fontello_tiktok.ttf?45484529") format("truetype"),
        url("../fonts/fontello_tiktok.svg?45484529#fontello") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "fontello_x";
    src: url("../fonts/fontello_x.eot?45484529");
    src: url("../fonts/fontello_x.eot?45484529#iefix") format("embedded-opentype"),
        url("../fonts/fontello_x.woff2?45484529") format("woff2"),
        url("../fonts/fontello_x.woff?45484529") format("woff"),
        url("../fonts/fontello_x.ttf?45484529") format("truetype"),
        url("../fonts/fontello_x.svg?45484529#fontello") format("svg");
    font-weight: normal;
    font-style: normal;
}

.mdi-tiktok.tiktok:before,
.mdi-tiktok:before {
    content: "\E800";
    font-family: "fontello_tiktok" !important;
    font-size: 0.85em !important;
    top: -0.08em;
    position: relative;
}

.mdi-twitter-x.twitter-x:before,
.mdi-twitter-x:before {
    content: "\E803";
    font-family: "fontello_x" !important;
}

/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --main-title-font: 'Roboto', sans-serif;
    --main-text-font: 'Roboto', sans-serif;
    --main-accent-font: 'Share Tech', sans-serif;
    --primary-color: #FF6700;
    --secondary-color: #C20C5F;
    --dark-color: #11031D;
    --dark-purple-color: #3F3356;
    --grey-mid-color: #827B88;
    --grey-light-color: #F2F2F2;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    --ar: 0.718;
    --br: 0 4.5% 4.5% 4.5%;
    --hl: 0;
    --bg: hsl(23.23deg 93.94% 6.47% / 50%);
    --t: all .66s linear(0,
            0.007,
            0.028 2.1%,
            0.112 4.6%,
            0.224 6.9%,
            0.604 14.2%,
            0.713,
            0.803,
            0.879,
            0.939,
            0.985 26.2%,
            1.019 28.9%,
            1.034 30.7%,
            1.045,
            1.051 34.8%,
            1.053 37.2%,
            1.046 41.6%,
            1.012 54.7%,
            1.001 62.8%,
            0.997 73%,
            1)
}

.share-tech-regular {
    font-family: "Share Tech", sans-serif;
    font-weight: 400;
    font-style: normal;
}

html {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    font-family: var(--main-text-font);
    color: white;
    background: black;
}

main {
    flex: 1 0 auto;
}

a,
p,
li {
    text-decoration: none;
    color: inherit;
    font-size: 1rem;
    letter-spacing: 0.01em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p>a {
    color: var(--primary-color);
    font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
    margin: 0 auto;
}

.flex-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.flex-box.between {
    justify-content: space-between;
}

.flex-box.column {
    flex-direction: column;
}

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

.flex-box.items-end {
    align-items: flex-end;
}

.flex-box.items-center {
    align-items: center;
}

.flex-box.items-stretch {
    align-items: stretch;
}

.flex-box .flex-2 {
    width: 50%;
    padding: 10px;
}

.flex-box .flex-3 {
    width: 33.33%;
    padding: 10px;
}

.flex-box .flex-4 {
    width: 25%;
    padding: 10px;
}

.flex-box .flex-5 {
    width: 20%;
    padding: 10px;
}

.flex-box .flex-10 {
    width: 100%;
    padding: 10px;
}

.txt-accent {
    font-family: var(--main-accent-font);
    font-weight: 200;
}

.color-accent {
    color: var(--primary-color);
}

.btn {
    font-size: 26px;
    padding: 8px 16px;
    border-radius: 40px;
    font-family: var(--main-accent-font);
    text-shadow: none;
    animation: fadeInUp 1s 0.4s both;
    transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
    white-space: nowrap;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
    outline: 1px solid;
    outline-color: rgba(255, 103, 0, 0.5);
    outline-offset: 0px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid;
    /* box-shadow: inset 0 0 20px rgba(255, 255, 255, .5), 0 0 20px rgba(255, 255, 255, .2); */
    outline-color: rgba(255, 255, 255, 0);
    outline-offset: 15px;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.hidden {
    display: none;
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
    z-index: 4;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-description {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* TERAM */
.team-line-content {
    position: relative;
    width: 100%;
    top: 50px;
    right: -10px;
}

.team-line {
    width: 60%;
    margin-left: 40%;
    background: black;
    border-top: 2px solid var(--grey-mid-color);
}

.team-angle {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 100%;
    bottom: 0px;
    background: linear-gradient(to bottom right, transparent 48%, var(--grey-mid-color) 48%, var(--grey-mid-color) 52%, transparent 52%);
}

#post-hero-content {
    opacity: 1;
    position: relative;
    z-index: 30;
    padding-top: 8%;
    background: #000;
}

.team-section {
    position: relative;
}

.team-section::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, black calc(50% + 40px), var(--grey-mid-color) calc(50% - 40px), var(--grey-mid-color) 100%);
}

.team-section h2 {
    font-size: 45px;
    animation: fadeInUp 1s;
}

.team-section .subtitle {
    font-size: 30px;
    margin-bottom: 20px;
    animation: fadeInUp 1s 0.2s both;
}

.counter-box {
    margin: 10px 0;
    transition: opacity 0.5s ease-in-out;
}

.counters-section {
    margin-top: 20px;
}

.counter-box p {
    text-transform: uppercase;
    font-size: 28px;
    line-height: 35px;
    font-weight: 600;
}

.count-number {
    background-color: var(--primary-color);
    font-size: 50px;
    font-weight: 600;
    width: 200px;
    text-align: center;
    justify-content: center;
    border-radius: 100px;
    margin-right: 16px;
}

.counter-box:first-child .count-number::before,
.counter-box:nth-child(2) .count-number::before,
.counter-box:nth-child(3) .count-number::before {
    content: '+';
    display: block;
}

.team-images-content {
    position: relative;
    width: 100%;
}

.team-images-content img {
    position: absolute;
    bottom: -10px;
    width: auto;
}

.team-images-content img:first-child {
    left: 82%;
    height: 365px;
    bottom: -10px;
}

.team-images-content img:nth-child(2) {
    left: 48%;
    height: 368px;
}

.team-images-content img:nth-child(3) {
    left: 24%;
    height: 385px;
    bottom: -10px;
}

.team-images-content img:nth-child(4) {
    left: 0;
    height: 400px;
}

/* Contact Section */
.galaxy-bg-section {
    background-image: url('../images/fondo_espacio_naranja.png');
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 85%;
    position: relative;
}

.land-contact-box {
    min-height: 60vh;
}

.contact-box {
    position: relative;
    border: 1px solid var(--primary-color);
    background: rgba(32, 13, 1, 0.5);
    width: 50%;
    margin-left: 40%;
    padding: 2%;
    height: fit-content;
}

.contact-box .section-title {
    color: var(--primary-color);
    font-family: var(--main-accent-font);
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: 45px;
}

.contact-box p {
    color: var(--primary-color, #FF6700);
    font-family: var(--main-accent-font);
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
    background: transparent;
    width: 100%;
    padding: 12px;
    border: 1px solid #ffffff;
    color: #ffffff;
    border-radius: 0px;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
}

input:-internal-autofill-selected {
    background-color: transparent !important;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form label {
    margin-bottom: 4px;
    color: var(--primary-color);
}

.form-decoration .angle-left {
    border-top: 3px solid var(--primary-color);
    border-left: 3px solid var(--primary-color);
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 10px;
    left: 10px;
}

.form-decoration .cube {
    display: block;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.form-decoration .angle-right {
    border-bottom: 3px inset var(--primary-color);
    border-right: 3px inset var(--primary-color);
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.contact-spaceship-box {
    position: absolute;
    width: 42%;
    margin-left: 4%;
    margin-top: 6%;
    z-index: 2;
    animation: floatAndRotate 6s ease-in-out infinite;
}

.contact-spaceship-box img {
    width: 100%;
    max-width: 800px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatAndRotate {
    0% {
        transform: translatey(0px) translatex(0px) rotate(-1.5deg);
    }

    50% {
        transform: translatey(-25px) translatex(15px) rotate(1.5deg);
    }

    100% {
        transform: translatey(0px) translatex(0px) rotate(-1.5deg);
    }
}

@keyframes floatGravity {
    0% {
        transform: translatey(0px) rotate(-1.25deg);
    }

    50% {
        transform: translatey(-20px) rotate(1.25deg);
    }

    100% {
        transform: translatey(0px) rotate(-1.25deg);
    }
}

.landing-header .logo-ir img {
    width: 280px;
    margin: 80px auto 40px;
}

.page-header .logo-ir img {
    width: 280px;
}

/* CASES */
.client-titles h2 {
    color: white;
    font-family: var(--main-title-font);
    font-size: 100px;
    font-style: normal;
    font-weight: 800;
    line-height: 120px;
    text-transform: uppercase;
}

.client-logos img {
    position: absolute;
    width: 200px;
    top: calc(50% - 60px);
    bottom: 0;
    left: calc(50% - 60px);
    right: 0;
    background: var(--primary-color);
}

/* CASOS EXITO */
.stars-success-bg {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
}

.brand-experience {
    position: relative;
    display: flex;
    justify-content: flex-end;
    /* min-height: 400vh; */
}

.brands-list {
    position: relative;
    width: 50%;
    padding-top: 40px;
    padding-bottom: 40px;
    z-index: 2;
}

.brand-text {
    font-size: 120px;
    line-height: 140px;
    padding: 20px 0px;
    font-weight: 700;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    letter-spacing: -1px;
}

/* Contenedor de logos FIXED */

.brand-logo-content {
    position: relative;
}

.logo-container {
    position: sticky;
    top: calc(50% - 150px);
    transform: translateX(150px);
    width: 300px;
    height: 300px;
    z-index: 10;
    background: rgba(255, 103, 0, 0.9);
    backdrop-filter: blur(10px);
    /* transition: top 0.6s ease-out; */
}

.brand-decoration .angle-left {
    border-top: 3px solid #ffffff;
    border-left: 3px solid #ffffff;
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 10px;
    left: 10px;
}

.brand-decoration .angle-right {
    border-bottom: 3px inset #ffffff;
    border-right: 3px inset #ffffff;
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.brand-experience>a {
    position: sticky;
    top: calc(50% - 1em);
    height: 150px;
    font-size: 2em;
}

/* Cada logo individual */
.brand-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    opacity: 0;
}

.brand-logo img {
    width: 70%;
    margin: 0 auto;
}

.brand-logo.active {
    opacity: 1;
}

/* .brand-logo.active:first-child {
    top: -420%;
} */

/* Info de ayuda */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    z-index: 1000;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}


/* AWARDS */
.awards-content {
    z-index: 4;
}

.award-circle {
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 180px;
    border-radius: 100px;
    padding: 10px;
    border: 1px solid rgba(130, 123, 136, 0.3);

    transition: all 0.5s ease;
    will-change: transform;
    perspective: 1000px;
    position: relative;
    overflow: hidden;
    transform: scale(1);
}

.award-circle .awards_item_inner {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
}

.award-circle img {
    width: 100px;
    height: auto;
}

/* Clients Section - Sticky Scroll */
.clients {
    position: relative;
}

.clients-scroll-container {
    position: relative;
    height: 800vh;
}

.clients-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.clients .container {
    width: 100%;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.client-titles {
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    pointer-events: auto;
}

.client-titles::-webkit-scrollbar {
    display: none;
}

.client-title {
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
    position: relative;
    margin: 0;
}

.client-title.active {
    opacity: 1;
    color: var(--primary-color);
}

.client-logos {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 10;
}

.client-logo {
    position: absolute;
    left: 20%;
    width: 250px;
    height: auto;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.24, 0.48, 0.68, 0.94),
        transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.client-logo.active {
    opacity: 0.9;
    transform: translate(-50%, -50%);
}

.land-contact-box .text-service-content p {
    font-size: 36px;
    line-height: initial;
    margin: 20px 0;
}

.land-contact-box .text-service-content p>span {
    font-family: var(--main-text-font), serif;
    color: var(--primary-color);
    font-style: italic;
    font-weight: 300;
}


/* CARD CODEPEN */

/* Responsive */
@media (max-width: 1400px) {
    .team-images-content {
        transform: scale(0.8);
    }

    .team-section .team-img-box {
        padding-right: 8%;
    }
}

@media (max-width: 1100px) {
    .land-contact-box .text-service-content p {
        font-size: 30px;
    }

    .btn {
        font-size: 20px;
    }

    .brand-text {
        font-size: 80px;
        line-height: 100px;
    }

    .logo-container {
        top: calc(50% - 120px);
        transform: translateX(120px);
        width: 240px;
        height: 240px;
    }

    .award-circle {
        width: 160px;
        height: 160px;
    }

    .award-circle img {
        width: 85px;
    }

    .award-circle p {
        line-height: 18px;
        font-size: 14px;
    }

    .contact-box {
        width: 60%;
        margin-left: 35%;
    }

    .contact-spaceship {
        width: 40%;
        margin-left: 2%;
        margin-top: 2%;
    }

    .contact-box .section-title {
        font-size: 35px;
        line-height: 35px;
    }

    .contact-box p {
        font-size: 22px;
        line-height: 24px;
    }
}

@media (max-width: 991px) {

    .page-header .logo-ir img {
        width: 200px;
        margin: 20px auto 20px;
    }

    .landing-header .logo-ir img {
        width: 200px;
        margin: 60px auto 40px;
    }

    .land-contact-box .text-service-content p {
        font-size: 26px;
    }

    .btn {
        font-size: 20px;
    }

    .team-line-content {
        display: none;
    }

    .team-section .flex-box>.flex-2 {
        position: relative;
        width: 80%;
        margin: 0 auto;
    }

    .team-section::after {
        background: linear-gradient(to right, var(--grey-mid-color) 90%, black calc(90% - 40px), black 100%);
    }

    .team-section .team-img-box {
        height: 300px;
        padding-right: 0px;
    }

    .team-images-content {
        position: absolute;
        bottom: 8px;
        transform: scale(0.7);
    }

    .team-images-content img:nth-child(4) {
        left: -12%;
    }

    .team-images-content img:nth-child(3) {
        left: 14%;
    }

    .team-images-content img:nth-child(2) {
        left: 43%;
        height: 366px;
    }

    .team-images-content img:first-child {
        left: 76%;
    }

    .award-circle {
        width: 140px;
        height: 140px;
    }

    .award-circle img {
        width: 70px;
    }

}

@media (max-width: 768px) {
    .app-incMouse.flair.flair--3 {
        display: none;
    }

    section {
        padding: 60px 0;
    }

    .btn {
        font-size: 18px;
    }

    .brand-experience {
        padding: 0 6%;
    }

    .brand-text {
        font-size: 60px;
        line-height: 80px;
    }

    .logo-container {
        top: calc(50% - 100px);
        transform: translateX(100px);
        width: 200px;
        height: 200px;
    }

    .section-title {
        font-size: 2rem;
    }

    section.contact {
        padding-top: 220px;
        padding-bottom: 80px;
    }

    .contact-box {
        width: 80%;
        margin-left: 10%;
    }

    .contact-box .section-title {
        font-size: 28px;
        line-height: 32px;
        padding-top: 24px;
    }

    .contact .contact-spaceship-box {
        width: 60%;
        margin-top: -10%;
    }

    .contact-spaceship-box .contact-spaceship {
        width: 60%;
        margin-left: 2%;
        margin-top: 0;
    }

    #lightWrapper,
    .cont-shooting-stars {
        display: none;
    }

    .counter-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .counter-box .count-number {
        font-size: 40px;
        width: 180px;
        margin-bottom: 20px;
    }

    .rewards-grid.flex-box {
        justify-content: center;
    }

    .rewards-grid.flex-box>.flex-5 {
        width: 33.33%;
    }
}

@media (max-width: 580px) {
    section {
        padding: 40px 0;
    }

    .page-header .logo-ir img {
        width: 180px;
        margin: 20px auto 20px;
    }

    .landing-header .logo-ir img {
        width: 180px;
        margin: 60px auto 20px;
    }

    .land-contact-box .text-service-content p {
        font-size: 22px;
    }

    .team-section h2 {
        font-size: 32px;
        line-height: 1;
    }

    .team-section .team-img-box {
        height: 220px;
    }

    .team-section .flex-box>.flex-2 {
        width: 100%;
    }

    .team-images-content {
        transform: scale(0.5);
    }

    .team-images-content img:nth-child(4) {
        left: -50%;
    }

    .team-images-content img:nth-child(3) {
        left: -14%;
    }

    .team-images-content img:nth-child(2) {
        left: 24%;
        height: 368px;
    }

    .counters-section {
        margin-top: 0px;
    }

    .brand-text {
        font-size: 36px;
        line-height: 60px;
    }

    .logo-container {
        top: calc(50% - 60px);
        transform: translateX(60px);
        width: 120px;
        height: 120px;
    }

    .brand-experience>a {
        top: calc(50% - 1.75em);
        height: 150px;
        font-size: 1.5em;
    }

    .rewards-grid.flex-box>.flex-5 {
        width: 50%;
    }

    .contact-form>.flex-2 {
        width: 100%;
    }
}

/*  */