
@import url('https://fonts.googleapis.com/css2?family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');

*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

body{
    background-color: 	#f6e7d3; /*cor fundo da página*/
    font-family:"Mulish", Arial;
    font-weight: 400;
}

header{
    background-color: #eac9a5;
    padding:20px 0px ;
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: center;
}

header img { /*tamanho da imagem*/
    width: 300px; /*largura*/
    height:auto ; /*altura*/
    margin-bottom:5px ;
}

nav a{
    color: black;
    font-weight: bold;
    font-size: 16px;
    text-decoration:none;
    padding:5px 6px ;
    
}

nav a:hover{
    color: black;
    background-color:#8aab50 ;
    border-radius: 15px; /*arredondar a borda*/
}

main{
    text-align:center;
    margin:20px;
}

h2{
    margin:25px auto ;
}

p{
    margin: auto 150px;
    font-size: 18px;  
}



.main-container{  /*blocos*/
    display:flex;
    max-width:1000px;
    gap:20px;
    flex-wrap: wrap;
    margin:0 auto ; /*auto para mudar a margem dos lados*/
}

.main-block{
    display:flex;
    flex-direction: column;
    flex-grow:1;
    flex-shrink: 1;
    flex-basis:200px ;
    background-color:#8aab50 ;
    padding:20px;
    border-radius:10px;
    box-shadow:2px 2px 5px black ;
    justify-items:space-evenly;
}

img{
    width:250px ;
    height:auto;
    border-radius:5px ; /*arredondar as bordas*/
    margin:15px auto ;

}


.main-block a{
    color:#704513;
    background-color: #f6dfbc;
    text-decoration: none;
    padding:5px 12px;
    margin-top: 8px;
    margin-left:4px ;
    margin-right:4px;
    margin-bottom:3px ;
    border-radius:15px ;
    font-weight:bold;
    font-size: 17px;
}
 

.main-block a:hover{
    color: #f6dfbc;
    background-color:#ad7535 ;
}

.container {
    display: flex;          /* Coloca os itens lado a lado */
    align-items: center;    /* Alinha verticalmente no centro */
    gap: 0;              /* Espaço entre imagem e texto */
    margin-left: 100px;
    
}

.container img {
    width: 250px;           /* Ajuste o tamanho da imagem */
    height: auto;
    border-radius: 8px;     /* Bordas arredondadas (opcional) */
    margin-left: 65px;
    margin-top: 40px;
}

.container .texto {
    max-width: 830px;       /* Largura máxima do texto */
    margin-left: 80px;
}

.container .texto p{
    margin:0;
}


a{
  text-decoration: none;
  color: #81b723;
  font-weight: bold;
}
 a:hover{
  color: #567e10;
 }

.carousel {
  position: relative;
  width: 50%;
  margin: 20px auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.carousel-item {
  min-width: 100%; /* só mostra 1 item por vez */
  display: flex;
  justify-content: center; /* centraliza horizontalmente */
  align-items: center;     /* centraliza verticalmente (se quiser) */
  padding: 20px;
}

.carousel-item img {
  width: 250px; /* tamanho menor da imagem */
  height: auto;
  border-radius: 10px;
}


.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}


footer{
    background-color: #8aab50;
    color: white;
    text-align: center; /*alinhar o texto*/
    padding:20px 0px ;
} 



footer img{
    width:25px ;
    height:auto;
    transition:transform 0.2s ease; /*duração do tempo do efeito*/
    margin:10px 3px ;
}

footer img:hover{
    transform: scale(1.5);
}

#whatsapp{
    width: 35px;
}
