/* #### RESET CSS #### */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
    background-color: black;
}

html::selection {
  background: #78849D;
  color: white;
  text-shadow: none;
}

html::-moz-selection {
  background: #78849D;
  color: white;
}
/* ####### GENERAL COMPONENTS ####### */
/* #### TITULOS #### */
.titulo1 {
    font-size: 7vh;
    background: #78849D;
    background: linear-gradient(to right, #78849D 0%, #FFFFFF 100%);
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.1)) 
            drop-shadow(8px 8px 8px rgba(0,0,0,0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
 }
 .titulo2 {
    font-size: 5vh;
    background: #78849D;
    background: linear-gradient(to right, #78849D 0%, #FFFFFF 100%);
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.1)) 
            drop-shadow(8px 8px 8px rgba(0,0,0,0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
 }
/* #### BTNS PARA SLIDES #### */
.buttonsSlides {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2vh;
}
.btnPrevious {
    display: flex;
    align-items: center;
    padding: 1.2vh;
    border-radius: 50%;
    background-color: #E9EAED;
    transition: 0.4s;
}
.btnNext {
    display: flex;
    align-items: center;
    padding: 1.2vh;
    border-radius: 50%;
    background-color: #E9EAED;  
    transition: 0.4s
}
.btnPrevious:hover, .btnNext:hover {
    cursor: pointer;
    background-color: #838383; 
}
#searchMobile {
    display: none;
}
#componentsPage {
    height: 100vh;
    background-image: url('Utilities/Images/bg2.png');
    margin: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
#utilitiesSection1 {
    height: 60vh;
    width: 85%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.scrollSnap {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scrollSnap::-webkit-scrollbar {
  display: none;
}
.scrollSnap section {
  scroll-snap-align: start;
}
/* #### NAVBAR #### */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5vh;
    width: 90%;
    margin: 0 auto;
    z-index: 998;
}
#navLogoXS {
    display: none;
}
#rightNav {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2vh;
}
#searchIconMobile {
    display: none;
    cursor: pointer;
}
#searchIconHover {
    display: none;
    cursor: pointer;
}
#searchIcon {
    cursor: pointer;
}
#searchIcons:hover #searchIcon {
    display: none;
}
#searchIcons:hover #searchIconHover {
    display: block;
}
#barsIcon {
    cursor: pointer;
}

/* ### BARRA DE PESQUISA ### */
.barraPesquisa {
    border: 1px solid white;
    background-color: transparent;
    color: white;
    font-weight: 400;
    min-width: 400px;
    border-radius: 10px;
    padding: 2px 6px;
    display: none;
}
.barraPesquisa.active {
    display: block;
}

/* ### SIDE MENU ### */
.side-menu {
    position: absolute;
    margin-top: 10px;
    top: 100%;
    right: 0;
    width: fit-content;
    background-color: #050505; 
    border: 1px solid white;
    border-radius: 16px; 
    padding: 35px;
    z-index: 999;
    text-wrap: nowrap;
    display: none;
}
.side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}
.side-menu a {
    text-decoration: none;
    color: #d1d1d1;
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    display: block;
    transition: color 0.2s ease;
}
.side-menu a:hover {
    color: #ffffff;
}
.side-menu.active {
    display: block;
}

/* ### SIDE BUTTONS ### */
#sideButtons {
    display: flex;
    position: fixed;
    flex-direction: column;
    gap: 1vh;
    top: 35%;
    right: 0;
    height: fit-content;
    width: fit-content;
    z-index: 997;
}
#sideButtons a {
    font-size: 1.6vh;
    font-weight: 600;
    text-decoration: none;
    color: #182439;
    background-color: #83e1b2;
    border: 1px solid transparent; 
    border-radius: 0 1vh 1vh 0; 
    padding: 1.7vh 0.7vh;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    transition: 0.4s;
    box-shadow: 0 0 5px #83e1b2,
                0 0 25px #83e1b2,
                0 0 50px #83e1b2,
                0 0 200px #83e1b2;
    
}
#sideButtons a:hover {
    background-color: #2CE387;
    box-shadow: 0 0 5px #2CE387,
                0 0 25px #2CE387,
                0 0 50px #2CE387,
                0 0 200px #2CE387;
}

/* #### FOOTER #### */
footer {
    width: 90%;
    padding: 5vh;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
#topFooter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2vh 0;
    width: 100%;
}
#logotiposFooter {
    display: flex;
    align-items: center;
    gap: 2vh;
}
#logotiposRedes {
    display: flex;
    align-items: center;
    gap: 20px;
}
#logotiposRedes a img{
    width: 40%;
}
#bottomFooter {
    display: flex;
    gap: 1vh;
    padding: 2vh 0;
    align-items: center;
    justify-content: center;
    width: 100%;
}
#bottomFooter p {
    font-weight: 500;
    font-size: 1.5vh;
    color: white;
    margin: 0;
}
#line {
    border: 1px solid white;
    border-radius: 3em;
}
#bottomFooter a {
    font-weight: 200;
    text-decoration: none;
    color: white;
    font-size: 1.2vh;
    transition: 0.4s;
}
#copyrightFooter {
    display: flex;
    align-items: center;
    gap: 1vh;
}
#linksFooter {
    display: flex;
    align-items: center;
    gap: 10px;
}
#bottomFooter a:hover {
    color: lightgray;
}
#facebookIconHover,
#instagramIconHover,
#youtubeIconHover,
#linkedinIconHover {
    display: none;
}
a:hover #facebookIcon,
a:hover #instagramIcon,
a:hover #youtubeIcon,
a:hover #linkedinIcon {
    display: none;
}
a:hover #facebookIconHover,
a:hover #instagramIconHover,
a:hover #youtubeIconHover,
a:hover #linkedinIconHover {
    display: inline-flex;
}

