/* INICIALIZAR VARIABLES */
@import url(variables.css);

/* FADE IN UP - SOLO FUERA DEL MODAL */
body:not(.modal-open) .fade-in-up,
body:not(.modal-open) .fade-on-load {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
body:not(.modal-open) .fade-in-up.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    animation: fadeInUpLoad 0.8s ease-out;
}
body:not(.modal-open) .fade-on-load {
    animation: fadeInUpLoad 0.8s ease-out forwards;
}
@keyframes fadeInUpLoad {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}


/* HERO */
.bg-hero {
    background-image: url(../assets/img/bg/bg-roma-1.webp);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
}

.hero {
    position: relative;
    padding-top: 196px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    bottom: -50px;
    border-radius: 60% 40% 50% 50%;
    animation: riseUp 10s linear infinite;
    box-shadow:
        0 0 8px rgba(184, 134, 11, 0.6),
        0 0 15px rgba(218, 165, 32, 0.4),
        inset 0 0 5px rgba(255, 215, 0, 0.3);
    filter: blur(1px);
}

@keyframes riseUp {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    95% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100vh);
        opacity: 0;
    }
}

.hero__content {
    position: relative;
    display: flex;
    gap: 32px;
    margin: 0 auto;
    align-items: center;
    z-index: 1;
}

.hero__content>* {
    flex: 0 0 calc(50% - 16px);
    width: calc(50% - 16px);
}

.hero__img {
    position: relative;
    max-height: 624px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    animation: float 10s ease-in-out infinite;
    width: 100%;
}

.hero__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.hero__img img:first-child {
    position: relative;
    z-index: 2;
    animation: fadeInOut 14s ease-in-out infinite;
    max-height: 100%;
}

.hero__img img:last-child {
    position: absolute;
    top: 0;
    left: 32px;
    right: 32px;
    width: calc(100% - 64px);
    max-height: 100%;
    object-fit: contain;
    z-index: 1;
}

