/* ==================================================
   RESET
================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #050505;
    color: #fff;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}


/* ==================================================
   LOADER
================================================== */

.loader {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #030303;

    transition:
        opacity 0.9s ease,
        visibility 0.9s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-background {
    position: absolute;
    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.06);

    filter: blur(100px);

    animation: loaderLight 4s ease-in-out infinite alternate;
}

.loader-content {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    flex-direction: column;
}

.loader-logo {
    width: 130px;

    animation: logoPulse 2s ease-in-out infinite alternate;
}

.loader-logo img {
    width: 100%;

    filter:
        drop-shadow(0 0 12px rgba(255, 255, 255, 0.45))
        drop-shadow(0 0 35px rgba(255, 255, 255, 0.18));
}

.loader-title {
    margin-top: 22px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 6px;

    color: rgba(255, 255, 255, 0.75);
}

.loader-line {
    width: 170px;
    height: 1px;

    margin-top: 28px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.12);
}

.loader-line span {
    display: block;

    width: 100%;
    height: 100%;

    background: #fff;

    transform: translateX(-100%);

    animation: loadingBar 1.7s ease forwards;

    box-shadow:
        0 0 15px rgba(255, 255, 255, 0.8);
}

.loader-status {
    margin-top: 14px;

    font-size: 7px;
    font-weight: 600;
    letter-spacing: 3px;

    color: rgba(255, 255, 255, 0.3);
}

.loader-circle {
    position: absolute;

    width: 300px;
    height: 300px;

    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 50%;
}

.circle-one {
    animation: rotate 10s linear infinite;
}

.circle-two {
    width: 430px;
    height: 430px;

    border-color: rgba(255, 255, 255, 0.025);

    animation: rotateReverse 16s linear infinite;
}

.loader-dot {
    position: absolute;

    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: #fff;

    box-shadow:
        0 0 12px rgba(255, 255, 255, 0.7);

    opacity: 0.5;
}

.dot-one {
    top: 28%;
    left: 20%;

    animation: floatingDot 4s infinite;
}

.dot-two {
    right: 22%;
    top: 67%;

    animation: floatingDot 5s infinite 1s;
}

.dot-three {
    right: 27%;
    top: 25%;

    animation: floatingDot 4.5s infinite 0.5s;
}


/* ==================================================
   HERO
================================================== */

.hero {
    position: relative;

    min-height: 100vh;
    min-height: 100svh;

    display: flex;
    align-items: center;

    overflow: hidden;

    isolation: isolate;

    background: #070707;
}

.hero-bg {
    position: absolute;
    inset: -7%;

    z-index: -4;

    background-image: url("fundogust.png");

    background-repeat: no-repeat;
    background-position: center center;

    /*
       Fundo bem maior que a tela.
       Isso cria o zoom solicitado.
    */
    background-size: 115%;

    filter: blur(6px);

    opacity: 0.48;

    transform: scale(1.03);

    animation:
        heroZoom 15s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: -3;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.12),
            rgba(0, 0, 0, 0.18) 40%,
            rgba(0, 0, 0, 0.58) 100%
        );
}

.hero-noise {
    position: absolute;
    inset: 0;

    z-index: -2;

    opacity: 0.035;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.hero::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: -1;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(255, 255, 255, 0.08),
            transparent 28%
        );
}


/* ==================================================
   NAVBAR
================================================== */

.navbar {
    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 30px 5vw;
}

.logo {
    width: 105px;

    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.logo:hover {
    transform: translateY(-2px) scale(1.03);

    filter:
        drop-shadow(0 0 15px rgba(255, 255, 255, 0.25));
}

.logo img {
    width: 100%;
}

.availability {
    display: flex;
    align-items: center;
    gap: 9px;

    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2.5px;

    color: rgba(255, 255, 255, 0.52);
}

.availability span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #fff;

    box-shadow:
        0 0 12px rgba(255, 255, 255, 0.8);

    animation: statusPulse 2s ease-in-out infinite;
}


/* ==================================================
   HERO CONTENT
================================================== */

.hero-content {
    width: min(1200px, 90%);

    margin: 60px auto 0;
}

.hero-kicker {
    margin-bottom: 22px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 5px;

    color: rgba(255, 255, 255, 0.65);

    animation:
        heroReveal 0.9s ease 0.2s both;
}

