:root{
    --main-color: #e7a821;
    --black: #13131a;
    --bg: #010103;
    --border: 0.1rem solid rgba(255,255,255,0.3);
    font-size: 10px;

}


*{
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    text-decoration: none;
    text-transform: capitalize;
    font-family: "Roboto", sans-serif;
    transition: 0.2s linear;
}


body{
    background-color: var(--bg);
    overflow-x: hidden;
}

section {
    padding: 3rem 2rem;
    margin: 0 auto;
    max-width: 2000px;

}
.header {
    position: fixed;
    top: 0%;
    left: 0%;
    right: 0%;
    z-index: 99;
    border-bottom: var(--border);
    background-color: var(--bg);
    
}

.header section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    

}

.navbar a {
    margin: 0 1rem;
    font-size: 1.8rem;
    color: #fff;

}

.navbar a:hover {
    color: var(--main-color);
    border-bottom: 0.1rem solid var(--main-color);
    padding-bottom: 0.5rem;
    font-size: 2rem;
    
}

.btn {
  display: inline-block;
    background-color: var(--main-color);
    color: #000; /* Texto preto no botão amarelo destaca mais */
    font-size: 2.2rem;
    font-weight: 800;
    padding: 1.5rem 4rem;
    border-radius: 5rem; /* Botão mais arredondado fica moderno */
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    
    
    
}

.btn:hover {
  background-color:rgb(197, 12, 12);
  color: white;
  letter-spacing: 0.01rem;
  transform: scale(1.05)
}


.home-container {
    background: url("./logo/fundo9.png");
    height: 100vh;
    background-position: center;
    background-size: cover;
}
.home-container section {
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.content {
    max-width:  60rem;
}

.content h3 {
    color: #fff;
    font-size: 6rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    padding: 1rem 0;
    /* Sombra para dar leitura sobre a foto */
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.8);
}
.content p {
    color: #fff;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.8;
    padding: 1rem 0;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.8);
}

.title {
    font-size: 5rem;
    color: var(--main-color);
    text-align: center;

}

.content1 {
    display: flex;
    
    flex-direction: column; 
    align-items: flex-start;
    background-color: var(--black);
    gap: 1.5rem;
    margin-bottom: 5rem;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    max-width: 800px;
}


.content1 h3 {
    font-size: 2.4rem;
    color: #fff;
    padding: 0;
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 0.5rem;
    
}

.content1 p {
    font-size: 2rem;
    color: #ddd;
    line-height: 1.6;
    margin: 0;
    max-width: 90%;
}

.content1 a .botao {
  background-color: #ffc107; 
  color: #fff;
  font-size: 1.2rem;
  
  font-weight: 600;
  font-family: 'Arial', sans-serif;
  padding: 1rem 2rem;
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
}

.content1 a:hover {
  background-color:rgb(197, 12, 12);
  color: white;
  letter-spacing: 0.1rem;
}


.carousel-mega {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: var(--border);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
  background: var(--black);
}

.carousel-mega__track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-mega__slide {
  min-width: 100%;
  height: 50vh;
}

.carousel-mega__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
}

.carousel-mega__control {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 1rem;
  pointer-events: none;
  z-index: 10;
}

.carousel-mega__btn {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.5);
  color: var(--main-color);
  border: none;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.6rem;
  transition: background 0.3s ease;
  user-select: none;
}

.carousel-mega__btn:hover {
  background: var(--main-color);
}

.carousel-mega__dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.carousel-mega__dot {
  width: 1rem;
  height: 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  border: none;
}

.carousel-mega__dot[aria-current="true"] {
  background: var(--main-color);
  width: 1.5rem;
  border-radius: 1rem;
}

.carousel-mega__caption {
  position: absolute;
  bottom: 3rem;
  left: 1.5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  user-select: none;
  max-width: 80%;
}


.menu .category-container {
    display: flex;
    flex-direction: column; /* Coloca os botões um abaixo do outro */
    align-items: center; /* Centraliza horizontalmente */
    gap: 2rem; /* Espaçamento entre os botões */
    padding: 3rem 0;
}

