@font-face {
    font-family: "Gabarito";
    src: url(./Fonts/Gabarito-Regular.woff2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Gabarito";
}

:root {
    --black: #32230c;
    --white: #FFF0B3;
    --pc1: #fd7024;
    --pc2: #88b7bd;
}

html,
body {
    height: 100%;
    width: 100%;
}

main {
    min-height: 100vh;
    width: 100%;
    position: relative;
}

main::-webkit-scrollbar {
    display: none;
}

#page1 {
    background-color: var(--pc1);
    position: sticky;
    top: 0;
    overflow: hidden;
}

main nav {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    font-size: 13px;
    font-weight: 900;
    position: absolute;
    padding: 0 1.5vw;
    z-index: 99;
}

main nav #logo {
    display: flex;
    align-items: center;
    height: 100%;
    width: fit-content;
    color: var(--white);
    letter-spacing: 1px;
}

main nav #nav-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 25%;
    margin-left: -200px;
}

main nav #nav-links a {
    text-decoration: none;
    color: var(--white);
    position: relative;
    padding: 2px 4px;
}

main nav #nav-links a::before {
    content: "";
    background-color: var(--black);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scaleY(0);
    z-index: -1;
}

main nav #nav-links a:hover::before {
    transition: 0.5s;
    transform: translate(-50%, -50%) scaleY(1);
}

main nav #btn-left {
    display: flex;
    align-items: center;
    gap: 50px;
    height: 100%;
}

main nav #btn-left button,
main nav #btn-right button {
    background-color: transparent;
    border: none;
    color: var(--white);
    font-weight: 900;
    cursor: pointer;
}

main nav #btn-left button::before {
    content: "";
    background-color: var(--black);
    height: auto;
    width: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
    z-index: -1;
}

main nav #btn-right button {
    border: 2px solid var(--white);
    padding: 5px 8px;
    border-radius: 30px;
    font-size: 14px;
}

main #hero {
    height: 100vh;
    width: 100%;
}

main #hero #big-txt {
    display: flex;
    align-items: center;
    height: 60%;
    width: 100%;
    overflow: hidden;
}

main #hero #svg {
    width: 100%;
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

main #hero #svg iframe {
    border: none;
    scale: 2.5;
}

main #hero #bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 15%;
    padding: 0 3vw;
}

main #hero #bottom p {
    height: 100%;
    width: 60%;
    font-size: 2.8vw;
    color: var(--white);
    line-height: 2.5vw;
}

main #hero #bottom #buttons {
    height: 100%;
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

main #hero #bottom #buttons button {
    font-size: 18px;
    background-color: transparent;
    border: none;
    color: var(--white);
}

main #hero #bottom #buttons button:first-child {
    border: 2px solid var(--white);
    padding: 8px 35px;
    border-radius: 50px;
}

main #hero #bottom #buttons button:first-child:hover {
    background-color: var(--white);
    color: var(--pc1);
    transition: 1s;
}
main #hero #bottom #buttons button:last-child{
    /* background-color: red; */
    width: fit-content;
    height: fit-content;
    position: relative;
    overflow: hidden;
    padding: 0 4px;
}
main #hero #bottom #buttons button:last-child::before {
    content: "";
    background-color: var(--black);
    position: absolute;
    top: calc(50% - 14.5px);
    left: calc(50% - 30px);
    width: 60px;
    height: 0px;
    padding: 1px 0px;
    z-index: -1;
}

main #hero #bottom #buttons button:last-child:hover::before{
    transition: 1s;
    height: 25px;
}

#page2 {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

#video-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100vw;
    z-index: 0;
    overflow: hidden;
}

#page2 #video-container {
    position: relative;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#page2 #video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    inset: 0;
}

#page-container {
    position: relative;
    z-index: 1;
}

#page2 .nav-part {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    background-color: var(--pc1);
    font-size: 15px;
    padding: 0 2vw;
    width: 100%;
    height: 40px;
    border-top: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    z-index: 98;
}

.page-wrapper {
    position: sticky;
    top: 0;
}

#page2 .main-part {
    width: 100%;
    height: 100vh;
    display: flex;
    padding: 0 2vw;
    position: relative;
    z-index: 1;
}

#page2 .main-part .text-container {
    width: 100%;
    height: 100vh;
    display: flex;
    padding: 0 2vw;
    position: relative;
}

#page2 .main-part1 {
    background-color: var(--pc2);
}

#page2 .main-part2 {
    background-color: rgb(253, 112, 36);
}

#page2 .main-part3 {
    background-color: rgb(136, 183, 189);
}

#page2 .main-part4 {
    background-color: rgb(253, 112, 36);
}

#page2 .main-part .text-container .left-part {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    color: var(--white);
}

#page2 .main-part .text-container .left-part h1 {
    font-size: 5vw;
    font-weight: 600;
}

#page2 .main-part .text-container .left-part p {
    font-size: 2vw;
}

#page2 .main-part .text-container .right-part {
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#page2 .main-part .text-container .right-part img {
    height: 73%;
    object-fit: cover;
}

