@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap");

:root {
    --foreground-color: hsl(220, 10%, 100%);
    --background-color: hsl(240, 05%, 05%);

    --gradient-color-1: hsl(210, 90%, 45%);
    --gradient-color-2: hsl(165, 90%, 45%);
    --gradient-color-3: hsl(270, 65%, 45%);
    --gradient-color-4: hsl(350, 90%, 60%);
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    font-style: normal;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--foreground-color);
    background-color: var(--background-color);
}

main,
section {
    overflow: hidden;
}

a,
button {
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    border: none;
    outline: none;
    color: inherit;
    background: none;
    text-decoration: none;
}

@keyframes pulseGradient {
    0% {
        opacity: 0.5;
        transform: scale(0.9);
    }

    /* 100% {
        opacity: 0.8;
        transform: scale(1.2);
    } */
}


.title {
    font-family: "Michroma", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    text-wrap: balance;
    text-transform: uppercase;
    letter-spacing: -0.05rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.paragraph {
    font-family: inherit;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
    max-width: 45ch;
    text-wrap: pretty;
    word-wrap: break-word;
}

/* .btn */
.btn {
    display: inline-flex;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-align: center;
    padding-block: 0.75rem;
    padding-inline: 1.5rem;
    border-radius: 3rem;
    transition: all 0.3s ease;
}

/* .btn-gradient */
.btn-gradient {
    color: var(--foreground-color);
    background: linear-gradient(45deg,
            var(--gradient-color-3),
            var(--gradient-color-1));
    box-shadow: 0 5px 20px #7828bd66;
}

.btn-gradient:hover,
.btn-gradient:focus {
    transform: translateY(-0.25rem);
    box-shadow: 0 10px 30px hsla(272, 65%, 45%, 0.6);
}

/* Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
}

.blob-gradient-1 {
    opacity: 0.5;
    top: 10%;
    left: 15%;
    width: 20rem;
    height: 20rem;
    background-color: var(--gradient-color-1);
    animation: pulseGradient 16s infinite alternate ease-in-out;
}

.blob-gradient-2 {
    opacity: 0.5;
    right: 20%;
    bottom: 15%;
    width: 25rem;
    height: 25rem;
    background-color: var(--gradient-color-2);
    animation-delay: -5s;
    animation: pulseGradient 20s infinite alternate ease-in-out;
}

.blob-gradient-3 {
    top: 20%;
    right: 10%;
    width: 18rem;
    height: 18rem;
    background-color: var(--gradient-color-3);
    animation-delay: -8s;
    animation: pulseGradient 18s infinite alternate ease-in-out;
}

.blob-gradient-4 {
    opacity: 0.5;
    left: 10%;
    bottom: 25%;
    width: 15rem;
    height: 15rem;
    background-color: var(--gradient-color-4);
    animation-delay: -2s;
    animation: pulseGradient 14s infinite alternate ease-in-out;
}


/* HEADER */
.header {
    position: relative;
}

.logo_brand{
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (min-width:1000px) {
    .header {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
    }


}

@media screen and (max-width:1000px) {
    .logo_brand>img {
        width: 160px;
    }
}

/* Banner */
.banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    text-align: center;
}

.banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
    background: var(--background-color);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    filter: blur(8rem);
}

.banner-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
    z-index: 5;
}


.ft {
    font-family: "Michroma", sans-serif;
    font-size: 10px !important;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

@media (min-width:767px) and (max-width:1000px) {
    footer {
    position: relative;
    display: block;
   
}

}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
}

.social-links .social-link>a {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
}

.social-links .social-link>a:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 10px 30px hsla(272, 65%, 45%, 0.6);
}

.social-links .social-link>a>i {
    font-size: 1em;
}