
  
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    transition: all 0.3s ease;
    z-index: 1000;


        #hamburger{
            display: none;
        }
        #logo-anchor{
            width: 13.5%;
            height: 65%;
            img{
                width: 100%;
                height: 100%;
            }
        }


        ul{
            display: flex;
            gap: 20px;

                a{
                    color: var(--color-whiteice);
                    text-decoration: none;
                    font-family: "MontBold";
                }
        }

        button{
            gap: 10px;

                img{
                    width: 25px;
                    height: 25px;
                }
        }

        #navMenu{
            display: none;
        }
}
  
header.shrink {
    height: 60px;
    background-color: var(--color-primary);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

#Inicio {
    position: relative; 
    padding-top: 90px;
    overflow: hidden;
    background-color: var(--color-primary);

    div {
        width: 70%;
        display: flex;
        justify-self: flex-start;
        justify-content: center;
        flex-direction: column;
        height: 100.2%;
        background-image: url('/assets/Images/Forma_one.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative; /* fica relative mesmo */
        z-index: 2;

            h1{
                padding-left: 20px;
                font-family: "MontBold";
                color: var(--color-primary);
                font-size: 45px;
            }

            p{
                width: 80%;
                padding-left: 20px;
                font-size: 18px;
                color: var(--color-text);
                font-weight: 500;
                font-family: "Open Sans";
                margin-bottom: 15px;
            }

            button{
                margin-left: 20px;
                background-color: var(--color-primary);
                width: 330px;
                height: 50px;
                border: none;
                border-radius: 10px;
                color: #f0f0eb;
                font-family: "MontBold";
                font-size: 2rem;
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 10px;
            }
            
            button img{
                width: 25px;
                height: 25px;
            }
    }
}

#Servicos{
    display: flex;
    align-items: center;   
    height: auto;
    flex-direction: column;

        h1{
            margin-top: 16px;
            font-family: "MontBold";
            color: var(--color-whiteice);
            font-size: 30px;  
        }

        div{
            margin-top: 20px;
            gap: 20px;
            width: 100%;
            height: auto;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;

                article{
                    margin-bottom: 20px;
                    width: 350px;
                    height: auto;
                    background-color: var(--color-whiteice);
                    overflow: hidden;
                    border-radius: 20px;
                    flex-direction: column;
                    align-items: center;
                    display: flex;

                        &:hover img{
                            transform: scale(1.1);
                        }
                    
                        img{
                            width: 100%;
                            height: 40%;
                            transition: transform 0.2s ease;
                            position: relative;
                            z-index: 1;
                        }

                        h5{
                            top: -0.2rem;
                            padding: 5px;
                            position: relative;
                            z-index: 2;
                            background-color: var(--color-text);
                            width: 100%;
                            color: var(--color-whiteice);
                            text-align: center;
                            font-size: 1.3rem;
                            font-family: "MontRegular";
                        }

                        p{
                            width: 90%;
                            justify-self: center;
                            text-align: center;
                            padding: 10px;
                            font-family: "Open Sans";
                            margin-bottom: 10px;
                        }

                        button{
                            background-color: var(--color-primary);
                            width: 70%;
                            height: 40px;
                            border: none;
                            border-radius: 10px;
                            color: #f0f0eb;
                            font-family: "MontBold";
                            font-size: 1.3rem;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            gap: 10px;
                            margin-bottom: 10px;
                                img{
                                    width: 25px;
                                    height: 25px;
                                }
                        }
                }
        }
}

#Divider{
    background-color: var(--color-whiteice);
    height: auto;
    padding: 20px;
    flex-direction: column;
    align-items: center;

        img{
            width: 15%;
            margin-bottom: 10px;
        }

        p{
            font-family: "MontRegular";
            color: var(--color-text);
            font-size: 1.2rem;
        }
        button{
            margin-top: 15px;
            background-color: var(--color-primary);
            color: var(--color-whiteice);
            gap: 10px;

                img{
                    position: relative;
                    top: 4px;
                    width: 25px;
                }
        }
}

#QuemSomos{
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;

        div{
            display: flex;
            flex-direction: column;
            justify-content: center;
            width: 50%;
            height: 95%;

                h2{
                    font-family: "MontBold";
                    color: var(--color-whiteice);
                    font-size: 3rem;
                    margin-bottom: -1px;
                }

                h6{
                    font-family: "MontRegular";
                    color: var(--color-whiteice);
                    font-size: 1.1rem;
                    margin-bottom: 15px;
                }

                p{
                    font-family: "Open Sans";
                    color: var(--color-whiteice);
                    margin-bottom: 25px;
                }
                button{
                    width: 55%;
                    gap: 12px;

                    img{
                        width: 25px;
                        height: 25px;
                    }
                }
        }

        #image-carousel {
            position: relative;
            width: 43%;
            height: 90%;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
          }
          
          #image-carousel img {
            max-width: 100%;
            max-height: 100%;
            object-fit: cover;
            border-radius: 8px;
          }
          
          .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            color: white;
            background: rgba(0, 0, 0, 0.3);
            border: none;
            padding: 8px 12px;
            cursor: pointer;
            z-index: 10;
          }
          
          #prevBtn {
            left: 10px;
          }
          
          #nextBtn {
            right: 10px;
          }
}