.hero h1 {
    max-width: 1050px;

    font-size: clamp(58px, 8vw, 115px);

    line-height: 0.86;

    letter-spacing: -7px;

    font-weight: 900;

    text-transform: uppercase;

    text-shadow:
        0 4px 35px rgba(0, 0, 0, 0.55),
        0 0 25px rgba(255, 255, 255, 0.06);

    animation:
        heroReveal 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.35s both;
}

.hero h1 span {
    display: block;

    color: transparent;

    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.75);

    text-shadow:
        0 0 20px rgba(255, 255, 255, 0.08);
}

.hero-content > p {
    max-width: 600px;

    margin-top: 35px;

    font-size: 15px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.65);

    text-shadow:
        0 2px 18px rgba(0, 0, 0, 0.8);

    animation:
        heroReveal 0.9s ease 0.5s both;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;

    margin-top: 34px;

    animation:
        heroReveal 0.9s ease 0.65s both;
}

.hero-meta span {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2.5px;

    color: rgba(255, 255, 255, 0.48);
}


/* ==================================================
   HERO BOTTOM
================================================== */

.hero-bottom {
    position: absolute;

    bottom: 35px;
    left: 5vw;

    display: flex;
    align-items: center;
    gap: 15px;

    font-size: 7px;
    font-weight: 600;
    letter-spacing: 3px;

    color: rgba(255, 255, 255, 0.35);
}

.scroll-arrow {
    font-size: 15px;

    color: rgba(255, 255, 255, 0.65);

    animation:
        scrollBounce 1.8s ease-in-out infinite;
}


/* ==================================================
   SECTIONS
================================================== */

.section {
    position: relative;

    width: min(1180px, 90%);

    margin: auto;

    padding: 150px 0;
}

.small-label {
    display: block;

    margin-bottom: 30px;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;

    color: rgba(255, 255, 255, 0.35);
}


/* ==================================================
   ABOUT
================================================== */

.about {
    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 100px;

    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.section-heading h2,
.benefits-header h2,
.investment-heading h2 {
    max-width: 700px;

    font-size: clamp(48px, 6vw, 80px);

    line-height: 0.92;

    letter-spacing: -5px;

    font-weight: 800;
}

.section-heading h2 strong,
.benefits-header h2 strong,
.investment-heading h2 strong {
    display: block;

    color: rgba(255, 255, 255, 0.32);
}

.about-text {
    padding-top: 70px;
}

.about-text p {
    max-width: 470px;

    margin-bottom: 27px;

    font-size: 14px;
    line-height: 1.9;

    color: rgba(255, 255, 255, 0.5);
}

.about-text .large-text {
    font-size: 23px;
    line-height: 1.5;

    font-weight: 500;

    color: rgba(255, 255, 255, 0.82);
}


/* ==================================================
   BENEFITS
================================================== */

.benefits {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.benefits-header {
    margin-bottom: 80px;
}

.benefits-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 0;
}

.benefit {
    padding: 25px 45px 25px 0;

    border-right: 1px solid rgba(255, 255, 255, 0.08);

    transition:
        transform 0.4s ease;
}

.benefit:not(:first-child) {
    padding-left: 45px;
}

.benefit:last-child {
    border-right: none;
}

.benefit:hover {
    transform: translateY(-8px);
}

.benefit-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 35px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    font-size: 19px;

    color: rgba(255, 255, 255, 0.7);

    transition:
        border-color 0.4s ease,
        box-shadow 0.4s ease,
        transform 0.4s ease;
}

.benefit:hover .benefit-icon {
    border-color: rgba(255, 255, 255, 0.45);

    box-shadow:
        0 0 25px rgba(255, 255, 255, 0.08);

    transform: rotate(8deg);
}

.benefit h3 {
    margin-bottom: 18px;

    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.benefit p {
    max-width: 290px;

    font-size: 13px;
    line-height: 1.85;

    color: rgba(255, 255, 255, 0.43);
}


/* ==================================================
   DEMO
================================================== */

.demo {
    min-height: 650px;

    display: flex;
    align-items: center;

    overflow: hidden;

    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.demo-glow {
    position: absolute;

    width: 550px;
    height: 550px;

    right: -200px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.08),
            transparent 65%
        );

    filter: blur(15px);

    animation:
        demoGlow 8s ease-in-out infinite alternate;
}

.demo-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
}

.demo-content h2 {
    font-size: clamp(52px, 7vw, 95px);

    line-height: 0.88;

    letter-spacing: -6px;

    font-weight: 900;
}

.demo-content h2 strong {
    display: block;

    color: transparent;

    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.55);
}

