/* Importação de fontes do Google */
@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&family=Roboto:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #1e1e1e;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    flex: 0;
    min-width: 110px;
}

.logo img {
    max-width: 70%;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 12px;
}

.navbar a:hover {
    color: #fbc531;
}

.icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    min-width: 120px;
}

.icons img {
    margin-left: 15px;
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: transform 0.2s ease;
}

/* SOBRE NÓS */
.sobre {
    padding: 50px 40px;
    background-color: #fff;
}

.title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
}

.title span {
    color: #f39c12;
}

.container-slider {
    display: flex;
    width: 100%;
    ;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.carrossel {
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
     margin: 0 auto;
    background-color: #fff;
}

.container-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 800px;
}

.container-imagens {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
}

.slider {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    border-radius: 10px;
}

.slider.on {
    opacity: 1;
    z-index: 1;
}

#prev-button,
#next-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.2s;
}

#prev-button:hover,
#next-button:hover {
    transform: scale(1.1);
}

#prev-button img,
#next-button img {
    width: 30px;
    height: 30px;
    filter: brightness(0.4);
}

.navigation {
    text-align: center;
    margin-top: 10px;
}

.navigation label {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #aaa;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
}

/* Slide control */
#slide1:checked~.slider {
    transform: translateX(0);
}

#slide2:checked~.slider {
    transform: translateX(-100%);
}

#slide3:checked~.slider {
    transform: translateX(-200%);
}

.content {
    max-width: 500px;
}

.content h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f39c12;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #e67e22;
}

/* MENU */
.menu {
    padding: 50px 40px;
    background-color: #f0f0f0;
}

.box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.box {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 15px;
}

.box h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.price {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.price span {
    text-decoration: line-through;
    color: #888;
    font-size: 0.9em;
    margin-left: 10px;
}

.address {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.footer {
    margin-top: 50px;
    text-align: center;
    padding: 20px 0;
}

.contatos img {
    width: 40px;
    height: 40px;
    margin: 0 10px;
    vertical-align: middle;
}

.rodape{
    background-color: #1e1e1e;
    color: white;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    text-align: center;
}

.content-img{
   width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 15px;
}

.tab-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.tab-content .content {
  display: none;
  max-width: 800px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.tab-content .content.show {
  display: flex;
}

.tab-content .content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.back-btn {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
}

.hidden {
  display: none !important;
}