#Feedbacks {
    background-color: var(--color-whiteice);
    width: 100%;
    height: auto;
    justify-content:start;
    gap: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;

        h1{
            font-family: "MontBold";
            color: var(--color-primary);
            font-size: 2rem;
            margin-top: 20px;
            margin-bottom: 20px;
        }
  
    .carousel-btn {
      position: absolute;
      top: 55%;
      background-color: transparent;
      border: none;
      font-size: 2rem;
      color: var(--color-primary);
      cursor: pointer;
      z-index: 10;
    }
  
    #prevBtn2 {
      left: 0;
      margin-left: 20px;
    }
  
    #nextBtn2 {
      right: 0;
      margin-right: 20px;
    }
  
    #feedback-wrapper {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      width: 100%;
    }
  
    article {
      display: flex;
      flex-direction: column;
      width: 30%;
      min-width: 250px;
      height: auto;
  
      #container-stars {
        justify-content: flex-end;
        display: flex;
        width: auto;
        height: auto;
        margin-bottom: 5px;
        margin-top: 15px;
  
        img {
          width: 8%;
        }
      }
  
      #container-main {
        justify-content: end;
        gap: 7px;
        display: flex;
        width: 100%;
        height: auto;
  
        h1 {
          margin-top: -18px;
          font-size: 3.5rem;
          color: var(--color-primary);
        }
  
        #container-texts {
          justify-content: flex-end;
          display: flex;
          width: 100%;
          flex-direction: column;
  
          p {
            width: 100%;
            overflow-wrap: break-word;
            word-break: break-word;
            overflow: hidden;
            font-family: "Open Sans";
          }
  
          h2 {
            font-family: "MontMedium";
            color: var(--color-primary);
            margin-top: 10px;
            margin-bottom: 25px;
          }
        }
      }
    }
  }
  
  #Contato{
    display: flex;
    justify-content: center;
    align-items: center;

    iframe{
        display: none;
    }
    form {
        display: flex;
        justify-content: center;
        flex-direction: column;
        width: 45%;
        gap: 20px;
        margin-right: 70px;
      }
      h1{
        color: var(--color-whiteice);
        font-family: "MontMedium";
        margin-left: 11px;
        font-size: 2rem;
      }
      input{
        width: 40%;
        height: 50px;
        padding-left: 10px;
        margin-left: 10px;
        margin-bottom: 14px;
        border: none;
        border-radius: 4px;
        font-size: 16px;
      }
      button {
        background: var(--color-whiteice);
        color: var(--color-primary);
        cursor: pointer;
        font-family: "MontBold";
        font-size: 1.3rem;
        border: none;
        width: 110px;
        margin-left: 10px;
        padding: 5px;
      }
      textarea{
        width: 95%;
        margin-left: 10px;
        font-size: 16px;
      }

      #container-six{
        width: 50%;
        display: flex;
        margin-left: 100px;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
            img{
                width: 50%;
                margin-bottom: 20px;
                position: relative;
            }
            h2{
                color: var(--color-whiteice);
                font-family: "MontMedium";
                margin-left: 11px;
                font-size: 2rem;
            }
            #container-text-six{
                display: flex;
                top: 0.4rem;
                height: auto;
                width: 90%;
                justify-content: center;
                align-items: center;
                position: relative;
                left: 0.8rem;
                

                    #icons{
                        display: flex;
                        flex-direction: column;
                        width: 5%;
                        img{
                            width: 100%;
                            margin-bottom: 10px;
                        }
                    }
                    #contatos{
                        display: flex;
                        overflow: none;
                        justify-content: center;
                        flex-direction: column;
                        width: 100%;
                        h2{
                            color: var(--color-whiteice);
                            top: -0.15rem;
                            font-family: "Open Sans";
                            font-size: 1.2rem;
                            position: relative;
                            margin-bottom: 10px;
                        }
                    }
            }
      }
  }

  footer{
        width: 100%;
        background-color: var(--color-whiteice);
        height: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
            p{
                color: var(--color-text);
                font-size: 0.7rem;
                font-family: "MontRegular";
                margin-bottom: 5px;
            }
    }
#video-background{
    justify-self: end;
    width: 50%;
    height: 100%;
    object-fit: cover;
    position: absolute; 
    right: 0;
    z-index: 1;
}

#video-background-android{
    display: none;
}