.demo-content p {
    max-width: 600px;

    margin-top: 35px;

    font-size: 15px;
    line-height: 1.9;

    color: rgba(255, 255, 255, 0.52);
}

.demo-highlight {
    display: inline-block;

    margin-top: 40px;

    padding: 13px 20px;

    border: 1px solid rgba(255, 255, 255, 0.18);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 3px;

    color: rgba(255, 255, 255, 0.6);

    background: rgba(255, 255, 255, 0.025);

    transition:
        background 0.4s ease,
        border-color 0.4s ease;
}

.demo-highlight:hover {
    background: rgba(255, 255, 255, 0.08);

    border-color: rgba(255, 255, 255, 0.4);
}


/* ==================================================
   INVESTMENT
================================================== */

.investment {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.investment-heading {
    margin-bottom: 70px;
}

.price-box {
    position: relative;

    padding: 60px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.13);

    background:
        linear-gradient(
            120deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.012)
        );
}

.price-box::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -160px;
    top: -160px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.04);

    filter: blur(60px);
}

.price-top {
    margin-bottom: 55px;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 4px;

    color: rgba(255, 255, 255, 0.4);
}

.price-main {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 24px;

    margin-bottom: 55px;
}

.old-price {
    font-size: 28px;

    color: rgba(255, 255, 255, 0.22);

    text-decoration: line-through;
}

.price-arrow {
    font-size: 26px;

    color: rgba(255, 255, 255, 0.3);
}

.current-price {
    display: flex;
    align-items: baseline;

    gap: 15px;
}

.current-price small {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 3px;

    color: rgba(255, 255, 255, 0.38);
}

.current-price strong {
    font-size: clamp(80px, 10vw, 140px);

    line-height: 0.8;

    letter-spacing: -9px;

    font-weight: 900;

    color: #fff;

    text-shadow:
        0 0 20px rgba(255, 255, 255, 0.2),
        0 0 55px rgba(255, 255, 255, 0.08);
}

.price-description {
    max-width: 700px;
}

.price-description h3 {
    margin-bottom: 18px;

    font-size: 22px;
    font-weight: 700;
}

.price-description p {
    margin-bottom: 18px;

    font-size: 14px;
    line-height: 1.9;

    color: rgba(255, 255, 255, 0.48);
}

.price-description > span {
    font-size: 10px;
    line-height: 1.6;

    color: rgba(255, 255, 255, 0.28);
}


/* ==================================================
   CONTACT
================================================== */

.contact {
    min-height: 850px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-top: 1px solid rgba(255, 255, 255, 0.07);

    overflow: hidden;
}

.contact-background {
    position: absolute;

    width: 650px;
    height: 650px;

    right: -250px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.08),
            transparent 65%
        );

    filter: blur(25px);

    animation:
        contactGlow 9s ease-in-out infinite alternate;
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact h2 {
    max-width: 900px;

    font-size: clamp(60px, 9vw, 125px);

    line-height: 0.84;

    letter-spacing: -8px;

    font-weight: 900;
}

.contact h2 strong {
    display: block;

    color: transparent;

    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.6);
}

.contact-content > p {
    max-width: 550px;

    margin-top: 35px;

    font-size: 15px;
    line-height: 1.9;

    color: rgba(255, 255, 255, 0.5);
}


/* ==================================================
   WHATSAPP
================================================== */

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    width: min(360px, 100%);

    margin-top: 45px;
    padding: 20px 22px;

    border: 1px solid rgba(255, 255, 255, 0.22);

    background: rgba(255, 255, 255, 0.045);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.whatsapp-button svg {
    width: 18px;
    height: 18px;

    transition:
        transform 0.35s ease;
}

.whatsapp-button:hover {
    transform: translateY(-4px);

    background: rgba(255, 255, 255, 0.10);

    border-color: rgba(255, 255, 255, 0.45);

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.35),
        0 0 30px rgba(255, 255, 255, 0.05);
}

.whatsapp-button:hover svg {
    transform: translateX(6px);
}


/* ==================================================
   FOOTER
================================================== */

footer {
    position: absolute;

    bottom: 30px;

    left: 0;
    right: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 8px;
    font-weight: 600;
    letter-spacing: 3px;

    color: rgba(255, 255, 255, 0.25);
}

footer span:first-child {
    color: rgba(255, 255, 255, 0.5);
}


/* ==================================================
   REVEAL
================================================== */

