/* Fonts imports */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

:root {
/* Layout Colors */
    --standardGreen: #038145;
    --backgroundGreenMobile: #059152;
    --darkGreen: #02331D;
    

/* Font Colors */
--whiteFont: #FFFFFF;
--lightGreenFont: #8DC53E;
--greyFont: #666666; 
--greenOpacityLight: rgba(4, 129, 69, 0.6);

}








/* Global parameters */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    scroll-behavior: smooth;
  }

a{
    text-decoration: none;
}
 
ul {
    list-style: none;
}
  
hr{
    display: none;
}
.mobileOnly{
    display:none;
}








/* Header properties */
.headerNavBar{
    background-color: var(--standardGreen);
    height: 6rem;
    display: flex;
    justify-content: space-evenly;
    padding: 1rem 0.5rem;
    position: fixed;
    width: 100%;
}
.headerNavBar ul{
    display: flex;
    align-items: center;
    color: var(--whiteFont);
    font-size: 1.1rem;
    margin: 0;
    line-height: 25px;
    padding: 0;
}
.headerNavBar li{
    margin: 0 1.5rem;
    font-weight: 700;
    display: flex;
}
.headerNavBar a{
    color: var(--whiteFont);
    text-decoration: none;
}
.headerNavBar a:hover{
    color: var(--lightGreenFont);
}



/* Burger Menu */

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #101010;
}








/*seção Políticas*/
.firstSection{
    padding: 6rem;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
}

.politicaContent{
    color: var(--greyFont);
    max-width:50%
}
.title{
    color: var(--standardGreen);
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: flex;
    padding-top: 3rem;
    gap: 0.5rem;
    font-size: 1.2rem;
}
.firstSection p{
    margin-bottom: 1rem
}
.firstSection li{
     list-style-image: url(../assets/images/list-item.png);
     margin-left:1rem;
     margin-bottom: 1rem
}
strong{
    color:var(--standardGreen)
}

/*seção Orçamento*/
.sixthSection{
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-image: url(../assets/images/orcamento-bg.png);
    background-size: 100% 100%;
    color:white;
    padding: 2rem 5rem;
}

.orcamentoLeftSection{
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: left;
    margin-left: auto;
}
.orcamentoTitle {
    display: flex;
    flex-direction:row;
    text-transform: uppercase;
    gap: 0.5rem;
    font-size: 1.2rem;
    margin-top:1rem
}

.orcamentoText{
    margin:2rem 0
}
.orcamentoText h2{
    text-transform: uppercase
}
.orcamentoTelefone{
    margin: 1rem 0
}
.orcamentoTelefone img{
    margin-right: 0.5rem
}
.orcamentoEmail img{
    margin-right: 0.5rem
}
.orcamentoEmail a{
    color: white;
    text-decoration: underline
}

#endereco{
    margin-top:1rem
}

.rounded-edges {
    border-radius:0.5rem
}






/* Button styles */


/* BTN Orçamento Branco */

#btnOrcamentoWhite{
    margin-top: 2rem;
}
#btnOrcamentoWhite a{
    display: inline-block;
    gap: 0.5rem;
    color: var(--standardGreen);
    font-weight: 700;
    background-color: white ;
    padding: 0.5rem 4rem;
    border-radius: 2rem;
    border: 2px solid #038145;
    transition: background-color 0.5s linear, border 05.2 linear ;
}
#btnOrcamentoWhite a:hover{
    background-color: var(--standardGreen);
    transition: background-color 0.5s linear;
    border: 2px solid white;
  
}

#btnOrcamentoWhite span{
    font-size: 1.5rem;
    transition: color 0.5s
}

#btnOrcamentoWhite a:hover span{
    color: white;
    transition: background-color 0.5s linear;
}

@keyframes changeBtnOrcamentoImgWhite {
    0% {
      opacity: 1;
    }
  
    50% {
      opacity: 0.5;
    }
  
    100% {
      opacity: 1;
      content: url("../assets/images/wpp-icon.png")
    }
  }

#btnOrcamentoWhite a:hover img{
    animation: changeBtnOrcamentoImgWhite 0s linear forwards;
}





/* footer */
.footerContainer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 2rem;
}

