:root {
    --myDarkBlue: rgb(1, 8, 27);
    --myGolden: rgb(138,90,18);
    --myGoldenBright: rgb(214,164,59);
    --myClara: rgb(233,225,202);
}


@font-face {
    font-family: "MyFont";
    src: url("Fontes/montserrat/Montserrat-Regular.ttf") format("truetype");
}



section{
    scroll-margin-top: 160px;
    font-family: "MyFont",Arial, Helvetica, sans-serif;
    
}

nav{font-family: "MyFont",Arial, Helvetica, sans-serif;}

footer{font-family: "MyFont",Arial, Helvetica, sans-serif;}



.mynav{
        justify-content: space-between;
        align-items: center;
        display: flex;
        /*padding: 5px 0px;*/
        font-size: 20px;
        z-index: 1000;
        top: 0;
        position: sticky;
        background-color: var( --myDarkBlue);
        /*background-image: linear-gradient(to bottom right, Black, rgb(70, 70, 70));
        */
        
}

.mynavimg
{
    position: relative; height: 200px; 
}

.barrinha
{
    outline: var(--myGolden) solid 2px; float: left;  width: clamp(20px, 1.2vw,23px);height: 0px; margin: 5px 10px; 
}

.myNavUL{
    
    display: flex;
    
    align-items: center;
}
.navitem{
        padding: 20px 2px;
        margin-right: 30px;
        font-size: 18px;
        display: inline-block;
        color: white;
        text-decoration: none;
        color: var(--myClara);
        align-items: center;
        background-color: var( --myDarkBlue);
    }
.navbar{
    
    background-color: var( --myDarkBlue);
        padding: 20px 1px;
        margin-right: 30px;
        font-size: 22px;
        display: inline-block;
        color: white;
        text-decoration: none;
        color: var(--myDarkBlue);
        align-items: center;
        z-index: 2222;
        
    }
.navitem:hover
    {
        color: gray;
    }
.navitem::after
    {
        content: '';
        position: static;
        bottom: -10px;
        left: 0;
        width: 100px;
        height: 3px;
        background-color: rgb(2, 135, 52);
        transition: all .3s;
    }
.navitem::before
    {
        display: block;
        content: '';
        position: relative;
        bottom: -35px;
        left: 50%;
        width: 0%;
        height: 3px;
        background-color: var(--myGolden);
        transition: all .3s;
    }
.navitem:hover::before
    {
        width: 100%;
        left: 0%;
        
    }
.navbutton{
        background-color: var(--myGolden);
        padding: 25px;
        border-radius: 25px;
        border: none;
    }
.navbutton:hover{
        background-color: var(--myGolden);
        transition: all .3s;
    }



.verticalLineNav{
    content: "";
  
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 1px;
  background-color: #ccc;
}

.bottomFalarComButton
{
    display: flex;
    align-items: center;      
    justify-content: center; 
    background-color: rgb(1, 14, 33);
    color:var(--myGolden);
    outline: var(--myGolden) 2px solid; 
    
    padding: 5px 10px;
    padding-left: 20px;
    border-radius: 5px;
}

.whatsappButton
{
    border-radius: 40px;
    background-image: linear-gradient(to bottom right, rgb(89, 181, 92), rgb(52, 117, 54) );
    /**background-color: rgb(89, 181, 92);**/
    color: white;
    font-size: 100%;
    text-align: center;
    align-items: center;
    white-space: nowrap;
    display: flex;
    padding: 0px 20px;
    flex-shrink: 0;

    
}

.whatsappImg{
    
    height: 50px; width: 50px;
}

.nav-links {
  list-style: none;
  display: none;
  gap: 30px;
}


.hamburger
{

    display: none;
    padding-left: 40px;
    padding-top: 20px;
    padding-bottom: 0px;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    color: var(--myClara);
    font-size: 20px;
    height: 50px;
    
}


.heroImg
{
    background-image:
        linear-gradient(to right,  lightgray, rgba(0,0,0,0.8)),
        url("Img/FrontpageNewest2.png");

    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;

}

.firstSection
{
    width: 100%;
    position: relative;
}

.firstMain
{
    display: flex; 
    background-color: rgb(1, 8, 27);
}
.firstTextPart{
    background-color: rgb(1, 8, 27); color:var( --myClara); 
         font-size: clamp(20px, 2vw, 25px); z-index: 2; top: 10%; left: 8%;  width: 50%; padding: 20px;
}


