body {
margin: 0;
font-family: Arial, sans-serif;
background: url('imagens/fundo.jpg') no-repeat center center fixed;
background-size: cover;
}

header {
position: fixed;
top: 0;
width: 100%;
color: #fff;
padding: 10px 20px;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
z-index: 1000;
box-sizing: border-box;
}

.nav-links {
display: flex;
gap: 20px;
}

.nav-links a {
color: white;
text-decoration: none;
font-size: 1rem;
}

.nav-links a:hover {
text-decoration: underline;
}

.logo {
height: 75px;
}

.menu-toggle {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
}

.menu-toggle div {
width: 25px;
height: 3px;
background: white;
}

.dropdown-menu {
display: none;
flex-direction: column;
position: absolute;
top: 60px;
right: 10px;
background: #000;
width: auto;
padding: 10px;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.dropdown-menu.active {
display: flex;
}

.dropdown-menu a {
padding: 10px;
text-align: left;
color: white;
text-decoration: none;
white-space: nowrap;
}

.dropdown-menu a:hover {
background: #333;
}

@media (max-width: 768px) {
.nav-links {
display: none;
}

.menu-toggle {
display: flex;
}
}

main {
margin-top: 80px;
text-align: center;
padding: 20px;
}

.hero-image {
width: 100%;
max-height: 400px;
object-fit: cover;
}

.presentation {
margin-top: 20px;
font-size: 1.2rem;
line-height: 1.6;
max-width: 600px;
margin-left: auto;
margin-right: auto;
color: #FFFFFF;
}

footer {
position: fixed;
bottom: 0;
width: 100%;
color: #fff;
padding: 10px 20px;
display: flex;
justify-content: center;
align-items: center;
box-sizing: border-box;
}

footer form {
display: flex;
gap: 10px;
flex-wrap: wrap;
justify-content: center;
}

footer input {
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}

footer button {
padding: 10px 20px;
background: #F1C703;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}

footer button:hover {
background: #d1a302;
}

@media (max-width: 768px) {
footer form {
flex-direction: column;
gap: 5px;
}

footer button {
width: 100%;
}
}
.carousel-container {
overflow: hidden;
width: 100%;
max-width: 880px;
height: 200px;
display: flex;
justify-content: flex-start; /* Alterado para começar da esquerda */
align-items: center;
position: relative;
}

.carousel-track {
display: flex;
animation: scroll 20s linear infinite;
transform: translateX(0); /* Garante que comece da esquerda */
}

@keyframes scroll {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-50%); /* Ajustado para metade pois temos items clonados */
}
}

.carousel-container {
overflow: hidden;
width: 100%;
max-width: 880px;
height: 200px;
display: flex;
align-items: center;
position: relative;
}

.carousel-track {
display: flex;
animation: scroll 20s linear infinite;
left: 0; /* Força início da esquerda */
position: relative; /* Adiciona posicionamento relativo */
will-change: transform; /* Otimiza a animação */
}

@keyframes scroll {
0% {
transform: translateX(0);
}
100% {
transform: translateX(calc(-180px * 5)); /* Ajusta baseado no número de items originais */
}
}

.carousel-item {
flex: 0 0 auto;
width: 180px;
margin: 0 10px;
text-align: center;
}

.carousel-item img {
width: 170px;
height: 85px;
border: 0px solid #ccc;
border-radius: 8px;
}


.estilo {
font-family: Arial, calibri, Helvetica, sans-serif;
font-size: 13px;
color: #CECECE;
visibility: inherit;
text-align: left;
}
.estilo a {
text-decoration: none;
color: #CECECE;
}
.estilo a:hover {
text-decoration: underline;	
color: #CECECE;
}
.empresa {
max-width: 700px;
margin-left: 0; /* Alinha à esquerda removendo a margem automática */
text-align: justify;
color: white;
padding: 20px;
font-size: 14px;
}

.zoom-img {
transition: transform .2s;
cursor: pointer; /* altera o cursor para o ponteiro do mouse */
}
.zoom-img:hover {
cursor: zoom-out; /* altera o cursor para o ícone de zoom-out */
transform: scale(1.2);
cursor: pointer; /* altera o cursor para o ponteiro do mouse */
}
.imagem-arredondada {
border-radius: 10%;
border: none;
border: 2px solid #666666;
}
.imagem-frente {
border-radius: 50%;
border: 2px solid #666666;
}
  .food-input-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  .food-input {
    padding: 10px;
   background-color: Transparent;
    background-repeat:no-repeat;
    border: 1px solid #666666;
    border-radius: 4px;
    padding: 0.24em;
    font-size: 12px;
    color: #FFFFFF;
    width: 30px;
    height: 20px;
   text-align: center;
  }
  .food-input[type='number'] {
    -moz-appearance: textfield;
  }
  .food-input::-webkit-outer-spin-button,
  .food-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  .food-input-inc {
    width: 20px;
    height: 20px;
    background-image: url('mais.png');
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
  }
  .food-input-dec {
    width: 20px;
    height: 20px;
    background-image: url('menos.png');
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
  }
  .food-input-inc {
    margin-left: 5px;
  }
  .food-input-dec {
    margin-right: 5px;
  }
.estilo_titulo {
font-family: Arial, calibri, Helvetica, sans-serif;
font-size: 15px;
color: #FFFF00;
visibility: inherit;
text-transform: uppercase;
text-align: left;
}
.estilo_titulo a {
text-decoration: none;
color: #FFFF00;
}
.estilo_titulo a:hover {
text-decoration: none;	
color: #FFFF00;
}
.estilo_amarelo {
font-family: Arial, calibri, Helvetica, sans-serif;
font-size: 15px;
color: #FFFF00;
visibility: inherit;
text-align: left;
}
.estilo_amarelo a {
text-decoration: none;
color: FFFF00;
}
.estilo_amarelo a:hover {
text-decoration: underline;	
color: #FFFF00;
}

.estilo_amarelo_p{
font-family: Arial, calibri, Helvetica, sans-serif;
font-size: 12px;
color: #FFFF00;
visibility: inherit;
text-align: left;
}
.estilo_amarelo_p a {
text-decoration: none;
color: FFFF00;
}
.estilo_amarelo_p a:hover {
text-decoration: underline;	
color: #FFFF00;
}

.estilo_preco {
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
color: #FFFFFF;
text-align: left;
}
.estilo_pp {
font-family: Arial, calibri, Helvetica, sans-serif;
font-size: 12px;
color: #FFFFFF;
visibility: inherit;
text-align: left;
}
.estilo_form_button {
margin-right: 0px;
border: none;
padding: 0.24em;
font-family: Arial, Verdana, Helvetica, sans-serif;
font-size: 14px;
color: #FFFF00;
border-radius: 8px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
text-align: center; 
background-color: Transparent;
background-repeat:no-repeat;
cursor: pointer;
font-family: Arial, Verdana, Helvetica, sans-serif;
}
.estilo_form   {
margin-right: 1px;
border: 1px solid #666666;
padding: 0.24em;
background-color: #F4F4F4;
font-family: Arial, Verdana, Helvetica, sans-serif;
font-size: 16px;
color: #000000;
border-radius: 8px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
}