.footerContainer a{
    color: var(--greyFont);
    text-decoration: none;
}
.leftFooterSection{
    display: flex;
    color: var(--greyFont);
    justify-content: right;
    align-items: center;
    padding-top: 2rem;
}
.leftFooterContent{
    display: flex;
    justify-content: left;
    align-items: flex-start;
    flex-direction: column;
    width: 60%;
}
.leftFooterSection p{
    margin-top:1rem;
 
}
.rightFooterSection{
    display: flex;
    color: var(--greyFont);
    justify-content: right;
    align-items: center;
    padding-top: 2rem;
}

.rightFooterContent{
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    margin-left: 0;
    margin-right: 50%;
}
#footerUL{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}
.footerIcons{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: flex-end;
    margin-top: 1rem;
}
footer li{
    margin-bottom: 1rem;
}







/* Responsive Media Queries */

@media (max-width: 767px){
    section,footer{
            overflow: hidden;
            white-space: wrap;
            word-break: break-word;
    }
    .mobileOnly{
        display:block;
    }
    
    hr{
        display: block;
        width: 90%;
        border: 1px solid rgba( 5,145,82, 0.3);
    }
    .displayNoneOnMobile{
        display: none;
    }
    
    .headerTelefone{
        background-color: var(--darkGreen);
        color: white;
        padding: 0.5rem 1.5rem;
        font-size:1rem;
        text-align:right;
    }
    /* Header properties */
    .headerNavBar{
        background-color: var(--backgroundGreenMobile);
        height: 4rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1rem;
        position: initial;
    }
    #astralHeaderLogo{
    display: none
    }
    
    .hamburger {
            display: block;
            cursor: pointer;
           
    }
    .hamburger span{
        background-color: white;
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
      
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 5rem;
        flex-direction: column;
        background-color: var(--standardGreen);
        color: white;
        width: 100%;
        border-radius: 10px;
        text-align: center;
        transition: 0.3s;
        box-shadow:
            0 10px 27px rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu.active {
        left: 0;
        top:6rem;
        display: flex;
        align-items: flex-start;
    }
    
    
    .headerNavBar li {
        margin: 1rem;
        font-weight: 700;
        display: flex;
        text-transform: uppercase;
        border-bottom: 1px white solid;
        width: 90%;
    }
    
    .headerNavBar a {
        display: flex;
        flex-direction: row;
        color: white;
        text-decoration: none;
        padding-bottom: 0.5rem;
        width: 100%;
    }
    .headerNavBar a:hover{
        color: var(--lightGreenFont);
    }
    
    .firstSection {
        padding: 0rem;
        display: flex;
        flex-direction: column;
        margin-left: auto;
        margin-right: auto;
    }
    .politicaContent{
        max-width: initial;
    }
   
    .title img{
        display: none;
    }
    .title{
        display: flex;
        flex-direction: column;
        align-items: center
    }


    #bannerContent h1 {
        font-size: 2rem;
        margin-bottom: 4rem;
    }
    
    #btnOrcamento {
        margin-top: 4rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #btnOrcamento a{
        padding: 0.5rem;
        width: 100%;
        
    }
    #btnOrcamento span {
        font-size: 1rem;
    }
    
 
    
    .sixthSection{
        display: flex;
        flex-direction: column;
        background-color: var(--backgroundGreenMobile);
        background-image: initial;
        padding: 2rem;
    }
    .orcamentoLeftSection{
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    .orcamentoTitle{
        font-size: 0.8rem;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-left: 0;
    }
    .orcamentoTitle img{
        display: none;
    }
    .orcamentoTitle hr{
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    .orcamentoText{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .orcamentoRightSection{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    #botaoOrcamentoWhite{
        margin-left:-20px
    }
    
    #btnOrcamentoWhite a {
        gap: 1rem;
        display: flex;
        padding: 1rem;
        border-radius: 2rem;
    }
    
    #btnOrcamentoWhite span {
        font-size: 1rem;
        margin-right: 1rem;
    }
    
    iframe{
        width: 350px;
        height: 250px;
    }
    #endereco{
        text-align: center;
    }
    #endereco img{
        display: none;
    }
    
    .footerContainer {
        display: flex;
        flex-direction: column;
        padding: 0;
    }
    .leftFooterContent p{
        display: none;
    }
    .leftFooterSection {
        justify-content: left;
        align-items: center;
        padding-top: 2rem;
        padding-left: 1rem;
    }
    .rightFooterContent {
    
        align-items: flex-start;
        margin-bottom: 1rem;
        
    }
    #footerUL {
        justify-content: left;
        align-items: flex-start;
    }
    .footerIcons {
        align-items: flex-start;
    
    }
    #footerInfosMobile{
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--backgroundGreenMobile);
        color: var(--whiteFont);
        padding: 1rem;
        font-weight: 400;
        font-size: 10px;
    }
    
}

