@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');



body {
  
    background-color: #fefae0;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: #283618; 
}


.logo{
    width: 125px; /* Define a largura desejada */
    height: auto;  /* MUITO IMPORTANTE: mantém a proporção da imagem */
}
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: rgba(55, 46, 46, 0.64);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 1px 20px; 
    box-sizing: border-box;
}


header nav ul {
    list-style-type: none;
}


header nav ul li {
    display: inline-block; 
    margin-left: 20px; 
    font-size: 18px;
    font-weight: bold;
     background: linear-gradient(90deg, #FFF100 0%, #EC1C24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    header {
        height: 60px;
        padding: 5px 10px;
        justify-content: center; /* Centraliza o logo quando a navegação some */
    }

    /* Esconde o menu de navegação em telas menores */
    header nav {
        display: none;
    }

    /* O logo (que é um link <a> direto no header) */
    /* Não precisamos mais de 'flex-grow' ou 'text-align' aqui pois o
       'justify-content: center' no header já cuida disso. */
    
    /* A imagem <img> dentro do link do logo */
    header > a > img {
        width: 100px;
    }
}

.banner {
  background-image: url("../asssets/banner02.webp");
  background-size: cover;       /* cobre toda a área */
  background-position: center;  /* centraliza a imagem */
  height: 50vh;                /* altura do banner */
}


.titulo {
       
box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.titulo h1 {
  padding: 1px;
  font-size: 30px;
  text-transform: uppercase;
}

.baixo{
    background-color: #fefae0;
}
.lingeries,
.roupa-feminina,
.bijouteria {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 120px;
  margin: 50px auto;
  padding: 20px;
}

.quadrado-1,
.quadrado-2,
.quadrado-3 {
  width: 550px;
  height: 350px;
  border: 2px solid black;
  overflow: hidden;
  border-radius: 2%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.quadrado-1 img,
.quadrado-2 img,
.quadrado-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.texto {
  max-width: 600px;
}

.texto h2 {
  text-transform: uppercase;
  font-weight: 600;
}

.texto p {
  font-size: 17px;
}


/* responsividade */
@media (max-width: 992px) {
  .lingeries,
  .roupa-feminina,
  .bijouteria {
    flex-direction: column;
    gap: 30px;
  }


  .roupa-feminina {
    flex-direction: column-reverse;
  }

  .quadrado-1,
  .quadrado-2,
  .quadrado-3 {
    width: 80%;
    height: 350px;
  }

  .texto {
    max-width: 80%;
    text-align: center;
  }

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

  .titulo h1 {

    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .lingeries,
  .roupa-feminina,
  .bijouteria {
    padding: 10px;
    margin: 30px auto;
  }

  .quadrado-1,
  .quadrado-2,
  .quadrado-3 {
    width: 90%;
    height: 280px;
  }

  .texto {
    max-width: 90%;
  }

  .texto p {
    font-size: 18px;
  }

  .titulo h1 {
    font-size: 24px;
  }


}

.quem-somos {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: auto;
    margin: 0 auto;
    background-color: #fefae0;
}

.quem-somos h1 {

    text-transform: uppercase;
    font-size: 50px;
    background: linear-gradient(90deg, #FFF100 0%, #EC1C24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: -3px;

}

.quem-somos p {
    font-size: 20px;
    font-weight: 500;
    width: 75%;
}

.rodape {
    gap: 70px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: #D0C8A8;
    padding: 15px 20px;
    box-shadow: 0 -8px 12px rgba(0, 0, 0, 0.1);
    margin-top: 13vh;
    flex-wrap: wrap;
}

.rodape .logo img {
    
}

.rodape h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.rodape ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rodape ul li,
.rodape p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
    font-size: 15px;
}

.rodape a {
    color: inherit;
    text-decoration: none;
}

.rodape a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .rodape {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
        padding: 40px 20px;
    }

    .rodape .logo img {
        height: 120px;
    }

    .rodape h3 {
        font-size: 24px;
    }

    .rodape p,
    .rodape ul li {
        font-size: 18px;
        justify-content: center;
    }
}