/* ####### HOMEPAGE ####### */
/* ##### SECTION 1 ##### */
#homepageSection {
    position: relative;
    height: 100vh;
    background-image: url('Utilities/Images/bg1.png');
    margin: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#homepageSection::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
    z-index: 2;
    pointer-events: none;
}
#topHomepage {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 5vh;
}
#homepageLogoS {
    display: none;
}
#topHomepage h1 {
    font-size: 15vh;
    font-weight: 700;
    background: #78849D;
    background: linear-gradient(to right, #78849D 0%, #FFFFFF 100%);
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.1)) 
            drop-shadow(8px 8px 8px rgba(0,0,0,0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#mergulhadorHomepage {
    position: absolute;
    bottom: 0;
    margin: 0 auto;
    right: 0;
    left: 0;
    height: 90%;
    width: auto;    
    z-index: 1;
}
#bottomHomepage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5vh;
    z-index: 999;
    width: 100%;
    padding-bottom: 8vh;
}
#bottomNav {
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7vh;
}
#bottomNav a{
    font-size: 2vh;
    line-height: 1;
    text-decoration: none;
    color: white;
    transition: 0.4s;
}
#bottomNav a:hover {
    color: grey;
}
#btnJuntate {
    font-size: 1.7vh;
    text-decoration: none;
    color: #182439;
    background-color: #83e1b2;
    border: 1px solid transparent; 
    box-shadow: 0 0 5px #83e1b2,
                0 0 25px #83e1b2,
                0 0 50px #83e1b2,
                0 0 200px #83e1b2;
    border-radius: 1vh;
    padding: 0.7vh 1.7vh;
    font-weight: 600;
    transition: 0.4s;
}
#btnJuntate:hover {
    background-color: #2CE387;
    box-shadow: 0 0 5px #2CE387,
                0 0 25px #2CE387,
                0 0 50px #2CE387,
                0 0 200px #2CE387;
}

/* ####### SECTION 2 ####### */
#destaquesSection {
    height: 100vh;
    background-image: url('Utilities/Images/bg2.png');
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}
#destaquesContainer {
    height: 60vh;
    width: 85%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}
#destaquesSlideshow {
    gap: 4vh;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
#destaquesBox {
    position: relative; 
    height: 40vh;
    width: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.destaquesSlide {
    position: absolute; 
    border-radius: 5vh;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end; 
    transition: all 0.5s ease-in-out;
    overflow: hidden; 
    opacity: 0;
}
.destaquesSlideContainer {
    width: 100%;
    height: 35%;
    border-bottom-left-radius: 5vh;
    border-bottom-right-radius: 5vh;
    backdrop-filter: blur(1.3vh);
    background-color: rgba(0, 0, 0, 0.5); 
    padding: 1vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1vh;
}
.destaquesSlideContainer h3 {
    font-size: 2vh;
    font-weight: 600;
    color: white;
}
.destaquesSlideContainer p {
    font-size: 1.6vh;
    font-weight: 200;
    color: white;
}
#destaque1 {
    background-image: url(Utilities/Images/destaque1.png);
    background-position: center;
    background-size: cover;
}
#destaque2 {
    background-image: url(Utilities/Images/destaque2.png);
    background-position: center;
    background-size: cover;
}
#destaque3 {
    background-image: url(Utilities/Images/destaque3.png);
    background-position: center;
    background-size: cover;
}
#destaque4 {
    background-image: url(Utilities/Images/destaque4.png);
    background-position: center;
    background-size: cover;
}
#destaque5 {
    background-image: url(Utilities/Images/destaque5.png);
    background-position: center;
    background-size: cover;
}

/* ####### SECTION 3 ####### */