@media (min-width:768px) and (max-width:1365px){
    
section,footer{
        overflow: hidden;
        white-space: wrap;
        word-break: break-word;
}
.mobileOnly{
    display:block;
}

hr{
    display: block;
    width: 90%;
    border: 1px solid rgba( 5,145,82, 0.3);
}




.headerTelefone{
    background-color: var(--darkGreen);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size:1rem;
    text-align:right;
}
/* Header properties */
.headerNavBar{
    background-color: var(--backgroundGreenMobile);
    height: 8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem;
    position: initial;
}
#astralHeaderLogo{
display: block;
margin-left: 2rem;
}
#astralHeaderLogoMobile{
    display: none
}
.hamburger {
        display: block;
        cursor: pointer;
       margin-right: 2rem
}
.hamburger span{
    background-color: white;
}
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
  
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-menu {
    position: fixed;
    left: -100%;
    top: 5rem;
    flex-direction: column;
    background-color: var(--standardGreen);
    color: white;
    width: 100%;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    box-shadow:
        0 10px 27px rgba(0, 0, 0, 0.05);
}

.nav-menu.active {
    left: 0;
    top:10rem;
    display: flex;
    align-items: flex-start;
}


.headerNavBar li {
    margin: 1rem;
    font-weight: 700;
    display: flex;
    text-transform: uppercase;
    border-bottom: 1px white solid;
    width: 90%;
}

.headerNavBar a {
    display: flex;
    flex-direction: row;
    color: white;
    text-decoration: none;
    padding-bottom: 0.5rem;
    width: 100%;
}
.headerNavBar a:hover{
    color: var(--lightGreenFont);
}



/* Políticas */
.firstSection {
    padding: 0rem;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
}
.politicaContent{
    max-width: initial;
    font-size: 1.5rem
}

.title img{
    display: none;
}
.title{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2rem;
}






/* ORÇAMENTO */
.sixthSection{
    display: flex;
    flex-direction: column;
    background-color: var(--backgroundGreenMobile);
    background-image: initial;
    padding: 2rem;
    margin-top: 1rem
}
.orcamentoLeftSection{
    width: 100%;
    justify-content: center;
    align-items: center;
}
.orcamentoTitle{
    font-size: 2rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 0;
}
.orcamentoTitle img{
    display: none;
}
.orcamentoTitle hr{
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 700px;
}
.orcamentoText{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.orcamentoText h2{
    font-size: 3rem
}
.orcamentoTelefone{
    font-size: 2rem;
}
.orcamentoEmail{
    font-size: 2rem;
}
.orcamentoRightSection{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


#btnOrcamentoWhite a {
    gap: 1rem;
    display: flex;
    padding: 1rem;
    border-radius: 2rem;
    padding: 1rem 4rem;
}
#btnOrcamentoWhite img{
    width: 44px;
}

#btnOrcamentoWhite span {
    font-size: 2rem;
    margin-right: 1rem;
}

iframe{
    width: 700px;
    height: 450px;
}
#endereco{
    text-align: center;
    font-size: 1.5rem;
}
#endereco img{
    display: none;
}


/*Footer*/
.footerContainer {
    display: flex;
    flex-direction: column;
    padding: 0;
}
.leftFooterContent p{
    display: none;
}
.leftFooterSection {
    justify-content: left;
    align-items: center;
    padding-top: 2rem;
    padding-left: 2rem;
}
.rightFooterSection {
    justify-content: left;
    padding-left: 2rem;
}
.rightFooterContent {

    align-items: flex-start;
    margin-bottom: 1rem;
    
}
#footerUL {
    justify-content: left;
    align-items: flex-start;
}
#footerUL a{
    font-size: 1.5rem;
    font-weight: 600;
}
.footerIcons {
    align-items: flex-start;

}
#footerInfosMobile{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--backgroundGreenMobile);
    color: var(--whiteFont);
    padding: 1rem;
    font-weight: 400;
    font-size: 10px;
}

}
    
@media (min-width: 1366px ){
    .politicaContent{
        max-width: initial;
    }
    .orcamentoLeftSection{
        margin-left: 10%;
    }
    #btnOrcamentoWhite{
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        
    }
    #btnOrcamentoWhite a{
        padding: 0.5rem 2rem;
    }
    #btnOrcamentoWhite span{
        font-size: 1.2rem;
    }
}
    