#page3 {
    width: 100%;
    height: 100vh;
    background-color: var(--pc2);
    position: relative;
    display: flex;
    align-items: center;
    border-top: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
}

#page3 .left3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    height: 100%;
    padding: 0 4vw;
    color: var(--white);
}

#page3 .left3 .text1 {
    display: flex;
    position: absolute;
}

#page3 .left3 .text1 h1 {
    font-size: 11vw;
    z-index: 2;
}

#page3 .left3 .text2 {
    display: flex;
    position: absolute;
    top: 49vh;
    left: 14vh;
}

#page3 .left3 .text2 h1 {
    font-size: 11vw;
    background-color: var(--pc2);
    z-index: 1;
}

#star1 {
    position: absolute;
    height: 40%;
    top: 3vh;
    right: -21vw;
}

#star2 {
    position: absolute;
    height: 25%;
    left: -14vw;
    top: 15vh;
}

#arrow {
    position: absolute;
    height: 20%;
    left: -5.5vw;
    top: 47vh;
}

#page3 .right3 {
    width: 50%;
    height: 90%;
    position: relative;
    overflow: hidden;
    position: absolute;
    left: 50%;
}

#page3 .right3 .text-tag {
    background-color: var(--white);
    color: var(--black);
    display: inline-block;
    position: absolute;
    font-size: 3vw;
    padding: 5px 10px;
}

#page3 .right3 .text-tag:hover {
    background-color: var(--pc1);
    color: var(--black);
    cursor: pointer;
    transition: background-color 1s;
}

#page3 .right3 .text-tag1,
#page3 .right3 .text-tag7,
#page3 .right3 .text-tag8 {
    background-color: var(--black);
    color: var(--white);
}

#page3 .right3 .text-tag1 {
    top: 30%;
    left: 30%;
    rotate: 10deg;
}

#page3 .right3 .text-tag2 {
    top: 30%;
    left: 55%;
    rotate: -15deg;
}

#page3 .right3 .text-tag3 {
    top: 40%;
    left: 28%;
    rotate: 6deg;
}

#page3 .right3 .text-tag4 {
    top: 50%;
    left: 20%;
    rotate: -8deg;
}

#page3 .right3 .text-tag5 {
    top: 70%;
    left: 60%;
    rotate: -10deg;
}

#page3 .right3 .text-tag6 {
    top: 50%;
    left: 55%;
    rotate: 7deg;
}

#page3 .right3 .text-tag7 {
    top: 70%;
    left: 20%;
    rotate: 3deg;
}

#page3 .right3 .text-tag8 {
    top: 60%;
    left: 30%;
    rotate: 5deg;
}

#page3 .right3 .text-tag9 {
    top: 40%;
    left: 50%;
    rotate: -7deg;
}

#page3 .right3 .text-tag10 {
    top: 50%;
    left: 75%;
    rotate: -5deg;
}
/* V26 — responsive fusion repair */
html{scrollbar-gutter:stable}body{min-height:100%;overflow-x:hidden;background:var(--pc1);color:var(--black);text-rendering:optimizeLegibility}button,a{-webkit-tap-highlight-color:transparent}button:focus-visible,a:focus-visible{outline:3px solid var(--black);outline-offset:3px}#threeCanvas{display:block;width:100%!important;height:100%!important;max-width:100%;touch-action:pan-y}#page1{min-height:100svh}main #hero{min-height:100svh;height:100svh}.gentle-flight{position:relative;width:min(360px,70vw);aspect-ratio:2/1;display:grid;place-items:center}.gentle-plane{position:relative;z-index:2;width:100%;height:auto;filter:drop-shadow(0 12px 0 rgba(50,35,12,.13));animation:gentle-float 4.8s ease-in-out infinite}.gentle-cloud{position:absolute;display:block;width:92px;height:34px;border-radius:999px;background:rgba(255,240,179,.65);filter:drop-shadow(0 6px 0 rgba(50,35,12,.08))}.gentle-cloud::before,.gentle-cloud::after{content:"";position:absolute;bottom:0;border-radius:50%;background:inherit}.gentle-cloud::before{left:14px;width:42px;height:42px}.gentle-cloud::after{right:12px;width:54px;height:54px}.gentle-cloud--one{left:-8%;bottom:5%;transform:scale(.74)}.gentle-cloud--two{right:-5%;top:4%;transform:scale(.88)}@keyframes gentle-float{0%,100%{transform:translate3d(-3%,4px,0) rotate(-2deg)}50%{transform:translate3d(3%,-8px,0) rotate(1.5deg)}}