@keyframes fadeInOut {
    0% {
        opacity: 1;
    }

    20% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    10% {
        transform: translate(-3px, 3px);
    }

    20% {
        transform: translate(-3px, -3px);
    }

    30% {
        transform: translate(3px, 3px);
    }

    40% {
        transform: translate(3px, -3px);
    }

    50% {
        transform: translate(-3px, 0);
    }

    60% {
        transform: translate(3px, 0);
    }

    70% {
        transform: translate(0, 3px);
    }

    80% {
        transform: translate(0, -3px);
    }

    90% {
        transform: translate(-3px, 3px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.hero__body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero__body p span:nth-child(1),
.hero__body p span:nth-child(2) {
    font-weight: var(--fw-semibold);
    text-transform: lowercase;
}

.hero__body p span:nth-child(3) {
    font-style: italic;
}

.hero__btn {
    display: flex;
    gap: 20px;
}

/* PORTFOLIO */
.portfolio {
    overflow: visible;
}

.portfolio__content {
    display: flex;
    flex-direction: column;
    gap: 52px;
}

.portfolio__text {
    padding: 0 112px;
    margin: 0 auto;
}

.portfolio__text h2 {
    text-align: center;
}

.portfolio__text p {
    text-align: center;
}

.portfolio__slider {
    display: flex;
    flex-direction: column;
    gap: 56px;
    align-items: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: visible;
    padding: 0;
}

.portfolio__clients-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.portfolio__clients {
    display: flex;
    gap: 56px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
    padding: 0;
    margin-left: 0;
}

.portfolio__client {
    border-radius: var(--br-8);
    background: linear-gradient(180deg, rgba(51, 45, 30, 0.2) 0%, rgba(255, 226, 149, 0.2) 100%);
    width: 1062px;
    height: 598px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    opacity: 0.4;
    filter: sepia(1) saturate(1.3) hue-rotate(10deg) brightness(1);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    position: relative;
    overflow: hidden;
}

.portfolio__client.active {
    opacity: 1;
    filter: none;
    pointer-events: auto;
}

.portfolio__client.active::before {
    content: '';
    position: absolute;
    top: var(--y);
    left: var(--x);
    transform: translate(-50%, -50%);
    background: radial-gradient(var(--primary-500), transparent, transparent);
    width: 1200px;
    height: 1200px;
    opacity: 0;
    transition: opacity .5s;
}

.portfolio__client.active:hover::before {
    opacity: 1;
}

.portfolio__clients-wrapper .portfolio__client::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: var(--br-8);
    background: #0000006c;
}

.portfolio__client img {
    width: 100%;
    height: auto;
    border-radius: var(--br-4);
    z-index: 10;
}

.portfolio__client .btn-secondary {
    position: absolute;
    bottom: 62px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.portfolio__btn {
    display: flex;
    gap: 24px;
}

.btn-arrow {
    transition: opacity 0.3s ease;
}

.btn-arrow:active {
    transform: scale(0.95);
}

/* SERVICES */
.services {
    background-image: url(../assets/img/bg/bg-roma-2.webp);
    background-repeat: no-repeat;
}

.services__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 52px;
    margin: 0 auto;
}

.services__text {
    padding: 0 112px;
}

.services__text h2 {
    text-align: center;
}

.services__text p {
    text-align: center;
}

.services__cards {
    display: flex;
    gap: 32px;
    align-items: start;
}

.services__card {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    gap: 44px;
    align-items: center;
    width: 100%;
}

.services__picture {
    border-radius: var(--br-8);
    border: solid 2px #FFE29526;
    padding: 40px 80px;
    background: linear-gradient(180deg, rgba(51, 45, 30, 0.2) 0%, rgba(255, 226, 149, 0.2) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    max-width: 492px;
}

.services__picture img {
    aspect-ratio: 1 / 1;
}

.services__card__text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.services__card__text h3 {
    text-align: center;
}

.services__card__text p {
    text-align: center;
}

.services__terms {
    display: grid;
    grid-template-columns: auto auto;
    gap: 80px 32px;
    padding: 80px 0;
}

.services__term {
    display: flex;
    gap: 28px;
    align-items: center;
    align-items: flex-start;
    justify-content: flex-start;
}

.services__term>img {
    max-width: 112px;
}

.services__term__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
}

.services__why {
    border-radius: var(--br-8);
    border: solid 2px #FFE29526;
    padding: 40px;
    background: linear-gradient(180deg, rgba(51, 45, 30, 0.2) 0%, rgba(255, 226, 149, 0.2) 100%);
    backdrop-filter: blur(8px);
}

.services__why__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.services__why__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services__why__body a {
    max-width: fit-content;
    font-size: var(--fs-4);
}

/* WHO */
.body-index {
    background-image: url(/assets/img/bg/bg-roma-3.webp);
    background-repeat: no-repeat;
    background-position: bottom;
}

.who__content {
    display: flex;
    align-items: center;
    gap: 58px;
    margin: 0 auto;
}

.who__content>* {
    flex: 1;
}

.who__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.who__text {
    display: flex;
    flex-direction: column;
}

.who__btn {
    display: flex;
    gap: 16px;
}

.who__picture {
    max-width: 515px;
    width: 100%;
    border-radius: var(--br-8);
    border: solid 2px #FFE29526;
    padding: 20px;
    background: linear-gradient(180deg, rgba(51, 45, 30, 0.2) 0%, rgba(255, 226, 149, 0.2) 100%);
    backdrop-filter: blur(8px);
    filter: sepia(0.6);
}

/* BUILD */
.build {
    padding-bottom: 160px;
}

.build__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    border-radius: var(--br-8);
    border: solid 2px #FFE29526;
    padding: 40px;
    background: linear-gradient(180deg, rgba(51, 45, 30, 0.6) 0%, rgba(82, 67, 36, 0.6) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    margin: 0 auto;
}

.build__header {
    display: flex;
    gap: 32px;
}

.build__head {
    min-width: 268px;
    flex: 1 1 268px;
}

.build__price {
    min-width: fit-content;
}

.build__price__total-price {
    font-family: var(--ff-primary);
    font-weight: var(--fw-black);
    font-size: var(--fs-14);
    line-height: 120%;
    text-align: center;
    color: var(--primary-500);
}

.build__price__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.build__price__text p:last-child {
    font-family: var(--ff-secondary);
    font-weight: var(--fw-regular);
    font-size: var(--fs-4);
    line-height: 150%;
    font-style: italic;
    text-align: center;
    color: var(--primary-600);
}

.build__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.build__title {
    display: flex;
    gap: 20px;
    align-items: center;
}

.build__title img {
    width: 32px;
    height: 38px;
}

.build__title h3 {
    min-width: fit-content;
}

.build__title .separator {
    border-top: solid 1px var(--secondary-200);
    width: 100%;
}

.build__base-card {
    display: flex;
    border-radius: var(--br-5);
    border: solid 2px #FFE29526;
    padding: 20px 40px;
    gap: 40px;
    background: linear-gradient(rgba(191, 180, 157, 0.317) 0%, rgba(252, 233, 181, 0.358) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    align-items: center;
    width: 100%;
}

.build__lock-price {
    display: flex;
    gap: 20px;
    align-items: center;
}

.build__base-card img {
    width: 28px;
    height: 37px;
}

.base__price {
    font-family: var(--ff-primary);
    font-weight: var(--fw-bold);
    font-size: var(--fs-8);
    line-height: 120%;
    text-align: center;
    color: var(--primary-500);
    opacity: 30%;
}

.build__deliverables {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    width: 100%;
}

.build__deliverables p {
    font-size: var(--fs-4);
    font-style: italic;
    font-weight: var(--fw-regular);
    color: var(--primary-100);
    text-wrap: nowrap;
}

.build__form>.ve-textarea textarea {
    min-height: 144px;
}

.build__sections {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.build__section {
    display: flex;
    gap: 40px;
    padding: 0 40px;
    align-items: center;
    justify-content: space-between;
}

.build__section__number {
    padding: 2px;
}

.build__section__number p {
    font-family: var(--ff-primary);
    font-weight: var(--fw-bold);
    font-size: var(--fs-7);
    line-height: 120%;
    text-align: center;
    color: var(--primary-100);
    width: 56px;
}

.build__section>.ve-textarea {
    width: 100%;
}

.build__section__price {
    font-family: var(--ff-primary);
    font-weight: var(--fw-bold);
    font-size: var(--fs-7);
    line-height: 120%;
    text-align: center;
    color: var(--primary-500);
}

.build__extras {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    overflow: visible;
}

.build__extra {
    border-radius: var(--br-4);
    border: solid 2px #ffe7a426;
    padding: 20px;
    background: linear-gradient(rgba(191, 180, 157, 0.317) 0%, rgba(252, 233, 181, 0.358) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.build__extra__content {
    display: flex;
    gap: 16px;
    align-items: center;
}

.build__extra__content__text {
    font-family: var(--ff-secondary);
    font-weight: var(--fw-regular);
    font-size: var(--fs-5);
    line-height: 150%;
    color: var(--primary-100);
}

.build__extra__content__price {
    font-family: var(--ff-primary);
    font-weight: var(--fw-bold);
    font-size: var(--fs-6);
    line-height: 120%;
    text-align: center;
    color: var(--primary-500);
}

.build__extra.disabled {
    filter: grayscale(100%);
    opacity: 0.5;
    cursor: none;
    pointer-events: auto;
    position: relative;
}

.build__extra.disabled .build__extra__content {
    pointer-events: none;
}

.build__extra.disabled .build__extra__content__text,
.build__extra.disabled .build__extra__content__price {
    color: var(--primary-400);
}

.build__extra__tooltip {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #332D1EFA, #594F36FA);
    border: solid 2px #FFE395;
    border-radius: 8px;
    padding: 12px 20px;
    font-family: var(--ff-secondary);
    font-weight: var(--fw-regular);
    font-size: 14px;
    line-height: 150%;
    color: #FFF3D5;
    white-space: nowrap;
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    width: max-content;
    max-width: 400px;
}

.build__extra__tooltip::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #FFE395;
}

.build__extra__tooltip::before {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #594F36;
    z-index: 1;
}

.build__extra.disabled:hover .build__extra__tooltip {
    display: block;
}


/* MODAL SEND */
.modal-send {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    overflow: auto;
    padding: 20px;
}

.send {
    max-width: 1240px;
    width: 100%;
    border-radius: var(--br-8);
    border: solid 2px #FFE29526;
    padding: 40px;
    background: linear-gradient(180deg, rgba(51, 45, 30, 0.6) 0%, rgba(82, 67, 36, 0.6) 100%);
    backdrop-filter: blur(5px);
    overflow: auto;
    position: relative;
    margin: auto;
}

.send__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.send__header {
    display: flex;
    gap: 48px;
}

.send__header__title {
    display: flex;
    flex-direction: column;
}

.send__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.send__title {
    display: flex;
    gap: 16px;
    align-items: center;
}

.send__title .separator {
    width: 100%;
    border: solid 1px;
    color: var(--secondary-200);
}

.send-title-arrow {
    width: 24px;
    height: 28px;
}

.send__title h4 {
    min-width: fit-content;
}

.send__total-price {
    font-family: var(--ff-primary);
    font-weight: var(--fw-bold);
    font-size: var(--fs-9);
    line-height: 120%;
    color: var(--primary-500);
}

.send__ticket {
    width: 100%;
    border-radius: var(--br-5);
    border: solid 2px #FFE29526;
    padding: 24px;
    background: linear-gradient(180deg, rgba(142, 120, 70, 0.2) 0%, rgba(255, 226, 149, 0.2) 100%);
    backdrop-filter: blur(30px);
}

.send__items {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.send__items-title {
    display: flex;
    justify-content: space-between;
}

.send__items-title p {
    font-family: var(--ff-secondary);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-5);
    line-height: 150%;
    color: var(--primary-500);
    width: 50%;
}

.send__items-title p:last-child {
    text-align: center;
}

.send__items-body {
    display: flex;
    flex-direction: column;
}

.send__item {
    display: flex;
    justify-content: space-between;
}

.send__item p {
    font-weight: var(--fw-regular);
    font-style: italic;
    font-size: var(--fs-4);
    line-height: 150%;
    color: var(--primary-100);
    width: 50%;
}

.send__item p:last-child {
    text-align: center;
}

.form__send {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.send__main-credentials {
    display: flex;
    gap: 24px;
}

.form__send>.build__extra {
    padding: 12px 20px;
    border-radius: var(--br-3);
}

.send-back-arrow {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    transition: opacity .3s ease-in-out;
}

.send-back-arrow:hover {
    opacity: .6;
}

/* SUCCESS MESSAGE */
.send__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 80px 40px;
    text-align: center;
}

.send__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.send__success__icon {
    animation: successPulse 0.6s ease-out;
}

.send__success p {
    font-size: var(--fs-7);
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/* FOOTER */
.footer {
    border-top: solid 2px #ffecb841;
    padding: 40px;
    background: linear-gradient(180deg, rgba(153, 136, 89, 0.4) 0%, rgba(51, 45, 30, 0.4) 100%);
    backdrop-filter: blur(6px);
}

.footer__content {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer__rights {
    font-family: var(--ff-secondary);
    font-weight: var(--fw-regular);
    font-size: var(--fs-4);
    line-height: 150%;
    color: var(--primary-500);
}

.ve-isotipo-footer {
    width: 72px;
    height: 96px;
}

.footer__legal {
    display: flex;
    gap: 24px;
}


/* 404 PAGE */
.error__img {
    width: 624px;
    height: 624px;
    animation: float 10s ease-in-out infinite;
}

.error__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.btn-secondary--error {
    max-width: fit-content;
}


/* POLITICS PAGES */
.legal {
    padding: 180px 40px 80px 40px;
}

.legal__content {
    display: flex;
    gap: 32px;
    align-items: center;
}

.legal__img {
    max-width: 515px;
}

.writing {
    padding: 0 40px;
}

.writing__content {
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.writing__block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* HAMBURGER BUTTON */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 38px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    margin-right: 16px;
}

.hamburger span {
    width: 100%;
    height: 4px;
    background-color: var(--primary-500);
    transition: all 0.3s ease-in-out;
    position: absolute;
    left: 0;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 85px;
    left: 0;
    width: 100%;
    height: calc(100vh - 85px);
    background: linear-gradient(#332D1ECC, #332D1ECC);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: start;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 998;
    padding-top: 80px;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 68px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu__links li {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
    border-bottom: solid 1px var(--primary-400);
}

.mobile-menu.active .mobile-menu__links li:nth-child(1) {
    animation: slideIn 0.4s ease-in-out 0.1s forwards;
}

.mobile-menu.active .mobile-menu__links li:nth-child(2) {
    animation: slideIn 0.4s ease-in-out 0.2s forwards;
}

.mobile-menu.active .mobile-menu__links li:nth-child(3) {
    animation: slideIn 0.4s ease-in-out 0.3s forwards;
}

.mobile-menu.active .mobile-menu__links li:nth-child(4) {
    animation: slideIn 0.4s ease-in-out 0.4s forwards;
    border: 0;
}

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

.nav-link-mobile {
    text-decoration: none;
    font-family: var(--ff-secondary);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-8);
    line-height: 150%;
    color: var(--primary-200);
    transition: color .3s ease-in-out;
}

.nav-link-mobile:hover {
    color: var(--primary-500);
}

.btn-primary-mobile {
    border-radius: var(--br-circle);
    border: solid 2px var(--primary-500);
    padding: 12px 48px;
    font-family: var(--ff-secondary);
    font-weight: var(--fw-bold);
    font-size: var(--fs-8);
    line-height: 150%;
    text-align: center;
    color: var(--primary-500);
    text-decoration: none;
    transition: color .3s ease-in-out, background-color .3s ease-in-out, box-shadow .3s ease-in-out;
    display: inline-block;
}

.btn-primary-mobile:hover {
    background-color: var(--primary-500);
    box-shadow: 0px 0px 15px 10px #FFE29559;
    color: var(--primary-950);
}