/* Estilo de cada botão de categoria (link) */
.menu .category-button {
    background-color: #ffc107; /* Amarelo forte, como na imagem de exemplo */
    color: var(--black); 
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Imagem e texto começam à esquerda */
    width: 90%; 
    max-width: 450px; /* Limite de largura para desktop */
    padding: 0.5rem 2.5rem 0.5rem 1rem; /* Mais espaço à direita do texto */
    border-radius: 50px; /* Borda bem arredondada */
    text-transform: uppercase;
    font-size: 3rem; 
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu .category-button:hover {
    background-color: #ffd43b; /* Amarelo um pouco mais claro no hover */
    transform: translateY(-3px); /* Efeito de "levantar" */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Estilo da imagem dentro do botão */
.menu .category-button img {
    width: 100px; 
    height: 100px;
    object-fit: cover;
    border-radius: 50%; /* Imagem redonda */
    margin-right: 2rem; /* Espaço entre a imagem e o texto */
    /* Removido o 'transition: transform 0.3s ease;' que estava na versão antiga da imagem */
    transition: none; /* Garante que não haja transição não desejada */
}

/* Estilo do texto (nome da categoria) */
.menu .category-button span {
    flex-grow: 1; 
    text-align: left;
    color: var(--black); 
    padding: 0.5rem 0;
}


/* ---------------------------------------------------------------- */
/* FIM DOS NOVOS ESTILOS - OS ESTILOS ANTIGOS FORAM REMOVIDOS AQUI */
/* ---------------------------------------------------------------- */

.body1 {
 font-family: Arial, sans-serif;
 background: #f4f4f4;
 text-align: center;
 padding: 40px;
}

.btn2 {
 display: block;
 text-align: center;
 padding: 15px;
 margin: 15px auto;
 border-radius: 12px;
 color: white;
 font-weight: bold;
 text-decoration: none;
 max-width: 300px;
 transition: transform 0.2s ease, box-shadow 0.2s ease;
 
}

footer {
 margin-top: 35px;
 text-align:center; 
}


/* Cores dos botões */
.instagram {background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.whatsapp { background: #25D366; }
.tiktok  { background: #2c2c2c; }

/* Efeito ao passar o mouse */
.butao:hover {
 transform: scale(1.05);
 box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
}

.butao {
 display: block;
 text-align: center;
 padding: 20px;
 margin: 20px auto;
 border-radius: 12px;
 color: white;
 font-weight: bold;
 font-size: 20px;
 text-decoration: none;
 max-width: 300px;
 transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.Endereço{
 display: flex;
 align-items: center;
 flex-direction: column;
}
/* --- MEDIA QUERIES (RESPONSIVIDADE) --- */

/* Ajuste para Tablets (Telas até 991px) */
@media (max-width: 991px) {
    html {
        font-size: 55%; /* Reduz a escala global */
    }

    .header section {
        padding: 1.5rem 2rem;
    }

    .home-container section {
        justify-content: center;
        text-align: center;
    }

    .content h3 {
        font-size: 4.5rem;
    }
}

html {
    scroll-behavior: smooth;
}

/* Ajuste para Celulares (Telas até 768px) */
@media (max-width: 768px) {
    .menu-icon {
        display: block !important;
    }
    
    .header .navbar {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--black);
        border-top: var(--border);
        display: none; /* Escondido por padrão no mobile */
        flex-direction: column;
        text-align: center;

        display: none;
    }

    /* Classe que o JavaScript usará para abrir o menu */
    .header .navbar.active {
        display: flex;
    }

    .header .navbar a {
        display: block;
        margin: 1.5rem;
        padding: 1rem;
        font-size: 2rem;
    }

    .content1 {
        max-width: 100%;
        margin: 2rem;
    }

    .carousel-mega__slide {
        height: 35vh; /* Carrossel menor no celular */
    }

    .menu .category-button {
        font-size: 2.2rem;
        width: 100%;
    }

    .menu .category-button img {
        width: 70px;
        height: 70px;
    }

    iframe {
        width: 100%; /* Mapa ocupa toda a largura */
        height: 300px;
    }
}

/* Ajuste para Telas Pequenas (até 450px) */
@media (max-width: 450px) {
    html {
        font-size: 50%;
    }

    .content h3 {
        font-size: 3.5rem;
    }

    .title {
        font-size: 3.5rem;
    }
}