:root {
    --color-dark-1: #060609;
    --color-dark-3: #111111;
    --color-medium: #A2A2A2;
    --color-light: #EEEEEE;
    --color-blue-1: #2C79F8;
    --color-blue-2: #1337B5;
    --gradient-blue: linear-gradient(138deg, #2C79F8 0%, #1337B5 100%);
    --gradient-red: linear-gradient(138deg, #f82c33 0%, #b51313 100%);
    --gradient-colors: linear-gradient(90deg, rgb(255, 125, 30) 15%, rgb(253, 64, 229) 100%, rgb(255, 255, 255) 200%, rgb(255, 255, 255) 300%);
    ;
    --satoshi-light: 'Satoshi-Light';
    --satoshi-regular: 'Satoshi-Regular';
    --satoshi-medium: 'Satoshi-Medium';
    --satoshi-bold: 'Satoshi-Bold';
    --satoshi-black: 'Satoshi-Black';
}

@font-face {
    font-family: 'Satoshi-Light';
    font-weight: 300;
    font-display: swap;
    font-style: normal;
    src: url('./assets/fonts/Satoshi-Light.woff2') format('woff2'),
        url('./assets/fonts/Satoshi-Light.woff') format('woff'),
        url('./assets/fonts/Satoshi-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Satoshi-Regular';
    font-weight: 400;
    font-display: swap;
    font-style: normal;
    src: url('./assets/fonts/Satoshi-Regular.woff2') format('woff2'),
        url('./assets/fonts/Satoshi-Regular.woff') format('woff'),
        url('./assets/fonts/Satoshi-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Satoshi-Medium';
    font-weight: 500;
    font-display: swap;
    font-style: normal;
    src: url('./assets/fonts/Satoshi-Medium.woff2') format('woff2'),
        url('./assets/fonts/Satoshi-Medium.woff') format('woff'),
        url('./assets/fonts/Satoshi-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Satoshi-Bold';
    font-weight: 700;
    font-display: swap;
    font-style: normal;
    src: url('./assets/fonts/Satoshi-Bold.woff2') format('woff2'),
        url('./assets/fonts/Satoshi-Bold.woff') format('woff'),
        url('./assets/fonts/Satoshi-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Satoshi-Black';
    font-weight: 900;
    font-display: swap;
    font-style: normal;
    src: url('./assets/fonts/Satoshi-Black.woff2') format('woff2'),
        url('./assets/fonts/Satoshi-Black.woff') format('woff'),
        url('./assets/fonts/Satoshi-Black.ttf') format('truetype');
}


body {
    position: relative;
    background-color: var(--color-dark-1);
    font-family: var(--satoshi-medium);
    overflow-x: hidden;
    padding: 40px;
    text-align: center;
}

* {
    box-sizing: border-box;
    touch-action: manipulation;
    color: var(--color-light);
    -ms-overflow-style: none;
    scrollbar-width: none;
}

p {
    color: var(--color-medium);
    font-size: 22px;
}

.hero__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero__header > img {
    height: 25px;
}

.home__lang {
    position: relative;
    display: flex;
    width: 150px;
    height: 35px;
    background-color: var(--color-dark-4);
    box-shadow: inset 0.5px 0.75px 0.25px #EEEEEE59;
    border-radius: 17.5px;
    cursor: pointer;
    z-index: 1;
}

.home__lang div {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.2rem;
    color: #EEEEEE59;
    font-family: var(--satoshi-bold);
    font-size: 0.75em;
    z-index: 5;
}

.home__lang > span {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 35px;
    border-radius: 17.5px;
    background: var(--gradient-blue);
    box-shadow: inset 0.5px 0.75px 0.25px #EEEEEE59, 0 0 35px #1F58D6D8;
    transition: left 0.3s;
    z-index: 1;
}

.home__lang input {
    display: none;
}

.home__lang img {
    display: block;
    height: 10px;
    object-fit: contain;
}

.home__lang input:checked + span {
    left: 50%;
}

.home__lang-text.selected {
    color: #EEEEEECC;
}

.product-name {
    background: var(--gradient-blue);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 26px;
    font-family: var(--satoshi-bold);
    margin-top: 80px;
}

.gradient-blue {
    background: var(--gradient-blue);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container > img {
    height: 25px;
}

h1 {
    font-size: 45px;
    font-family: var(--satoshi-bold);
}

h2 {
    font-size: 38px;
    font-family: var(--satoshi-bold);
    text-align: left;
    margin-top: 90px;
}

.cta-btn {
    height: 60px;
    border-radius: 30px;
    width: 100%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-family: var(--satoshi-bold);
    text-decoration: none;
    margin: 45px auto;
}

#hero .container video {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0px 0px 400px #1337B5;
    margin: 45px auto 0 auto;
}

video.desktop {
    display: block;
}

video.mobile {
    display: none;
}

.feature {
    padding: 45px;
    background-color: var(--color-dark-3);
    border-radius: 25px;
    margin-bottom: 25px;
    width: 100%;
    text-align: left;
}

h3 {
    font-size: 28px;
    font-family: var(--satoshi-bold);
    margin: 0;
    background: var(--gradient-colors);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#pricing p {
    text-align: left;
}

.swiper {
    width: 100%;
    height: max-content;
}

blockquote {
    width: 100%;
    height: max-content;
    display: block;
    margin: auto;
    padding: 0 0 25px 0;
}

blockquote img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 25px;
    margin: 0 0 25px 0;
    opacity: .9;
}

blockquote span {
    display: block;
    height: max-content;
    color: var(--color-light);
    font-family: var(--satoshi-bold);
    font-size: 18px;
}

blockquote p {
    display: block;
    height: max-content;
    color: var(--color-medium);
    font-family: var(--satoshi-medium);
    font-size: 17px;
}

.swiper-pagination-bullet {
    background: var(--swiper-pagination-bullet-inactive-color, #ffffff) !important;
}

#comparison .container {
    overflow: hidden;
}

#comparison .container table {
    background-color: var(--color-dark-3);
    padding: 40px;
    border-radius: 25px;
    width: 100%;
    font-size: 17px;
}

#comparison .container table td {
    padding: 10px 0 0 0;
    text-align: center;
    color: var(--color-medium);
}

#comparison .container table td:first-child {
    text-align: left;
}

h4 {
    font-size: 26px;
    text-align: left;
}

.problem {
    padding: 45px;
    background-color: var(--color-dark-3);
    border-radius: 25px;
    margin-bottom: 25px;
    width: 100%;
    text-align: left;
}

.problem span {
    font-family: var(--satoshi-bold);
    margin: 0;
    background: var(--gradient-red);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Estilos selectores */

.domain-option,
.storage-option {
    display: block;
    border-radius: 15px;
    margin: 20px auto;
    padding: 25px;
    border: 1px solid var(--color-medium);
    color: var(--color-medium);
    text-align: left;
    font-size: 20px;
    font-family: 'Satoshi-Regular';
    cursor: pointer;
}

.domain-option.selected,
.storage-option.selected {
    border: 2px solid var(--color-blue-1);
    color: var(--color-blue-1);
    font-family: 'Satoshi-Bold';
}

.domain-option span,
.storage-option span {
    float: right;
    font-size: 18px;
    color: inherit;
}

.domain-option.selected span,
.storage-option.selected span {
    display: none;
}

.info-btn {
    text-align: left;
    background-color: transparent;
    border: none;
    font-family: inherit;
    font-size: 16px;
    color: var(--color-blue-1);
    width: 100%;
}

.info-btn i {
    color: inherit;
}

.price {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: var(--color-dark-3);
    display: grid;
    grid-template-rows: auto auto;
    padding: 20px 40px;
}

.price p {
    font-size: 18px;
}

.price button,
form button {
    padding: 15px 30px;
    border-radius: 30px;
    font-family: var(--satoshi-bold);
    border: none;
    font-size: 18px;
    width: 100%;
    max-width: 400px;
    height: 60px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-blue);
}

#whats-btn i {
    font-size: 25px;
}

#configure {
    padding-bottom: 150px;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

form label {
    font-family: inherit;
    font-size: 16px;
    color: var(--color-light);
    font-weight: var(--satoshi-regular);
    text-align: left;
}

form input {
    height: 60px;
    width: 100%;
    background-color: var(--color-dark-3);
    border-radius: 15px;
    border: none;
    margin: 10px auto 20px auto;
    padding: 0 25px;
    font-size: 18px;
    font-family: var(--satoshi-bold);
    color: var(--color-blue-1);
}

form input::placeholder {
    font-family: var(--satoshi-regular);
    color: var(--color-medium);
    font-size: 18px;
}

p.left {
    text-align: left;
}

section {
    max-width: 900px;
    margin: auto;
}

@media screen and (max-width: 415px) {
    .hero__header > img {
        height: 20px;
    }

    p {
        font-size: 19px;
    }

    .product-name {
        font-size: 23px;
    }

    h1 {
        font-size: 39px;
    }

    h2 {
        font-size: 30px;
    }

    .cta-btn {
        font-size: 17px;
    }

    #comparison .container table {
        font-size: 13px;
    }

    h4 {
        font-size: 23px;
    }

    body {
        padding: 20px;
    }

    blockquote p {
        font-size: 17px;
    }

    blockquote footer {
        font-size: 15px;
    }

    video.desktop {
        display: none;
    }

    video.mobile {
        display: block;
    }
}