/* Principal */

main {
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
    background-color: #FBF8FC;
}

main > div:not(.home-services) {
    overflow: hidden;
}

.home-background-left-container, .home-background-right-container {
    width: 100%;
}

.home-background-left, .home-background-right {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 80px;
}

.home-background-left > div, .home-background-right > div {
    height: 60px;
    width: 100%;
}

.home-background-left {
    margin-top: 200px;
}

.home-background-right {
    margin-top: -200px;
    align-items: end;
}

.home-background-left > div {
    border: 1px solid #6c3b9f;
    border-left: none;
    border-radius: 0 15px 15px 0;
    width: 90%;
}

.home-background-left > div:nth-of-type(2) {
    background-color: #6c3b9f;
    width: 50%;
}

.home-background-right > div {
    border: 1px solid #cc3d9f;
    border-right: none;
    border-radius: 15px 0 0 15px;
}

.home-background-right > div:nth-of-type(2) {
    background-color: #cc3d9f;
    width: 75%;
}

@media (max-width: 1500px) {
    .home-background-left, .home-background-right {
        display: none;
    }
}

/* Menú de inicio */

.nav-bar {
    max-width: 1500px;
    height: 60px;
    padding: 10px 20px 10px 20px;
    display: flex;
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    z-index: 50;
    justify-content: space-between;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(10px);
}

.nav-language {
    position: absolute;
    width: fit-content;
    top: -25px;
    color: #3F1F47;
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(10px);
    font-size: 12px;
    right: 25px;
    padding: 2px 10px;
    border-radius: 5px;
}

.nav-language a {
    font-size: 12px;
    color: #3F1F47;
    text-decoration: none;
}

.nav-language a.active {
    font-weight: 500;
}

.nav-logo {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 70px;
    gap: 50px;
    font-size: 18px;
}

.nav-links a {
    color: #3F1F47;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-left: 20px;
    line-height: normal;
    white-space: nowrap;
}