.firstImg
{
   
    
    mask-image: radial-gradient(
    circle,
    rgba(0,0,0,1) 1%,
    rgba(0,0,0,0.8) 70%,
    rgba(0,0,0,0) 100%
);
    -webkit-mask-image: radial-gradient(
    circle,
    rgba(0,0,0,1) 1%,
    rgba(0,0,0,0.5) 70%,
    rgba(0,0,0,0) 90%,
    rgba(0,0,0,0) 100%
);
    /**
    background-image: url("Img/FrontPageImg.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    **/
    width: 50%;
    height: 100%;
    object-fit: cover;          /* fill container, crop if needed */
    object-position: bottom;
    z-index: 1;
    float: right;
}

.firstButton
{
    border-radius:10px;
    background-color: rgb(23, 30, 49);
    background-image: linear-gradient(to bottom right, rgb(70, 61, 105), rgb(23, 30, 49));
    border: 1px solid goldenrod;
    color: white;
    font-size: 2vw;
    text-align: center;
    align-items: center;
    display: flex;
    padding: 8px 13px;   
    white-space: pre-wrap;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;

}

.firstRodape
{    background-color: rgb(1, 8, 27);
    display: flex;
   
    
}

.firstRodapeItem
{

    padding-left: 2vw;
    
    display: flex;
    flex: 1;
    font-size: 1.2vw
    
}

.firstRodapeTextDiv
{
    padding-left: 8px;
    padding-right: 8px;
    font-size: clamp(6px, 1.2vw,23px);
    color: var( --myClara);
    flex: 1;
}

.firstRodapeImg
{
    
    
    height: 5vw;     /* fill the container height */
          /* keep aspect ratio */
    
    object-fit: scale-down;
}

.secondTitle
{
    color: rgb(23, 30, 49);
    font-size: 3vw; 
    margin: 10px 0px;
}

.second
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10%;
    margin: 0px 10%;
    width: 100%; max-width: 1500px; margin: 0 auto;
}

.secondDiv
{   
    background-color: var(--myClara);
    display: flex;
    padding: 40px;
    color: var(--myDarkBlue);
    font-size: clamp(6px, 1.2vw,23px);
    
}
.secondTextDiv
{
    flex: 1;
    padding: 30px;
    font-size: clamp(12px, 1.2vw,23px);
    align-items: center;
    color: var(--myDarkBlue);
}

.secondUnderItemTextDiv
{display: flex; width: 100%; gap: 10%;}
.secondUnderItemText
{
    flex: 1;  
    padding: 0px 1vw;
    color: var( var(--myDarkBlue));;
    text-align: center;
    
        font-size: clamp(8px, 1.2vw,23px);
        padding: 0px 0.5vw;
    
    
}
.secondImg
{
    width: 100%;
    
}
.secondItem
{
    display: block;
    
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
   /* width: 30%; */
}

.secondItemSeparator
{
        padding: 2px 2px;
        text-align: center;
        margin-right: 50px;
        justify-content: center;
        font-size: 22px;
        display: inline-block;
        color: white;
        text-decoration: none;
        color: rgb(50,51,69);
        align-items: center;

}

.secondImage
{
    width: 100%;
    height: 140px;
}

.secondItemTextUpper
{
    flex: 1;
    background-color: rgb(244,243,241);
    color: rgb(1, 4, 12);
    font-size: clamp(1px, 3vw, 30px);
    
    text-align: center;
    padding: 3%;
}

.secondItemTextDowner
{
    flex: 1;
    border-top: 1px solid lightgray;
    background-color: rgb(244,243,241);
    color: rgb(1, 4, 12);
    font-size: clamp(6px, 1.2vw,23px);
    text-align: center;
    padding: 3%;
    
}

.third
{
    background-color: var(--myDarkBlue); color: white; display: flex; gap: 2%; 

    /**
    border: 3px solid rgb(23, 30, 49);
    border-radius: 30px;
    margin: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 8px;**/
}

.thirdItem{
    outline: var(--myGolden) solid 3px; flex: 1; padding: 0.8vw;
    color: var( --myClara);
    font-size: 1vw;
}

.thirdItemImg
{
    height: 100px;
}
.tab{
    outline: var(--myGolden) solid 2px; float: left;  width: 2vw;height: 0px; margin: 5px 10px;
}
/** background-image: linear-gradient(to bottom right,  rgb(233, 229, 229), rgb(148, 156, 179));**/


.scrollableLogos
{
    display: flex;
    gap: 10px;

    overflow-x: auto;
    scroll-behavior: smooth;

    cursor: grab;
    user-select: none;

    padding: 30px 30px;
    gap: 10px;
     scrollbar-width: none;
}

.scrollableLogos::-webkit-scrollbar {
    display: none;
}

.scrollableLogos img {
    height: 100px;
    width: auto;
    padding: 0px 20px;
    flex-shrink: 0;
    pointer-events: none; 
}

.fourth
{
    display: flex; gap: 10%; font-size: 15px;
    white-space: nowrap;
    padding-right: 40px;
    color: var( --myClara);
}

