@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@200;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;400;500;700&display=swap');

* {
    font-family: 'Inter', sans-serif;

    --green: #339966;
    --orange: #FF9933;
    --black: #111B21;
    --blacker: #090f13;
    --grey: #C5C4C2;
    --white: #e6e4e2;

    --fontbasesize: 16px;
}

textarea {
    resize: vertical;
    width: 100%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.mybg-white {
    background-color: var(--white);
    color: var(--black);
}

.mybg-grey {
    background-color: var(--grey);
    color: var(--black);
}

.mybg-blacker {
    background-color: var(--blacker);
}

.text-white {
    color: var(--white);
}

.text-green {
    color: var(--green);
}

.separador {
    height: 2rem;
}

.separador-2 {
    height: 4rem;
}

body {
    background-color: var(--black);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Open Sans', sans-serif;
}

h1 {
    font-size: clamp(1.5 * var(--fontbasesize), 3vw, 1.6 * var(--fontbasesize));
    font-weight: 700;
}

h1.super {
    font-size: clamp(2.2 * var(--fontbasesize), 3vw, 2.5 * var(--fontbasesize));
}

h2 {
    font-size: clamp(1.4 * var(--fontbasesize), 3vw, 1.5 * var(--fontbasesize));
}

h3 {
    font-size: clamp(1.3 * var(--fontbasesize), 3vw, 1.4 * var(--fontbasesize));
}

h4 {
    font-size: clamp(1.2 * var(--fontbasesize), 3vw, 1.3 * var(--fontbasesize));
}

h5 {
    font-size: clamp(1.1 * var(--fontbasesize), 3vw, 1.2 * var(--fontbasesize));
}

p {
    font-size: clamp(1 * var(--fontbasesize), 3vw, 1.1 * var(--fontbasesize));
}

li {
    font-size: clamp(0.85 * var(--fontbasesize), 3vw, 1 * var(--fontbasesize));
}

#nav-logo {
    transition: all .4s ease-in-out;
}

.glassmorph {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--black);
}

.neomorph {
    border-radius: 8px;
    background: rgba(255, 255, 255, .7);
    box-shadow: -5px -5px 9px rgba(255, 255, 255, 0.25), 5px 5px 9px rgba(94, 104, 121, 0.3);
}

.mybtn {
    background-color: var(--green);
    border: none;
    color: var(--white);
    padding: 12px 16px;
    font-size: 16px;
    cursor: pointer;

    transition: all .2s;
}

.mybtn:hover {
    background-color: var(--white);
    color: var(--green);

    transition: all .2s;
}

#front-video {
    min-height: 520px;
    height: 70vh;

    opacity: 1;
    position: absolute;
    object-fit: cover;
    object-position: center center;
}

#front-container {
    min-height: 520px;
    height: 70vh;

    background-color: #0D1816;
    background-size: cover;
    margin-top: 76px;
}

#acerca-container {
    background-image: url("../img/acerca.webp");
    background-size: cover;
    padding: 4rem 0;
}

.img-fix {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.navtitle {
    color: #f5f5f5;
    font-weight: 200;
}

.subtext {
    opacity: .6;
}

.contenedor-1600 {
    width: min(100% - 16px, 1600px);
    margin-inline: auto;
}

.contenedor-1200 {
    width: min(100% - 16px, 1200px);
    margin-inline: auto;
}

.contenedor-espaciado {
    padding: 3rem 1rem;
}

.sitemap {
    list-style: none;
    margin-top: 1rem;
}

.sitemap li {
    margin-bottom: .5rem;
}

.sitemap a {
    text-decoration: none;
    color: var(--white);
}

.service-card {
    background-color: var(--white);
    width: 450px;
}

.service-card-image {
    width: clamp(100px, 18vw, 160px);
    height: clamp(130px, 18vw, 160px);
    transform: translateX(-16px) translateY(-16px);
    object-fit: cover;
    object-position: center center;
    border-radius: 8px;
    border: 2px solid var(--white);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.linktree {
    height: 100dvh;
}

.linktree-container {
    width: min(100% - 24px, 400px);
    margin-inline: auto;
}

.linktree-item {
    background-color: #ebebeb;
    text-decoration: none;
    color: black;
    cursor: pointer;
    width: 100%;

    padding: 8px 12px;
    border-radius: 16px;

    transition: all ease-in-out 0.1s;
}

.linktree-item:hover {
    scale: 1.05;

    transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.1s;
}

.linktree-img {
    height: 50px;
    width: 50px;
}

.linktree-title {
    padding: 0;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.linktree-data {
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.linktree-subtext {
    padding: 0;
    margin: 0;
    font-size: 12px;
    opacity: .6;
}

/* ANIMATIONS */

.anim-fade {
    animation: anim-fade .6s ease-in-out;
}

.anim-fadefromdown {
    animation: anim-fadefromdown .6s ease-in-out;
}

.anim-delay-1 {
    animation-delay: .2s;
    animation-fill-mode: both;
}

.anim-delay-2 {
    animation-delay: .4s;
    animation-fill-mode: both;
}

.anim-delay-3 {
    animation-delay: .6s;
    animation-fill-mode: both;
}

.anim-delay-4 {
    animation-delay: .8s;
    animation-fill-mode: both;
}

@keyframes anim-fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: initial;
    }
}

@keyframes anim-fadefromdown {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: initial;
        transform: translateX(0);
    }
}