* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}


.todo-menu {
    background-color: black;
    width: 100%;
    padding: 20px 12px;
    position: sticky;
    top: 0;
    z-index: 1;
    height: 80px;
    
}

.nav-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
}

.logo {
    width: 120px;
    height: auto;
}

.btn-mobile {
    background: none;
    border: none;
    cursor: pointer;
    display: block;
}

.btn-mobile i {
    font-size: 1.5rem;
    color: white;
}

.nav-list ul {
    display: none;
    list-style: none;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    position: absolute;
    top: 50px;
    left: 0;
    padding: 1rem;
    background-color: black;
}

.nav-list .show {
    display: flex;
}

.nav-list ul li {
    text-align: center;
    margin-bottom: 5px;
}

.nav-list ul li a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
}

.nav-list ul li a:hover {
    color: rgb(201, 180, 146);
    border-bottom: 1px solid rgb(216, 184, 0);
}

body {
    min-height: 100%;
}

@media (min-width:769px) {

    .logo {
        width: 160px;
        display: block;
    }

    .btn-mobile {
        display: none;
    }

    .nav-list ul {
        display: flex;
        flex-direction: row;
        align-items: center;
        position: static;
        gap: 2rem;
        width: auto;
    }

}

.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
  
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

.text{
    font-size: 20px;
}