@media(max-width:1180px){main nav{gap:24px;padding-inline:24px}main nav #nav-links{width:auto;flex:1;justify-content:center;gap:clamp(16px,3vw,38px);margin-left:0}main nav #btn-left{gap:18px}main #hero #bottom #buttons{width:auto;gap:18px}main #hero #bottom p{font-size:clamp(22px,3vw,38px);line-height:1.04}.gentle-flight{width:min(330px,62vw)}}

@media(max-width:900px){main nav{height:62px;background:linear-gradient(180deg,rgba(253,112,36,.96),rgba(253,112,36,.78),transparent);padding:0 18px;gap:16px}main nav #logo{font-size:16px}main nav #nav-links{display:none}main nav #btn-left{margin-left:auto;gap:14px}main nav #btn-left button:first-child{display:none}main nav #btn-right button{font-size:13px;padding:7px 12px}main #hero #big-txt{height:54%}main #hero #svg{height:25%}main #hero #bottom{height:21%;padding:12px 24px 22px;gap:18px}main #hero #bottom p{width:min(62%,560px);font-size:clamp(20px,4.2vw,34px);line-height:1.08}main #hero #bottom #buttons{width:auto;justify-content:flex-end;gap:18px}main #hero #bottom #buttons button{font-size:15px}#page2 .main-part .text-container .right-part img{max-width:100%;height:auto;max-height:70%;object-fit:contain}#page3 .right3 .text-tag{font-size:clamp(20px,3.6vw,42px)}}

@media(max-width:760px){html,body{height:auto;min-height:100%}#page1{position:relative;top:auto;height:auto;min-height:100svh}main #hero{height:auto;min-height:100svh;display:grid;grid-template-rows:minmax(310px,52svh) minmax(160px,23svh) auto;padding-top:max(54px,env(safe-area-inset-top))}main #hero #big-txt,main #hero #svg,main #hero #bottom{height:auto;min-height:0}main #hero #big-txt{align-items:center;overflow:hidden}main #hero #svg{padding-inline:16px}.gentle-flight{width:min(300px,76vw)}main #hero #bottom{align-items:flex-start;flex-direction:column;justify-content:flex-end;padding:12px 18px calc(84px + env(safe-area-inset-bottom));gap:18px}main #hero #bottom p{width:100%;height:auto;max-width:29ch;font-size:clamp(22px,7.5vw,34px);line-height:1.02}main #hero #bottom #buttons{height:auto;width:100%;justify-content:flex-start;gap:12px;flex-wrap:wrap}main #hero #bottom #buttons button:first-child{padding:9px 22px}#page2{min-height:0}#page-container{display:grid}.page-wrapper{position:relative;top:auto;min-height:0}.page-wrapper+.page-wrapper{border-top:2px solid var(--black)}#page2 .nav-part{position:sticky;top:0;height:42px;padding:0 18px;font-size:13px}#page2 .main-part,#page2 .main-part .text-container{height:auto;min-height:100svh;padding:0}#page2 .main-part .text-container{display:grid;grid-template-rows:auto minmax(0,1fr);padding:74px 18px 84px;gap:22px}#page2 .main-part .text-container .left-part,#page2 .main-part .text-container .right-part{width:100%;height:auto}#page2 .main-part .text-container .left-part{justify-content:flex-start;gap:12px}#page2 .main-part .text-container .left-part h1{font-size:clamp(54px,18vw,98px);line-height:.86}#page2 .main-part .text-container .left-part p{font-size:clamp(18px,5.4vw,27px);line-height:1.18;max-width:34ch}#page2 .main-part .text-container .right-part{align-items:center;min-height:42svh}#page2 .main-part .text-container .right-part img{width:min(100%,520px);height:auto;max-height:48svh;object-fit:contain}#page3{height:auto;min-height:100svh;display:grid;grid-template-columns:1fr;padding:74px 18px 100px;gap:28px;overflow:hidden}#page3 .left3,#page3 .right3{position:relative;left:auto;width:100%;height:auto;padding:0;overflow:visible}#page3 .left3{min-height:230px;justify-content:flex-start}#page3 .left3 .text1,#page3 .left3 .text2{position:relative;top:auto;left:auto;width:max-content}#page3 .left3 .text1 h1,#page3 .left3 .text2 h1{font-size:clamp(72px,24vw,130px);line-height:.75}#page3 .left3 .text2{margin-left:20vw;margin-top:18px}#star1{height:68px;top:-10px;right:-86px}#star2{height:52px;left:-60px;top:16px}#arrow{height:72px;left:0;top:auto;bottom:-42px;width:78%}#page3 .right3{display:flex;flex-wrap:wrap;align-content:flex-start;gap:10px;min-height:240px}#page3 .right3 .text-tag{position:relative;top:auto!important;left:auto!important;rotate:0deg!important;font-size:clamp(19px,6vw,30px);padding:7px 11px;transform:none!important}.roberto-fusion-dock{font-size:10px}}

@media(max-width:480px){main nav{padding-inline:12px}main nav #btn-left{display:none}main nav #btn-right{margin-left:auto}main #hero{grid-template-rows:minmax(270px,48svh) minmax(145px,21svh) auto}.gentle-flight{width:min(270px,80vw)}main #hero #bottom{padding-inline:14px}main #hero #bottom p{font-size:clamp(20px,7.8vw,30px)}#page2 .main-part .text-container{padding-inline:14px}#page3{padding-inline:14px}#page3 .left3 .text2{margin-left:14vw}}

@media(max-height:620px) and (orientation:landscape){main #hero{min-height:720px;grid-template-rows:340px 180px auto}main #hero #bottom{padding-bottom:90px}}

@media(prefers-reduced-motion:reduce){.gentle-plane{animation:none}html{scroll-behavior:auto}}