@keyframes color {
    from {color: black;}
    to {color: #C53D90;}
}

.nav-links a:hover {
    color: #C53D90;
    animation: color 0.3s;
}

.nav-button {
    display: flex;
    padding: 12px 24px;
    justify-content: flex-end;
    align-items: center;
    color: #F5EDF7;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    border-radius: 10px;
    background: #C53D90;
}

.nav-button img {
    width: 100px;
}

@keyframes background-color {
    from {background-color: #C53D90;}
    to {background-color: #803F90;}
}

.nav-button:hover {
    cursor: pointer;
    background-color: #803F90;
    animation: background-color 0.3s;
}

@media (max-width: 1400px) {
    .nav-links {
        padding-left: 45px;
        gap: 40px;
    }
}

@media (max-width: 1100px) {
    .nav-links a {
        margin-left: 0;
    }

    .nav-links {
        padding-left: 55px;
    }
}

@media (max-width: 1500px) {
    .nav-links a {
        font-size: 15px;
    }
}

.nav-responsive-button img {
    width: 20px;
}

.nav-responsive-button {
    display: none;
}

.header-mobile-menu-container {
    display: none;
    background-color: rgba(225, 225, 225, 0.22);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 10;
}

@media (max-width: 950px) {
    .nav-links {
        flex-direction: column;
        align-items: end;
        position: fixed;
        right: 0;
        top: 65px;
        gap: 17px;
        display: none;
        background-color: rgba(255, 255, 255, 0.70);
        padding: 20px;
        z-index: 100;
        border-radius: 15px;
    }

    .nav-links a {
        font-size: 17px;
    }

    .nav-responsive-button {
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .nav-bar {
        padding: 15px 30px 15px 30px;
        width: 94%;
    }

    .nav-language {
        right: 0;
    }
}

/* Home Header */

.home-header {
    display: flex;
    flex-direction: column;
    margin: auto;
    justify-content: center;
    position: fixed;
    height: 1000px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    box-sizing: border-box;
}

.home-header video {
    object-fit: cover;
    height: 100%;
}

.home-header-arrow {
    position: absolute;
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.home-header-arrow label {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    color: white;
}

.home-header-arrow img {
    width: 20px;
    transition: transform .0.3s;
}

.home-header-arrow img:hover {
    transform: scale(1.2);
    cursor: pointer;
}

@media (max-width: 850px) {
    .home-header > div:first-of-type {
        flex-flow: column;
        align-items: center;
    }

    .home-header-video {
        width: 85%;
    }

    .home-header-text {
        width: 70%;
        text-align: center;
        padding: 20px 0 40px 0;
    }
}

@media (max-width: 500px) {
    .home-header-text {
        width: 100%;
        font-size: 24px;
        word-spacing: -4px;
    }
}


/* Home video */

.home-video {
    display: flex;
    justify-content: center;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    background-color: black;
    box-sizing: border-box;
}

.home-video video {
    width: 100%;
}


/* Home info */

.home-info-container {
    display: flex;
    align-items: center;
}

.home-info {
    position: relative;
    min-width: 1500px;
    width: 100%;
    padding: 100px 40px;
    display: flex;
    gap: 80px;
    flex-direction: column;
    margin: auto;
    box-sizing: border-box;
}

.home-info-text {
    display: flex;
}

.home-info-text > div:first-of-type {
    width: 50%;
    display: flex;
    align-items: center;
}

.home-info-text > div:last-of-type {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
}

.home-info h2 {
    color: #3F1F47;
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: 64px;
    max-width: 552px;
    margin: 0;
}

.home-info p {
    color: #3F1F47;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    max-width: 530px;
}

.home-info-youtube {
    position: relative;
    display: flex;
    box-sizing: border-box;
}

.home-info-youtube iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}


@media (max-width: 1650px) {
    .home-info h2 {
        font-size: 60px;
    }

    .home-info p {
        font-size: 24px;
    }
}

@media (max-width: 1500px) {
    .home-info h2 {
        font-size: 50px;
        line-height: 60px;
    }

    .home-info p {
        font-size: 22px;
        line-height: 35px;
    }

    .home-info {
        min-width: auto;
    }
}

@media (max-width: 1100px) {
    .home-info h2 {
        font-size: 44px;
        line-height: 50px;
        max-width: none;
    }

    .home-info p {
        font-size: 20px;
        line-height: 30px;
        max-width: none;
    }

    .home-info {
        gap: 50px;
    }

    .home-info-text {
        flex-direction: column;
    }

    .home-info-text > div:first-of-type, .home-info-text > div:last-of-type {
        width: 100%;
        align-items: baseline;
        justify-content: normal;
    }

    .home-info-text > div:last-of-type {
        align-items: baseline;
    }

    .home-youtube {
        padding: 0 20px 80px 20px;
    }
}

@media (max-width: 767px) {
    .home-info {
        padding: 80px 20px;
    }
}


/* Home description */

.home-description-container {
    background: #3F1F47;
    padding: 100px 0;
    display: flex;
}

.home-description {
    max-width: 1500px;
    width: 100%;
    padding: 0 40px;
    margin: auto;
    display: flex;
    box-sizing: border-box;
}

.home-description > div {
    width: 50%;
}

.home-description > div:last-of-type {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    flex-shrink: 0;
    gap: 25px;
}

.home-description-info {
    max-width: 478px;
}

.home-description-image {
    width: 100%;
    max-width: 600px;
    height: 520px;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.home-description-image > div {
    background: #3F1F47;
    height: 28%;
    width: 33%;
}

.home-description-image-1 {
    animation: cambiaAnchoDiv1 3s infinite;
}

.home-description-image-2 {
    animation: cambiaAnchoDiv2 3s infinite;
}

.home-description-image-3 {
    animation: cambiaAnchoDiv3 3s infinite;
}

@keyframes cambiaAnchoDiv1 {
    0% {
        width: 0;
    }
    33% {
        width: 40%;
    }
    66% {
        width: 10%;
    }
    100% {
        width: 0;
    }
}

@keyframes cambiaAnchoDiv2 {
    0% {
        width: 40%;
    }
    33% {
        width: 10%;
    }
    66% {
        width: 30%;
    }
    100% {
        width: 40%;
    }
}

@keyframes cambiaAnchoDiv3 {
    0% {
        width: 0;
    }
    33% {
        width: 5%;
    }
    66% {
        width: 35%;
    }
    100% {
        width: 0;
    }
}

.home-description h2 {
    color:#F5EDF7;
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: 72px;
    margin: 0;
}

.home-description p {
    color: #F5EDF7;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
}

.home-description-button {
    display: flex;
    padding: 12px 24px;
    justify-content: flex-end;
    align-items: center;
    color: #F5EDF7;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    border-radius: 10px;
    background-color: #C53D90;
    width: fit-content;
    cursor: pointer;
    transition: background-color 200ms linear;
    text-decoration: none;
}

.home-description-button:hover {
    background-color: #F5EDF7;
}

.home-description-button img {
    height: 15px;
    margin-left: 10px;
    transition: filter 200ms linear;
    transition: transform 200ms linear;
}

.home-description-button label {
    transition: background 2000ms linear;
    display: flex;
    align-items: center;
}

.home-description-button:hover label {
    background: linear-gradient(90deg, #803F90 0.88%, #F836AC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
}

.home-description-button:hover img {
    filter: invert(32%) sepia(75%) saturate(2787%) hue-rotate(302deg) brightness(100%) contrast(95%);
    transform: rotate(90deg);
}


@media (max-width: 1500px) {
    .home-description h2 {
        font-size: 50px;
        line-height: 54px;
    }

    .home-description p {
        font-size: 22px;
        line-height: 32px;
    }

    .home-description-image {
        height: 450px;
    }
}

@media (max-width: 1100px) {
    .home-description h2 {
        font-size: 34px;
        line-height: 34px;
    }

    .home-description p {
        font-size: 20px;
        line-height: 32px;
    }

    .home-description {
        flex-direction: column;
        gap: 100px;
    }

    .home-description > div {
        width: 100%;
    }

    .home-description {
        flex-direction: column;
    }

    .home-description > div {
        width: 100% !important;
    }

    .home-description > div:last-of-type {
        align-items: baseline;
    }

    .home-description-info {
        max-width: none;
    }
}

@media (max-width: 767px) {
    .home-description-container {
        padding: 80px 0;
    }

    .home-description {
        padding: 0 20px;
    }
}


/* Home description footer */

.home-description-footer-container {
    background: #361B3C;
    padding: 60px 0;
    min-height: 310px;
    display: flex;
}

.home-description-footer {
    max-width: 1500px;
    width: 100%;
    padding: 0 40px;
    margin: auto;
    display: flex;
    box-sizing: border-box;
}

.home-description-footer > div {
    width: 50%;
}

.home-description-footer > div:last-of-type {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    max-width: 466px;
    margin-left: auto;
}

.home-description-footer h2 {
    color: #F5EDF7;
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: 64px;
    max-width: 418px;
    margin-top: 0;
}

.home-description-footer label {
    color: #C53D90;
}

.home-description-footer > div:last-of-type p {
    color: #F5EDF7;
    font-size: 22px;
    font-weight: 300;
    line-height: 36px;
}

.home-description-footer > div:first-of-type p {
    color: #F5EDF7;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
}

.home-description-footer-animation > label {
    color: #F5EDF7;
    font-size: 64px;
    font-weight: 700;
    line-height: 40px;
}

.home-description-footer-animation > label:nth-of-type(2), .home-description-footer-animation > label:nth-of-type(5) {
    color: #C53D90;
}

@media (max-width: 1500px) {
    .home-description-footer h2 {
        font-size: 48px;
        line-height: 50px;
    }

    .home-description-footer p {
        font-size: 22px;
        line-height: 35px;
    }

    .home-description-footer-animation > label {
        font-size: 46px;
    }
}


@media (max-width: 1100px) {
    .home-description-footer {
        gap: 50px;
    }

    .home-description-footer {
        flex-direction: column;
        gap: 0;
    }

    .home-description-footer > div {
        width: 100% !important;
    }

    .home-description-footer > div:last-of-type {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .home-description-footer-container {
        padding: 60px 0;
    }

    .home-description-footer {
        padding: 0 20px;
    }
}


/* Home services */

.home-services {
    max-width: 1500px;
    width: 100%;
    padding: 120px 40px;
    margin: auto;
    box-sizing: border-box;
}

.home-services-header {
    display: flex;
}

.home-services-header > div {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-services-header > div:last-of-type {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
}

.home-services-header p {
    max-width: 438px;
    color: #3F1F47;
    font-size: 24px;
    font-weight: 300;
    line-height: 40px;
}

.home-services-header p label {
    font-weight: 500;
}

.home-services-header h1 {
    color: #3F1F47;
    font-size: 80px;
    font-weight: 500;
    line-height: 80px;
    max-width: 509px;
}

.home-services-header h1 label {
    color: #C53D90;
    font-size: 80px;
    font-weight: 500;
    line-height: 80px;
}

.home-services h1 label {
    color: #C53D90;
}

@media (max-width: 1500px) {
    .home-services-header h1 {
        font-size: 52px;
        line-height: 52px;
    }

    .home-services h1 label {
        font-size: 52px;
    }

    .home-services-header p {
        font-size: 22px;
        line-height: 34px;
    }
}

@media (max-width: 1100px) {
    .home-services-header {
        gap: 30px;
        flex-direction: column-reverse;
    }

    .home-services-header > div {
        width: 100%;
    }

    .home-services-header > div:last-of-type {
        align-items: baseline;
    }

    .home-services-header p {
        max-width: none;
    }
}

@media (max-width: 767px) {
    .home-services {
        max-width: 1500px;
        width: 100%;
        padding: 60px 20px 60x 20px;
        margin: auto;
        box-sizing: border-box;
    }
}


/* Home Ferias */

.home-ferias-container {
    background: #fbf8fc;
    padding: 120px 40px 0 40px;
    min-height: 310px;
}

.home-ferias-header {
    color: #F5EDF7;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 72px;
    max-width: 633px;
    margin-top: 80px;
}

.home-ferias {
    max-width: 1500px;
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    box-sizing: border-box;
}

.home-feria {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 20px;
    height: 350px;
    width: 30%;
    overflow: hidden;
}

.home-ferias-video-background {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) blur(1px);
}

.home-feria > img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    transition: width 0.3s ease;
}

.home-feria > img:hover {
    width: 75%;
}

@media (max-width: 1400px) {
    .home-ferias-header {
        font-size: 32px;
    }
}

@media (max-width: 900px) {
    .home-ferias-header {
        line-height: 1;
    }

    .home-ferias {
        flex-direction: column;
        gap: 30px;
    }

    .home-feria {
        width: 100%;
    }
}


/* Home loading */

.home-loading-container {
    background: #201023;
    padding: 120px 0;
    min-height: 310px;
    display: flex;
}

.home-loading {
    padding: 0 40px;
    max-width: 1500px;
    margin: auto;
    width: 100%;
    box-sizing: border-box;
}

.home-loading h1 {
    color: #F5EDF7;
    font-size: 72px;
    font-style: normal;
    font-weight: 500;
    line-height: 72px;
    margin-top: 0;
    max-width: 633px;
}

.home-loading p {
    max-width: 590px;;
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
}

.home-loading-animation {
    display: flex;
    gap: 20px;
    margin: 50px 0;
    align-items: center;
}

.home-loading-animation > div:first-of-type {
    margin-right: 50px;
}

.home-loading-animation-icon {
    margin-right: 50px;
    opacity: 0;
    animation: iconAnimation 3500ms infinite;
}

@keyframes iconAnimation {
    0%, 100% {
        opacity: 0;
    }
    25%, 50% {
        opacity: 1;
    }
}

.home-loading-animation-icon:nth-of-type(2) {
    animation-delay: 500ms;
}

.home-loading-animation-icon:nth-of-type(3) {
    animation-delay: 1000ms;
}

.home-loading-animation-icon:nth-of-type(4) {
    animation-delay: 1500ms;
}

.home-loading-banner {
    padding: 30px 55px;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    border-radius: 10px;
    margin-top: 120px;
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(90deg, #C53D90 -1.32%, #803F90 103.7%);
    transition: background-image 400ms ease;
}

.home-loading-banner label {
    white-space: nowrap;
}

.home-loading-banner:hover {
    background: linear-gradient(90deg, #562A61 -1.32%, #C53D90 103.7%);
}


.home-loading-banner h3 {
    color: #F5EDF7;
    font-size: 78px;
    font-style: normal;
    font-weight: 500;
    margin: 0;
}

.home-loading-banner-button {
    display: flex;
    padding: 12px 24px;
    justify-content: flex-end;
    align-items: center;
    color: #C53D90;
    gap: 30px;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    border-radius: 10px;
    background-color: #F5EDF7;
    width: fit-content;
    cursor: pointer;
    transition: background-color 200ms linear;
    text-decoration: none;
}

.home-loading-banner-button label {
    white-space: nowrap;
}

.home-loading-banner-button:hover label {
    cursor: pointer;
    color: #F5EDF7;
}

.home-loading-banner-button:hover {
    background-color: #3F1F47;
}

.home-loading-banner-button img {
    filter: invert(34%) sepia(26%) saturate(3587%) hue-rotate(289deg) brightness(91%) contrast(87%);
    height: 15px;
    margin-left: 10px;
    transition: filter 200ms linear;
    transition: transform 200ms linear;
}

.home-loading-banner-button:hover img {
    filter: brightness(1000%);
    transform: rotate(90deg);
}

@media (max-width: 1500px) {
    .home-loading-banner-button {
        font-size: 22px;
    }

    .home-loading-banner h3 {
        font-size: 62px;
    }

    .home-loading h1 {
        font-size: 58px;
        line-height: 58px;
    }

    .home-loading p {
        font-size: 22px;
        line-height: 32px;
    }
}

@media (max-width: 1050px) {
    .home-loading-animation {
        flex-direction: column;
        justify-content: right;
        align-items: baseline;
    }
}

@media (max-width: 767px) {
    .home-loading-banner {
        flex-direction: column;
        padding: 20px;
    }

    .home-loading-banner h3 {
        font-size: 48px;
    }

    .home-loading-animation-icon {
        margin-right: 20px;
    }

    .home-loading-container {
        padding: 100px 0;
    }

    .home-loading {
        padding: 0 20px;
    }

    .home-loading-animation-icon {
        width: 65px;
        height: auto;
    }
}


/* Home section */

.home-section-image-second {
    opacity: 0;
}

.home-section-image-second:hover {
    cursor: pointer;
}

.home-section-title {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    font-weight: bold;
    font-size: 21px;
    color: white;
    padding: 15px 10px 15px 10px;
    text-shadow: 0 0 7px #000000;
    opacity: 0;
    bottom: 0;
    background-color: #C53D90;
}


/* Home team */

.home-team-container {
    display: flex;
}

.home-team {
    padding: 140px 40px 140px 40px;
    margin: auto;
    width: 100%;
    max-width: 1500px;
    box-sizing: border-box;
}

.home-team-header {
    display: flex;
    align-items: end;
}

.home-team-header > div {
    width: 50%;
}

.home-team-header p {
    color: #3F1F47;
    max-width: 584px;
    font-size: 24px;
    font-weight: 300;
    line-height: 38px;
    margin: 0;
}

.home-team-header h1 {
    color: #803F90;
    font-size: 74px;
    font-weight: 700;
    line-height: 72px;
    margin: 0;
}

.home-team-header h1 label {
    font-family: "MADE TOMMY BODER";
    color: #C53D90;
}

.home-team-header h2 {
    color: #3F1F47;
    font-size: 72px;
    font-weight: 500;
    line-height: 72px;
}

.home-team-header h2 label {
    color: #C53D90;
    font-size: 64px;
    font-weight: 500;
    line-height: 72px;
}

.home-team-slider {
    display: flex;
    width: 100%;
    gap: 100px;
    overflow-x: scroll;
    margin: 100px 0;
}

.home-team-slider::-webkit-scrollbar {
    display: none;
}

.home-team-card {
    display: flex;
    flex-direction: column;
    width: 580px;
}

.home-team-card-image {
    height: 330px;
    width: 330px;
    border-radius: 241px;
    overflow: hidden;
}

.home-team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.2s ease;
    transform: scale(1.03);
}

.home-team-card-image img:hover {
    cursor: grab;
    transform: scale(1.08);
}

.home-team-card-text {
    color: #3F1F47;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 30px;
    text-align: center;
    user-select: none;
}

.home-team-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-team-footer h3 {
    color: #3F1F47;
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: 72px;
    max-width: 551px;
    margin: 0;
}

.home-team-footer p {
    color: #3F1F47;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
}

.home-team-footer a {
    color: #C53D90;
    font-size: 24px;
    font-weight: 500;
}

@media (max-width: 1500px) {
    .home-team-header h2 {
        font-size: 60px;
        line-height: 52px;
    }

    .home-team-header h1 {
        font-size: 58px;
        line-height: 58px;
    }

    .home-team-header h2 label {
        font-size: 54px;
    }

    .home-team-header p {
        font-size: 22px;
        line-height: 32px;
    }

    .home-team-card-image {
        width: 280px;
        height: 280px;
    }

    .home-team-footer h3 {
        font-size: 52px;
        line-height: 58px;
    }

    .home-team-footer p {
        font-size: 22px;
        line-height: 32px;
    }
}

@media (max-width: 1100px) {
    .home-team-header {
        flex-direction: column;
        gap: 0;
    }

    .home-team-header > div {
        width: 100%;
    }

    .home-team-header > div h2, .home-team-header > div h1 {
        text-align: center;
    }

    .home-team-header p {
        max-width: none;
    }

    .home-team-footer {
        flex-direction: column;
    }

    .home-team-footer h3 {
        max-width: none;
    }
}

@media (max-width: 767px) {
    .home-team-header h2 {
        font-size: 48px;
    }

    .home-team-header h2 label {
        font-size: 38px;
    }

    .home-team-header h1 {
        font-size: 48px;
    }

    .home-team-slider {
        gap: 60px;
    }

    .home-team-card-image {
        width: 220px;
        height: 220px;
    }

    .home-team-card-text {
        font-size: 20px;
        line-height: 25px;
    }

    .home-team {
        padding: 120px 20px;
        margin: auto;
        max-width: 1500px;
        box-sizing: border-box;
    }
}


/* Home brands */

.home-brands-container {
    background: #3F1F47;
    padding: 120px 0;
    min-height: 660px;
    display: flex;
}

.home-brands {
    max-width: 1500px;
    width: 100%;
    padding: 0 40px;
    margin: auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.home-loading-banner .home-brands-banner-h3 {
    max-width: 518px;
    font-size: 48px;
    line-height: 48px;
}

.home-brands-images {
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.home-brands-images > div {
    width: 25%;
    padding: 20px;
    box-sizing: border-box;
}

.home-brands-images > div img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-brands-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-brands-info > div {
    width: 50%;
}

.home-brands-info > div:first-of-type {
    display: flex;
    justify-content: center;
}

.home-brands-info > div:last-of-type {
    max-width: 550px;
}

.home-brands-info img {
    max-height: 576px;
    width: 100%;
}

.home-brands-info h2 {
    color: #F5EDF7;
    font-size: 72px;
    font-weight: 500;
    line-height: 72px;
}

.home-brands-info label {
    color: #C53D90;
}

.home-brands-info p {
    color: #F5EDF7;
    font-size: 24px;
    font-weight: 300;
    line-height: 38px;
}

@media (max-width: 1500px) {
    .home-brands-info {
        gap: 50px;
    }

    .home-brands-images {
        padding: 0;
    }

    .home-brands-info h2 {
        font-size: 53px;
        line-height: 62px;
    }

    .home-brands-info p {
        font-size: 22px;
    }

    .home-loading-banner .home-brands-banner-h3 {
        font-size: 42px;
        line-height: 42px;
    }

}

@media (max-width: 1100px) {
    .home-brands-info {
        flex-direction: column;
        align-items: baseline;
    }

    .home-brands-info > div {
        width: 100%;
    }

    .home-brands-images > div {
        width: 50%;
    }

    .home-brands-info > div:last-of-type {
        max-width: none;
    }

    .home-loading-banner .home-brands-banner-h3 {
        font-size: 34px;
        line-height: 34px;
    }
}

@media (max-width: 767px) {
    .home-loading-banner .home-brands-banner-h3 {
        text-align: center;
    }

    .home-brands-images > div {
        width: 100%;
    }

    .home-brands-container {
        padding: 100px 0;
    }

    .home-brands {
        padding: 0 20px;
    }
}


/* Home UP */

.home-up-container {
    display: flex;
    align-items: center;
}

.home-up {
    padding: 140px 40px 140px 40px;
    margin: auto;
    min-width: 1500px;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}

.home-up p {
    color: #3F1F47;
    font-size: 23px;
    font-weight: 300;
    line-height: 38px;
}

.home-up > div:first-of-type {
    width: 50%;
    max-width: 485px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.home-up > div:first-of-type img {
    max-width: 400px;
    width: 100%;
}

.home-up > div:last-of-type {
    width: 50%;
    display: flex;
    justify-content: end;
    align-items: center;
}

.home-up > div:last-of-type img {
    width: 100%;
    max-width: 600px;
}

.button-up:hover {
    background-color: #803F90;
}

.button-up:hover label {
    background: none;
    -webkit-text-fill-color: white;
}

.button-up:hover img {
    filter: none;
}

@media (max-width: 1500px) {
    .home-up {
        min-width: auto;
    }
}

@media (max-width: 1100px) {
    .home-up {
        flex-direction: column-reverse;
    }

    .home-up > div:first-of-type {
        width: 100%;
        max-width: none;
    }

    .home-up > div:last-of-type {
        width: 100%;
        max-width: none;
        justify-content: center;
    }

    .home-up {
        gap: 100px;
    }
}

@media (max-width: 767px) {
    .home-up {
        padding: 120px 20px;
    }
}


/* Home Press Room */

.home-press-container {
    background-color: #F5EDF7;
    padding: 120px 0;
    min-height: 660px;
}

.home-press {
    max-width: 1500px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 0 40px;
    box-sizing: border-box;
}

.home-press-post-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}

.home-press-post-header h2 {
    color: #3F1F47;
    font-size: 72px;
    font-weight: 500;
    margin: 0;
    line-height: 72px;
}

.home-press-post-header p {
    color: #C53D90;
    font-size: 24px;
    font-weight: 500;
    line-height: 40px;
    text-align: right;
    display: flex;
    align-items: center;
}

.home-press-post {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 30px;
}

.home-press-image {
    height: 280px;
    display: flex;
    justify-content: center;
}

.home-press-image img {
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
    transition: transform 0.2s ease;
}

.home-press-image img:hover {
    transform: scale(1.05);
}

.home-press-post > a {
    width: calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    box-sizing: border-box;
}

.home-press-post h3 {
    color: #3F1F47;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 30px;
}

.home-press-post p {
    color: #3F1F47;
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    margin-top: 10px;
    line-height: 32px;
}

.home-press-post label {
    color: #C53D90;
    cursor: pointer;
}

.animate__animated {
    opacity: 0;
}

@media (max-width: 1500px) {
    .home-press-post-header h2 {
        font-size: 58px;
    }
}

@media (max-width: 1100px) {
    .home-press-post > a {
        width: 50%;
        padding: 20px 0;
    }
}

@media (max-width: 767px) {
    .home-press-post > a {
        width: 100%;
    }

    .home-press-post-header {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .home-press-post-header p {
        text-align: left;
        line-height: 32px;
    }

    .home-press-container {
        padding: 100px 0;
    }

    .home-press {
        padding: 0 20px;
    }
}


/* Footer */

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 50px;
    margin: auto;
    background: #201023;
    color: white;
}

.footer-info {
    display: flex;
    max-width: 1500px;
    width: 100%;
    margin: auto;
}

.footer-info > div {
    width: 50%;
}

.footer-info > div:first-of-type {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-info > div:last-of-type {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
}

.footer-info h1 {
    color: #F5EDF7;
    font-size: 72px;
    font-weight: 500;
    line-height: 72px;
    margin: 0;
}

.footer-info > div:first-of-type p {
    color: #F5EDF7;
    font-size: 24px;
    font-weight: 300;
    line-height: 36px;
    max-width: 430px;
    margin: 0;
}

.footer-info > div:last-of-type p {
    color: #F5EDF7;
    font-size: 20px;
    font-weight: 300;
    line-height: 32px;
    max-width: 250px;
}

.footer-info label {
    color: #C53D90;
    font-size: 22px;
    font-weight: 500;
    line-height: 36px;
}

.footer-logos {
    display: flex;
    gap: 25px;
    width: 100%;
    max-width: 250px;
}

.footer-logos > img {
    width: 50px;
    height: 50px;
}

.footer-banner {
    display: flex;
    max-width: 1500px;
    width: 100%;
    margin: 100px auto 0 auto;
    border-top: solid 1px #F5EDF7;
    padding-top: 50px;
}

.footer-banner a {
    color: #F5EDF7;
    font-size: 14px;
    font-weight: 400;
    line-height: 36px;
    margin-right: 40px;
    text-decoration: none;
}

.footer-banner a:hover {
    text-decoration: underline;
}

.footer-banner img {
    margin-left: auto;
}

.footer-info-whatsapp {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #F5EDF7;
    font-size: 22px;
    font-weight: 300;
    line-height: 36px;
    text-decoration: none;
}

.footer-info-whatsapp:hover {
    text-decoration: underline;
}

.footer-info-whatsapp img {
    height: 26px;
}

.button-footer:hover {
    background-color: #C53D90;
}

@media (max-width: 1500px) {
    .footer-info h1 {
        font-size: 58px;
    }

    .footer-info > div:first-of-type p {
        font-size: 22px;
        line-height: 34px;
    }
}

@media (max-width: 767px) {
    .footer-info {
        flex-direction: column;
    }

    .footer-info-whatsapp img {
        height: 60px;
    }

    .footer-banner {
        flex-direction: column-reverse;
    }

    .footer-banner img {
        margin-left: 0;
        margin-bottom: 40px;
    }

    footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 100px 20px;
        margin: auto;
        background: #201023;
        color: white;
    }
}


/* Tarjetas dinámicas */

:root {
    --card-height: 40vw;
    --card-margin: 4vw;
    --card-top-offset: 85px;
    --numcards: 0;
    --outline-width: 0px;
}

#cards {
    padding-bottom: calc(var(--numcards) * var(--card-top-offset)); /* Make place at bottom, as items will slide to that position*/
    margin-bottom: var(--card-margin); /* Don't include the --card-margin in padding, as that will affect the scroll-timeline*/
    margin: auto;
    max-width: 1500px;
    padding: 0;
}

#card_1 {
    --index: 1;
}

#card_2 {
    --index: 2;
}

#card_3 {
    --index: 3;
}

#card_4 {
    --index: 4;
}

#card_5 {
    --index: 5;
}

#card_6 {
    --index: 6;
}

#card_7 {
    --index: 7;
}

.card {
    position: sticky;
    top: 0;
    padding-top: calc(var(--index) * var(--card-top-offset));
    height: 450px;
    min-height: 260px;
}

@supports (animation-timeline: works) {

    @scroll-timeline cards-element-scrolls-in-body {
        source: selector(body);
        scroll-offsets:
            /* Start when the start edge touches the top of the scrollport */
                selector(#cards) start 1,
                    /* End when the start edge touches the start of the scrollport */
                selector(#cards) start 0
    ;
        start: selector(#cards) start 1; /* Start when the start edge touches the top of the scrollport */
        end: selector(#cards) start 0; /* End when the start edge touches the start of the scrollport */
        time-range: 4s;
    }

    .card {
        --index0: calc(var(--index) - 1); /* 0-based index */
        --reverse-index: calc(var(--numcards) - var(--index0)); /* reverse index */
        --reverse-index0: calc(var(--reverse-index) - 1); /* 0-based reverse index */
    }

    .card__content {
        transform-origin: 50% 0%;
        will-change: transform;

        --duration: calc(var(--reverse-index0) * 1s);
        --delay: calc(var(--index0) * 1s);

        animation: var(--duration) linear scale var(--delay) forwards;
        animation-timeline: cards-element-scrolls-in-body;
    }

    @keyframes scale {
        to {
            transform:
                    scale(calc(
                            1.1
                            -
                            calc(0.1 * var(--reverse-index))
                    ));
        }
    }
}


/** PAGE STYLING **/


#cards {
    list-style: none;
    outline: calc(var(--outline-width) * 10) solid blue;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(var(--numcards), var(--card-height));
    gap: var(--card-margin);
}

.card {
    outline: var(--outline-width) solid hotpink;
}

.card__content {
    background-position: center !important;
    background-size: cover !important;
    color: rgb(10, 5, 7);
    border-radius: 30px;
    display: grid;
    grid-template-areas: "text img";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    align-items: stretch;
    outline: var(--outline-width) solid lime;
    height: 100%;
    padding: 20px;
}

.card__content h2 {
    color: #F5EDF7;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 23px;
    display: flex;
    margin: 0;
}

.card__content > div {
    grid-area: text;
    width: 80%;
    place-self: center;
    text-align: left;

    display: grid;
    gap: 1em;
    place-items: start;
}

.card__content > figure {
    grid-area: img;
    overflow: hidden;
}

.card__content > figure > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-weight: 300;
    font-size: 3.5em;
}

h2 {
    font-weight: 300;
    font-size: 2.5em;
}

p {
    font-family: 'MADE TOMMY', serif;
    font-weight: 300;
    line-height: 1.42;
}

.btn {
    background: rgb(188 87 36);
    color: rgb(255 255 255);
    text-decoration: none;
    display: inline-block;
    padding: 0.5em;
    border-radius: 0.25em;
}

aside {
    width: 50vw;
    margin: 0 auto;
    text-align: left;
}

aside p {
    margin-bottom: 1em;
}

.card:nth-child(even) .card__content {
    background-color: #EFEFEF;
}

.card:nth-child(odd) .card__content {
    background-color: #EFEFEF;
}

@media (max-width: 767px) {
    .home-services {
        padding: 120px 20px;
    }

    :root {
        --card-top-offset: 80px;
    }

    .card__content h2 {
        font-size: 22px;
    }
}


/* Cookies */

.cookies-container {
    display: none;
    max-width: 800px;
    position: fixed;
    color: #3F1F47;
    width: 100%;
    right: 20px;
    bottom: 20px;
    flex-direction: column;
    gap: 30px;
    padding: 25px;
    box-sizing: border-box;
    border-radius: 10px;
    font-size: 18px;
    background: rgb(255 255 255 / 60%);
    backdrop-filter: blur(20px);
    z-index: 100;
    box-shadow: 0 0 9px 2px #a9a9a9;
    font-weight: 400;
}

.cookies-container a {
    color: #3F1F47;
    font-weight: 500;
}

.cookies-buttons {
    display: flex;
    gap: 20px;
    cursor: pointer;
    justify-content: center;
}

.cookies-buttons > div {
    background-color: white;
    color: #3F1F47;
    border-radius: 10px;
    padding: 10px 23px;
    text-align: center;
    min-width: 100px;
    font-size: 18px;
    font-weight: 500;
    transition: background ease 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookies-buttons > div:hover {
    background: #C53D90;
    color: white;
}

@media (max-width: 900px) {
    .cookies-container {
        width: calc(100% - 40px);
        max-width: none;
    }

    .cookies-buttons > div {
        font-size: 16px;
        min-width: auto;
    }
}