@media (max-width: 768px){

      footer{
        height: 2rem;
            p{
                font-size: 0.4rem;
                margin-bottom: 0px;
                padding: 5px;
            }
    }
    header{

        #logo-anchor{
            width: 55%;
            height: 66%;
        }

        ul{
            display: none;
        }


        #container-hamburguer{
            display: flex;
            width: 10%;
            justify-content: flex-end;

                #hamburger{
                    display: flex;

                        button{
                            background-color: transparent;
                            border: none;
                            color: var(--color-whiteice);
                            font-size: 3.3rem;
                            text-align: center;
                            position: relative;
                            z-index: 0;
                }
            }
        #navMenu {
            display: flex;
            position: fixed;
            align-items: flex-end;
            top: 0;
            right: 0;
            width: 155px;
            height: 100vh;
            background: var(--color-primary);
            color: white;
            flex-direction: column;
            gap: 10px;
            padding: 20px;
            z-index: 5;
            opacity: 0;          
            transform: translateX(100%); 
            pointer-events: none; 
            transition: all 0.4s ease;
              .a{
                color: white;
                text-decoration: none;
              }
              button{
                border: none;
                background-color: transparent;
                color: var(--color-whiteice);
                font-size: 2.3rem;
              }
          }

          #navMenu.open {
            opacity: 1;            
            transform: translateX(0);
            pointer-events: auto; 
          }
        }

        .button-style{
            display: none;
        }
    }

    #Inicio{
        flex-direction: column-reverse;

            div{
                width: 100%;
                height: auto;
                justify-content: center;
                align-items: center;
                background-image: none;
                background-color: var(--color-whiteice);

                    h1{
                        margin-top: 10px;
                        font-size: 1.7rem;
                        padding-left: 0;
                    }
                    
                    p{
                        font-size: 1.03rem;
                        padding-left: 0;
                        width: 80%;
                        text-align: center;
                    }   

                    button{
                        width: 80%;
                        margin-left: 0;
                        font-size: 1.5rem;
                        margin-bottom: 20px;
                    }

            }
    }
    #video-background-android{
        display: flex;
        width: 100%;
        height: 100%;
    }
    #video-background{
        display: none;
    }

    #Servicos{
    
            h1{
                font-size: 1.2rem;
            }
    
                div{
    
                        article{
                            width: 300px;  

                                button{
                                    margin-bottom: 20px;
                                }
                        }
    
                }       
    }

    #Divider{

            img{
                margin-top: 15px;
                width: 50%;
            }

            p{
                font-size: 0.6rem;
            }

            button{

                img{
                    top: -3px;
                }
            }
    }
    #QuemSomos{
        display: flex;
        width: 100%;
        height: auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    
            div{
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                width: 95%;
                height: auto;
    
                    h2{
                        font-family: "MontBold";
                        color: var(--color-whiteice);
                        font-size: 2rem;
                        margin-bottom: -1px;
                    }
    
                    h6{
                        font-family: "MontRegular";
                        color: var(--color-whiteice);
                        font-size: 0.7rem;
                        margin-bottom: 15px;
                    }
    
                    p{
                        font-family: "Open Sans";
                        color: var(--color-whiteice);
                        margin-bottom: 20px;
                        text-align: center;
                    }
                    button{
                        width: 90%;
                        font-size: 1.1rem;
                        gap: 12px;
                        margin-bottom: 25px;
    
                        img{
                            width: 25px;
                            height: 25px;
                        }
                    }
            }
            #image-carousel {
                position: none;
                width: 95%;
                height: 15rem;
                margin-top: 20px;
                display: flex;
                justify-content: center;
                align-items: center;
                overflow: hidden;
                margin-bottom: -20px;
              }
    }

    #Feedbacks{

            h1{
                font-size: 1.3rem;
                margin-left: 7px;
            }
    }

    #Contato{
        flex-direction: column;
        height: auto;
        align-items: center;

        iframe{
            display: flex;
            margin-bottom: 30px;
        }
        form {
            justify-content: center;
            align-items: center;
            flex-direction: column;
            width: 90%;
            gap: 20px;
            margin-right: 0px;
          }
          #container-separador{
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
          }
          h1{
            font-size: 1.5rem;
          }
          input{
            margin-left: 0px;
            margin-bottom: 14px;
            font-size: 13px;
          }
          button {
            margin-bottom: 20px;
          }
          textarea{
            width: 95%;
            margin-left: 10px;
            font-size: 16px;
          }
    
          #container-six{
            width: 50%;
            display: flex;
            margin-top: 20px;
            margin-left: 0px;
            justify-content: center;
            align-items: center;
            flex-direction: column;
                img{
                    width: 100%;
                    margin-bottom: 1px;
                    position: relative;
                }
                h2{
                    display: none;
                }
                #container-text-six{
                    display: flex;
                    top: 0.5rem;
                    height: auto;
                    width: 90%;
                    justify-content: center;
                    align-items: center;
                    position: relative;
                    margin-bottom: 20px;
    
                        #icons{
                            display: none;
                        }
                        #contatos{
                            display: none;
                            h2{
                                color: var(--color-whiteice);
                                top: -0.15rem;
                                font-family: "Open Sans";
                                font-size: 0.8rem;
                                position: relative;
                            }
                        }
                }
          }
      }
}