.clientesParceiros{
    font-size: clamp(12px, 1.2vw,23px);
    color: rgb(3, 10, 29); padding: 0px 30px;  width: 100%;
}

footer
{
    background-color: var(--myDarkBlue);
    color: white;
    justify-content: space-between;
    align-items: center;
    display: block;
    padding: 20px 40px;
    font-size: 20px;
    position: sticky;
    
}

.footerDiv
{   
    padding: 40px;
    align-items: center;
    text-align: center;

}

.footerDivInfo
{   
    color: white;
    font-size: 25px;


}

.footerIcon
{
    width: 80px;
    height: 80px;
}

.firstRodape{
        padding-right:  50px;
    }


.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;

    background: #222;
    color: white;

    padding: 20px;
    padding-right: 40px;
    padding-left: 40px;
    border-radius: 10px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    z-index: 9999;

 outline: var(--myGolden) solid 2px; 
    
}

.cookie-banner.hidden {
    display: none;
}

.cookie-button
{
    border-radius: 40px;
    background-image: linear-gradient(to bottom right, rgb(24, 47, 112), rgb(1, 8, 27) );
    /**background-color: rgb(89, 181, 92);**/
    color: white;
    font-size: 20px;
    
    text-align: center;
    align-items: center;
    white-space: nowrap;
    display: flex;
    padding: 10px 30px;
    flex-shrink: 0;

    
}


@media (max-width: 1000px) {

    .cookie-banner
    {   
        
        font-size: 18px;
        gap: 0px;
        flex-direction: column;
    }
    .cookie-button
    {font-size: 18px;}
    .footer{
        padding: 20px 20px;
    }
    .firstMain
    {
        flex-direction: column;
        gap: 20px;
    }
    
    .firstTextPart
    {
        width: 90%;
        
    }
    .firstImg
    {
        width: 100%;
        height: 350px;
    }
    .firstRodape{
        flex-direction: column;
        
    }
    .firstRodapeTextDiv
{
    padding-left: 8px;
    padding-right: 8px;
    font-size: clamp(10px, 0.9vw,30px);
    color: var( --myClara);
    flex: 1;
}
.firstRodapeImg{
    height: 10vw;
}

.whatsappButton
{
    border-radius: 40px;
    background-image: linear-gradient(to bottom right, rgb(89, 181, 92), rgb(52, 117, 54) );
    /**background-color: rgb(89, 181, 92);**/
    color: white;
    font-size: 10px;
    text-align: center;
    align-items: center;
    white-space: nowrap;
    display: flex;
    padding: 0px 10px;
    flex-shrink: 0;

    
}

.whatsappImg{
    height: 30px;
    width: 30px;
    
}

.scrollableLogos{
    padding: 0px 10px;
    gap: 20px;
}

.scrollableLogos img {
    background-color: #fff;
    border-radius: 5px;
    height: 50px;
    width: auto;
    padding: 0px 0px;
    flex-shrink: 0;
    pointer-events: none; 
    
}

}

@media (max-width: 1500px) {
      .mynavimg
    {
        height: 100px;
    }
}

@media (max-width: 1200px) {
    
    .navitem{
        display: none;
        
        
        flex-direction: column;
    }
    .navbar{
        display: none;
        
        
        flex-direction: column;
    }

    .mynav
    {
        
        height: 100px;
       
    }

    .mynavimg
    {
        height: 80%;
    }

    .hamburger {
        display: block;
    }
    
    .secondDiv {
        
        
        flex-direction: column;
        padding: 2vw;
    }
    

    

    .third
    { 
        flex-direction: column;
        padding: 2vw;
        
        
    }
    
    .thirdItem
    {
        margin-top: 40px;
        font-size: 2vw;
        padding: 20px;
    }
    .thirdItemImg
{
    height: 100px;
}


     .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        right: 10px;

        flex-direction: column;
        background: var(--myDarkBlue);
        padding: 10px;
        border: 1px solid #ccc;
    }

    .nav-links.active {
        display: flex;
    }
    .navitem2{
        color: var(--myClara);
        text-decoration: none;
        padding: 20px 20px;
    }

}




.listaParceiros {
    margin: 30px 0 60px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}


.parceiro {
    width: calc(calc(100% / 5) - 25px);
    height: 100%;
    position: relative;
    padding: 20px 40px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    border-radius: 5px;
    margin-top: 25px;
}

.parceiro img{
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 450px) {
    .parceiro {
        padding: 10px 20px;
    }
}

@media screen and (max-width: 850px) {
    .parceiro {
        height: 120px;
        padding: 15px 30px;
    }
}

@media screen and (max-width: 1100px) {
    .parceiro {
        width: calc((100% / 4) - 25px);
    }
}