/* ####### SECTION 4 ####### */
#ondeEstamosSection {
    height: 100vh;
    background-image: url('Utilities/Images/bg2.png');
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}
#ondeEstamosSectionContainer {
    height: 60vh;
    width: 85%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5vh;
}
#ondeEstamosSectionContainer p {
    font-size: 3vh;
    font-weight: 200;
    color: white;
}
#ondeEstamosSectionContainer span {
    font-size: 4vh;
    font-weight: 600;
    background: #78849D;
    background: linear-gradient(to right, #78849D 0%, #FFFFFF 100%);
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.1)) 
            drop-shadow(8px 8px 8px rgba(0,0,0,0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#cardsOndeEstamos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6vh;
}
.cardOndeEstamos {
    display: flex;
    align-items: end;
    background-size: cover; 
    background-position: top;
    background-repeat: no-repeat;
    height: 35vh;
    width: 25vh;
    border-radius: 2vh;
    transition: 0.4s;
}
.cardOndeEstamos:nth-child(1) {
    background-image: url(Utilities/Images/ondeEstamos1.png);
}
.cardOndeEstamos:nth-child(2) {
    background-image: url(Utilities/Images/ondeEstamos2.png);
}
.cardOndeEstamos:nth-child(3) {
    background-image: url(Utilities/Images/ondeEstamos3.png);
}
.cardOndeEstamos:nth-child(4) {
    background-image: url(Utilities/Images/ondeEstamos4.png);
}
.cardContainer {
    display: flex;
    opacity: 0;
    color: white;
    width: 100%;
    height: 25%;
    backdrop-filter: blur(0.5vh);
    background-color: rgba(0, 0, 0, 0.5); 
    border-bottom-left-radius: 2vh;
    border-bottom-right-radius: 2vh;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.cardOndeEstamos:nth-child(1):hover {
    #cardContainer1 {
        opacity: 1;
    }
}
.cardOndeEstamos:nth-child(2):hover {
    #cardContainer2 {
        opacity: 1;
    }
}
.cardOndeEstamos:nth-child(3):hover {
    #cardContainer3 {
        opacity: 1;
    }
}
.cardOndeEstamos:nth-child(4):hover {
    #cardContainer4 {
        opacity: 1;
    }
}
/* #### FOOTER SECTION #### */
#footerSection {
    position: relative;
    min-height: 100vh;
    background-color: black;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#footerSection h1 {
    font-size: 10vh;
    font-weight: 700;
    background: #78849D;
    background: linear-gradient(to right, #78849D 0%, #FFFFFF 100%);
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.1)) 
            drop-shadow(8px 8px 8px rgba(0,0,0,0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 3;
}
#fuzileiroFooter {
    position: absolute;
    height: 90%;
    width: auto;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

/* ###### RESPONSIVIDADE ###### */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
        
        #searchMobile {
            display: block;
        }
        /* ### NAVBAR ### */
        nav {
            padding: 35px 20px;
            width: 100%;
        }
        #navLogoXS {
            display: flex;
        }
        #navLogoS {
            display: none;
        }
        .barraPesquisa {
            min-width: 200px;
        }
        #searchIcons {
            display: none;
        }
        #searchIconMobile {
            display: flex;
        }
        /* ### SIDE BUTTONS ### */
        #sideButtons a{
            font-size: 12px;
        }
        /* ### SECTION 1 ### */
        #topHomepage{
            padding-top: 14vh;
        }
        #topHomepage img{
            display: none;
        }
        #topHomepage h1 {
            font-size: 45px;
            font-weight: 800;
        }
        #mergulhadorHomepage{
            height: 70%;
            bottom: 50px;
        }
        #bottomHomepage{
            gap: 40px;
        }
        #bottomNav{
            gap: 14px;
        }
        
        #bottomNav a {
            display: none;
        }
        .searchMobile {
            height: 100%;
            width: 0;
            position: fixed;
            z-index: 999;
            top: 0;
            right: 0;
            background-color: black;
            overflow-x: hidden;
            padding-top: 60px;
            transition: 0.5s;
        }
        .searchMobile a{
            padding: 8px 32px 8px 8px;
            text-decoration: none;
            font-size: 25px;
            color: white;
            display: block;
            transition: 0.3s;
        }
        .searchMobile a:hover {
            color: #78849D;
        }
        .searchMobile .barraPesquisa {
            padding: 10px 20px;
            font-size: 18px;
            width: 80%;
            margin: 0 auto;
            display: block;
            border: 0;
            border-bottom: 1px solid white;
            border-radius: 0;
        }
        .searchMobile .barraPesquisa:focus {
            outline: none;
            border-bottom: 2px solid #78849D;
        }
        .searchMobile .closebtn {
            position: absolute;
            top: 0;
            left: 15px;
            font-size: 36px;
        }
        /* ### FOOTER SECTION ### */
        #footerSection {
            padding-top: 170px;
            justify-content: start;
        }
        #footerSection h1 {
            font-size: 40px;
        }
        #fuzileiroFooter {
            width: 360px;
        }

        /* ### FOOTER ### */
        footer {
            padding: 15px;
        }
        #topFooter {
            flex-direction: column;
            gap: 20px;
        }
        #logotiposFooter {
            justify-content: space-between;
        }
        #bottomFooter {
            width: 100%;
            flex-direction: column;
        }
        #copyrightFooter p{
            font-size: 10px;
        }
        #barraCopyright {
            display: none;
        }
        #linksFooter {
            gap: 3px;
        }
        #linksFooter a{
            text-align: center;
            font-size: 8.5px;
        }

}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    
}