.content {
    background-image: url(../assets/mobile.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height:100svh;
    flex-direction: column;

}

.but {
    margin-top: 520px; /*depois alterar quando centralizar o fundo*/
        height: 60px;
        width: 170px;
        padding: 12px 24px;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
}

 .but:hover {
        background-color: #f0c800;
        transform: scale(1.05);
    }

    .but a {
        color: black;
        font-size: 15px;
        font-weight: bold;
        text-decoration: none;
    }

    .but a:hover {
        color: black;
        font-size: 15px;
        font-weight: bold;
        text-decoration: none;
    }


.sobre{
    margin-top: 50px;
    width: 100%;
    min-height:100vh ;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sobre h1{
    margin-top: 30px;
    margin-bottom: 40px;
    font-size: 40px;
    
    
}


.sobre span{
    color: #f0c800;
    border-bottom: 1px solid;
}

.center{
    width: 70%;
    height: auto;
    margin-bottom: 25px;
    background-color: #f7f7f3;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 12px;
    padding: 15px;
}

.center p{
    font-size: 20px;
}

.images{
    width: 100%;
    display: flex;
    margin-bottom: 40px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 0;
}

.img-sobre{
    width: 70%;
    height: 260px;
     border-radius: 12px;
     margin-bottom: 20px;
     transition: 1s ease;
     opacity: 0.90;
}

.img-sobre:hover{
    transform: scale(1.05);
    opacity: 1;
}


.img-sobre2{
    width: 70%;
    height: 260px;
     border-radius: 12px;
     margin-bottom: 20px;
     transition: 1s ease;
     opacity: 0.85;
}

.img-sobre2:hover{
    transform: scale(1.05);
    opacity: 1;
}


.carrossel{
    
    width: 100%;
    min-height:100vh ;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   /* padding: 20px 15px;*/
    overflow: hidden;
    background-color: #f7f7f3;
   pointer-events: auto;
    
}

.carrossel h2{
margin-top: 50px;
    margin-bottom: 15px;
    font-size: 40px;
    max-width: 60%;
    text-align: center;
}

.carrossel h2 span{
    color: #f0c800;
    font-size: 40px;
}

.track {
  display: flex;
  align-items: center;
  height: 220px;
  margin-top: 20px;
  margin-bottom: 20px;
  gap: 40px;
  animation: slide 25s linear infinite;
  overflow-x: auto;
  scroll-behavior: smooth;
  cursor: grab;
}


.track:active {
  cursor: grabbing;
}

/* esconde scrollbar */
.track::-webkit-scrollbar {
  display: none;
}

.track a{
    pointer-events: auto;
    transition: 1s ease;
}

.track a:hover{
    
     transform: scale(1.04);

}

.hr2{
   
     width: 88%;
    background-color: #f0c800;
    border: 1px solid #f0c800;
    
   
}

.hrbaixo{
   
     width: 88%;
    background-color: #f0c800;
    border: 1px solid #f0c800;
   
}

.track img {
  width: 300px;
  height: 200px;
  border: none;
  border-radius: 13px;
  cursor: pointer;
   pointer-events: auto;
  
}




@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}




.office{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.office h2{
    font-size: 27px;
}

.office-img2{
    width: 90%;
    border-radius: 13px;
}

.but-2{
    margin-top: 50px;
    margin-bottom: 50px;
     height: 60px;
        width: 170px;
        padding: 12px 24px;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
}

.but-2:hover {
        background-color: #f0c800;
        transform: scale(1.05);
    }

    .but-2 a {
        color: black;
        font-size: 15px;
        font-weight: bold;
        text-decoration: none;
    }

    .but-2 a:hover {
        color: black;
        font-size: 15px;
        font-weight: bold;
        text-decoration: none;
    }

.history{
    margin-top: 50px;
    width: 100%;
    min-height:100vh ;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.h2-equipe{
    margin-bottom: 30px;
    font-size: 27px;
    border-bottom: #f0c800;
}

.pit-esquerda{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.title{
    text-align: center;
    margin-bottom: 30px;
}

.h1-titulo2{
    margin-top: 60px;
    margin-bottom: ;
    
}

.h1-titulo{
    
    margin-bottom: 50px;
    border-bottom: 2px solid #f0c800;
}

.title h2{
    font-size: 20px;
    margin-bottom: 6px;
}

.title span{
    margin-bottom: 20px;
  
   
}

.foto{
    width: 85%;
    border-radius: 12px;
    height: 400px;
    margin-bottom: 30px;
     border-radius: 12px; 
     transition: 1s ease;
     opacity: 0.97;
}

.foto:hover{
    transform: scale(1.05);
    opacity: 1;
}

.texto{
    text-align: center;
    width: 88%;
    margin-bottom: 20px;
    background-color: #f7f7f3;
    padding: 15px 10px;
    border-radius: 12px;
}

.texto p{
    text-align: justify;
    font-size: 20px;
}

.hr1{
    width: 88%;
    background-color: #f0c800;
    border: 1px solid #f0c800;
    margin-top: 20px;
    margin-bottom: 20px;
}

.but-history{
     margin-top: 40px;
     margin-bottom: 50px;
     height: 60px;
        width: 170px;
        padding: 12px 24px;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
}

.but-history:hover {
        background-color: #f0c800;
        transform: scale(1.05);
    }

    .but-history a {
        color: black;
        font-size: 15px;
        font-weight: bold;
        text-decoration: none;
    }

    .but-history a:hover {
        color: black;
        font-size: 15px;
        font-weight: bold;
        text-decoration: none;
    }

    .footer {
  background: #000000;
  color: #fff;
  font-family: "Poppins", sans-serif;
  padding: 40px 20px 20px;
  
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.footer-col h3 {
  font-size: 24px;
  color: #f0c800;
  margin-bottom: 10px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 12px;
  border-bottom: 2px solid #f0c800;
  display: inline-block;
  padding-bottom: 4px;
}

.footer-col p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.5;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.7;
  transition: 0.3s;
  cursor: default;
}

.footer-col ul li:hover {
  opacity: 1;
  color: #f0c800;
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.8;
}

.footer-contact-item i {
  color: #f0c800;
}

.footer-socials {
  display: flex;
  gap: 10px;
  font-size: 20px;
}

.footer-socials a {
  color: #f0c800;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: #fff;
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  font-size: 13px;
  opacity: 0.6;
  padding-top: 15px;
  border-top: 1px solid #f0c800;
}




/* FADE IN SCROLL */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}



/*RESPONSIVIDADE DESKTOP*/

@media (min-width:769px) {
    .content {
        background-image: url(assets/card.png);
        background-position: center;
        background-size: cover;
        background-position: center;
        padding-top: 96px;
        min-height: 100vh;
        display: flex;

    }

    .but {
       margin-top: 450px;
       margin-bottom: 50px;
        height: 60px;
        width: 170px;
        padding: 12px 24px;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease; 
    }

    .but:hover {
        background-color: #f0c800;
        transform: scale(1.05);
    }

    .but a {
        color: black;
        font-size: 15px;
        font-weight: bold;
        text-decoration: none;
    }

    .but a:hover {
        color: black;
        font-size: 15px;
        font-weight: bold;
        text-decoration: none;
    }

/*SOBRE*/

.sobre{
    margin-top: 50px;
    width: 100%;
    min-height:100vh ;
    display: flex;
    align-items: center;
    flex-direction: column;
    
}

.sobre h1{
    margin-top: 30px;
    margin-bottom: 50px;
    font-size: 40px;
    
}


.sobre span{
    color: #f0c800;
    border-bottom: 1px solid;
}

.center{
    width: 70%;
    height: auto;
    background-color: #f7f7f3;
    display: flex;
    align-items: center;
    border-radius: 12px;
    padding: 15px;
}

.center p{
    font-size: 20px;
}

.images{
    margin-top: 20px;
    margin-bottom: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    flex-direction: row;
    gap: 30px;
}

.img-sobre{
    width: 34%;
    
    height: 380px;
     border-radius: 12px;
     margin-bottom: 20px;
     transition: 1s ease;
     opacity: 0.85;
     
}

.img-sobre:hover{
    transform: scale(1.05);
    opacity: 1;
}


.img-sobre2{
   
    width: 34%;
    height: 380px;
     border-radius: 12px;
     margin-bottom: 20px;
     transition: 1s ease;
     opacity: 0.85;
}

.img-sobre2:hover{
    transform: scale(1.05);
    opacity: 1;
}

.carrossel{
    
    width: 100%;
    min-height:100vh ;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   /* padding: 20px 15px;*/
    overflow: hidden;
    background-color: #f7f7f3;
   pointer-events: auto;
   background: (180deg, #f7f7f3, #e9e9e4);
    
}

.carrossel h2{
  margin-top: 80px;
    margin-bottom: 30px;
    color: rgba(0, 0, 0, 0.9);
    font-weight: bold;
}

.carrossel h2 span{
    color: #f0c800;
    font-size: 40px;
}

.track {
  display: flex;
  gap: 40px;
  animation: slide 25s linear infinite;
  pointer-events: auto !important;
  
    margin-bottom: 35px;
    margin-top: 35px;
}

.track a{
    pointer-events: auto;
}

.hr2{
   
     width: 88%;
    background-color: #f0c800;
    border: 1px solid #f0c800;
    
   
}

.hrbaixo{
   
     width: 88%;
    background-color: #f0c800;
    border: 1px solid #f0c800;
   
}

.track a{
    pointer-events: auto;
}

.track img {
  width: 300px;
  height: 200px;
  border: none;
  border-radius: 13px;
  cursor: pointer;
   pointer-events: auto;
   
  
}



@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}




.office{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.office h2{
    
    
    
}
.office-img2{
    width: 70%;
    border-radius: 13px;
}

.but-2{
    margin-top: 50px;
    margin-bottom: 50px;
     height: 60px;
        width: 170px;
        padding: 12px 24px;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
}

.but-2:hover {
        background-color: #f0c800;
        transform: scale(1.05);
    }

    .but-2 a {
        color: black;
        font-size: 15px;
        font-weight: bold;
        text-decoration: none;
    }

    .but-2 a:hover {
        color: black;
        font-size: 15px;
        font-weight: bold;
        text-decoration: none;
    }

.h1-titulo2{
    margin-top: 60px;
    margin-bottom: 40px;
    
}
    .history{
    margin-top: 50px;
    width: 100%;
    min-height:100vh ;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.pit-esquerda{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.title{
    text-align: center;
    margin-top: 30px;
    margin-bottom: 50px;
}

.title h1{
    margin-bottom: 10px;
}

.title span{
    margin-bottom: 20px;
  
   
}

.foto{
    width: 60%;
    border-radius: 13px;
    height: 600px;
    object-fit:cover ;
    margin-bottom: 40px;
     border-radius: 12px; 
     transition: 1s ease;
     opacity: 0.95;
}

.foto:hover{
    transform: scale(1.05);
    opacity: 1;
}

.texto{
    text-align: center;
    width: 60%;
    height: auto;
    margin-bottom: 20px;
    background-color: #f7f7f3;
    padding: 20px 20px;
}

.texto p{
    text-align: justify;
    font-size: 20px;
}

.hr1{
    width: 88%;
    background-color: #f0c800;
    border: 1px solid #f0c800;
    margin-top: 20px;
    margin-bottom: 20px;
}

.but-history{
     margin-top: 30px;
     margin-bottom: 50px;
     height: 60px;
        width: 170px;
        padding: 12px 24px;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
}

.but-history:hover {
        background-color: #f0c800;
        transform: scale(1.05);
    }

    .but-history a {
        color: black;
        font-size: 15px;
        font-weight: bold;
        text-decoration: none;
    }

    .but-history a:hover {
        color: black;
        font-size: 15px;
        font-weight: bold;
        text-decoration: none;
    }







}