.section {
    opacity: 0;

    transform: translateY(45px);

    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.section.visible {
    opacity: 1;

    transform: translateY(0);
}


/* ==================================================
   ANIMATIONS
================================================== */

@keyframes loaderLight {

    from {
        transform: scale(0.8);
        opacity: 0.35;
    }

    to {
        transform: scale(1.15);
        opacity: 0.8;
    }

}

@keyframes logoPulse {

    from {
        transform: scale(0.97);
    }

    to {
        transform: scale(1.03);
    }

}

@keyframes loadingBar {

    to {
        transform: translateX(0);
    }

}

@keyframes rotate {

    to {
        transform: rotate(360deg);
    }

}

@keyframes rotateReverse {

    to {
        transform: rotate(-360deg);
    }

}

@keyframes floatingDot {

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

    50% {
        transform: translate(18px, -25px);
        opacity: 0.8;
    }

}

@keyframes heroZoom {

    from {
        transform:
            scale(1.03)
            translate3d(-0.5%, -0.3%, 0);
    }

    to {
        transform:
            scale(1.07)
            translate3d(0.5%, 0.3%, 0);
    }

}

@keyframes heroReveal {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

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

}

@keyframes scrollBounce {

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

    50% {
        transform: translateY(6px);
    }

}

@keyframes demoGlow {

    from {
        transform: translateY(-50%) translateX(-20px);
        opacity: 0.5;
    }

    to {
        transform: translateY(-50%) translateX(20px);
        opacity: 1;
    }

}

@keyframes contactGlow {

    from {
        transform: translateY(-50%) translateX(-25px);
    }

    to {
        transform: translateY(-50%) translateX(25px);
    }

}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

    .about {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-text {
        padding-top: 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit,
    .benefit:not(:first-child) {
        padding: 35px 0;

        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .benefit:last-child {
        border-bottom: none;
    }

    .price-box {
        padding: 45px;
    }

    .hero-bg {
        background-size: 125%;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .navbar {
        padding: 23px 6vw;
    }

    .logo {
        width: 82px;
    }

    .availability {
        font-size: 7px;
        letter-spacing: 1.8px;
    }

    .hero-bg {
        inset: -10%;

        background-size: 150%;

        filter: blur(5px);

        opacity: 0.42;
    }

    .hero-content {
        width: 88%;

        margin-top: 40px;
    }

    .hero-kicker {
        font-size: 8px;
        letter-spacing: 3px;
    }

    .hero h1 {
        font-size: clamp(48px, 13vw, 65px);

        letter-spacing: -4px;

        line-height: 0.88;
    }

    .hero h1 span {
        -webkit-text-stroke: 0.7px rgba(255, 255, 255, 0.65);
    }

    .hero-content > p {
        max-width: 95%;

        margin-top: 28px;

        font-size: 13px;
    }

    .hero-meta {
        gap: 15px;
    }

    .hero-meta span {
        font-size: 6px;
        letter-spacing: 1.5px;
    }

    .hero-bottom {
        display: none;
    }

    .section {
        width: 88%;

        padding: 105px 0;
    }

    .section-heading h2,
    .benefits-header h2,
    .investment-heading h2 {
        font-size: 46px;

        letter-spacing: -3px;
    }

    .about-text {
        padding-top: 5px;
    }

    .about-text .large-text {
        font-size: 20px;
    }

    .about-text p {
        font-size: 13px;
    }

    .benefits-header {
        margin-bottom: 45px;
    }

    .demo {
        min-height: 550px;
    }

    .demo-content h2 {
        font-size: 48px;

        letter-spacing: -4px;
    }

    .demo-content p {
        font-size: 13px;
    }

    .demo-glow {
        width: 350px;
        height: 350px;

        right: -180px;
    }

    .price-box {
        padding: 30px 23px;
    }

    .price-top {
        margin-bottom: 40px;
    }

    .price-main {
        gap: 14px;

        margin-bottom: 40px;
    }

    .old-price {
        font-size: 21px;
    }

    .price-arrow {
        font-size: 19px;
    }

    .current-price {
        width: 100%;
    }

    .current-price strong {
        font-size: 82px;

        letter-spacing: -6px;
    }

    .price-description h3 {
        font-size: 19px;
    }

    .price-description p {
        font-size: 13px;
    }

    .contact {
        min-height: 760px;
    }

    .contact h2 {
        font-size: 58px;

        letter-spacing: -4px;
    }

    .contact-content > p {
        font-size: 13px;
    }

    .whatsapp-button {
        width: 100%;
    }

    footer {
        padding: 0 6vw;

        font-size: 7px;
        letter-spacing: 2px;
    }

}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

}