* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  height: 100vh
}

@media (max-width: 768px) {
  body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    height: 100vh
  }
}

body {
  color: #333;
  background: #f9f9f9;
  line-height: 1.6;
}

/* Estilos gerais do header */
.header {
  background-color: #1d252e;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
}

/* Container */
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Branding */
.branding {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s;
}

.branding:hover {
  transform: scale(1.05);
}

/* Logo da imagem */
.logo-img {
  max-height: 120px;
  margin-right: 10px;
  filter: drop-shadow(0 0 5px rgba(255, 69, 0, 0.7));
}

/* Texto da logo */
.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
}

.club-text {
  color: #ff5722;
}

.eagle-text {
  color: #b30d19;
}

/* Navegação */
.nav {
  display: flex;
  align-items: center;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

/* Botão "Peça Agora" */
.order-now-btn {
  background-color: #ff5722;
  color: #fff;
  padding: 10px 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

@media (max-width: 768px) {
  .order-now-btn {
    background-color: #d32f2f;
    color: #fff;
    padding: 5px 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-left: 15px;
    margin-right: -10px;
  }
}

.order-now-btn:hover {
  background-color: #e64a19;
}

.menu-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  cursor: pointer;
}

.bar {
  height: 4px;
  background-color: #fff;
  border-radius: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
  .menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
  }

  .bar {
    height: 5px;
    background-color: #fff;
    border-radius: 10px;
  }

  .nav {
    display: none;
    /* Esconde o menu inicialmente */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* O menu ocupa toda a altura da tela */
    z-index: 1000;
    /* Garante que o menu ficará acima de outros conteúdos */
    text-align: center;
  }

  .nav.active {
    display: block;
  }

  .nav ul {
    flex-direction: column;
  }

  .nav ul li {
    margin: 10px 0;
  }

  .nav ul li a {
    font-size: 1.2rem;
  }
}


.nav ul li a {
  text-decoration: none;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 5px 10px;
  position: relative;
}

/* Efeito de destaque ao passar o mouse */
.nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ff4500;
  transition: width 0.3s;
}

.nav ul li a:hover::after {
  width: 100%;
}

.nav ul li a:hover {
  color: #ff4500;
}

/* Responsividade */
/* Estilos para telas menores */
@media (max-width: 768px) {
  .header .container {
    padding: 15px;
    text-align: center;
  }

  .logo-img {
    max-height: 100px;
    margin: 0px 0px 0px -10px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .nav {
    display: none;
    position: absolute;
    background-color: #1d252e;
    width: 100%;
    text-align: center;
  }

  .nav.active {
    display: block;
    /* Exibe o menu quando a classe 'active' é adicionada */
  }

  .nav ul {
    flex-direction: column;
  }

  .nav ul li {
    margin: 10px 0;
  }

  .nav ul li a {
    font-size: 1.2rem;
  }

  .menu-icon {
    display: flex;
    /* Exibe o ícone do menu hambúrguer */
    margin-left: 1px;
  }
}

/* Torna o menu hambúrguer visível em telas menores */
@media (max-width: 768px) {
  .menu-icon {
    display: flex;
  }

  .nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-top: 10px;
    margin-left: 10px;
  }

  .nav ul li {
    margin: 0px 0;
  }

  .nav ul li a {
    font-size: 1.2rem;
  }
}






.hero-section {
  position: relative;
  height: 100vh;
  color: white;
  text-align: center;
}

/* Imagem de fundo */
.background-image {
  width: 100%;
  height: 130%;
  position: absolute;
  top: 0;
  left: 0;
  background: url('sua-imagem.jpg') no-repeat center center/cover;
  z-index: -1;
}

@media (max-width: 768px) {
  .background-image {
    width: 100%;
    height: 213%;
    position: absolute;
    top: 0;
    left: 0;
    background: url('sua-imagem.jpg') no-repeat center center/cover;
    z-index: -1;
  }
}

/* Overlay para escurecer a imagem */
.overlay {
  width: 100%;
  height: 130%;
  background-color: rgba(0, 0, 0, 0.7);
  /* Escurecimento com 50% de opacidade */
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 768px) {
  .overlay {
    width: 100%;
    height: 213%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Escurecimento com 50% de opacidade */
    position: absolute;
    top: 0;
    left: 0;
  }
}

/* Conteúdo que fica acima da imagem e do overlay */
.content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 1;
}

/* Estilização da logo */
.logo {
  width: 650px;
  margin-bottom: -30px;
  margin-top: 70px;
}

@media (max-width: 768px) {
  .logo {
    width: 325px;
    margin-bottom: 10px;
  }
}

h1 {
  font-size: 3.5rem;
  margin: 0;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
    margin: 0;
  }
}


p {
  font-size: 1.5rem;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  p {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }
}

.btn {
  padding: 10px 20px;
  background-color: #d32f2f;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.5rem;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .btn {
    padding: 10px 20px;
    background-color: #d32f2f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    margin-top: 50px;
  }
}

.timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  position: relative;
  border-top: 2px solid #ccc;
  margin-top: 90px;
}

@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    /* Empilha os itens verticalmente */
    padding: 50px;
    /* Ajusta o padding para telas menores */
    margin-top: 35px;
    /* Reduz a margem superior */
  }

  .timeline-item {
    width: 100%;
    /* Garante que cada item ocupa a largura total */
    text-align: center;
    position: relative;
    margin-bottom: 30px;
    /* Adiciona espaço entre os itens */
  }

  .timeline-title {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 18px;
    /* Reduz o tamanho da fonte para telas menores */
  }

  .timeline-date {
    display: block;
    font-size: 16px;
    /* Reduz o tamanho da fonte */
    color: #a78f3e;
    margin-bottom: 5px;
  }

  .timeline-names {
    display: block;
    font-size: 16px;
    color: white;
  }

  /* Linha vertical para cada item */
  .timeline-item::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #a78f3e;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    /* Ajusta a posição do ponto */
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-item {
  text-align: center;
  position: relative;
}

.timeline-title {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 20px;
}

.timeline-date {
  display: block;
  font-size: 20px;
  color: #a78f3e;
  margin-bottom: 5px;
}

.timeline-names {
  display: block;
  font-size: 20px;
  color: white;
}

/* Linha vertical para cada item */
.timeline-item::before {
  content: '';
  width: 10px;
  height: 10px;
  background: #a78f3e;
  border-radius: 50%;
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
}










/* Estilização geral do menu */
.menu {
  background-color: #fbebcb;
  padding: 20px;
  margin-top: 264px;
}

@media (max-width: 768px) {
  .menu {
    background-color: #fbebcb;
    margin-top: 738px;
  }

}

.menu2 {
  background-color: #fbebcb;
}

/* Cabeçalho do menu */
.menu-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  background-color: #dcc5a4;
}

.menu-image {
  max-width: 350px;
  height: auto;
}

@media (max-width: 768px) {
  .menu-image {
    max-width: 280px;
    height: auto;
  }

}

.menu-title-container {
  text-align: center;
  margin-left: 80px;
}

.menu-title {
  font-size: 2rem;
  color: #8c1d1d;
  margin-bottom: 30px;
}

.menu-options {
  display: flex;
  gap: 15px;
  font-weight: bold;
}

.option {
  background-color: #a53d3d;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
  .option {
    background-color: #a53d3d;
    color: #fff;
    padding: 12px 5px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 15px
  }
}

.option:hover {
  background-color: #8c1d1d;
}






/* Estilização geral do menu */
.menu {
  background-color: #fbebcb;
  padding: 20px;
  margin-top: 264px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  /* Sombra leve */
}

@media (max-width: 768px) {
  .menu {
    margin-top: 695px;
  }
}

.menu2 {
  background-color: #fbebcb;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Cabeçalho do menu */
.menu-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  background-color: #dcc5a4;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.menu-image {
  width: 100%;
  max-width: 350px;
  height: 200px;
  /* Altura fixa */
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .menu-image {
    max-width: 280px;
    height: 180px;
  }
}

.menu-title-container {
  text-align: center;
  margin: auto;
}


.menu-title {
  font-size: 2rem;
  color: #8c1d1d;
  margin-bottom: 20px;
  font-family: 'Arial', sans-serif;
  font-weight: bold;
}

@media (max-width: 768px) {
  .menu-title {
    margin-right: 0px;
  }

}

/* Opções do menu */
.menu-options {
  display: flex;
  gap: 15px;
  font-weight: bold;
  justify-content: center;
}

.option {
  background-color: #a53d3d;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
  text-align: center;
}

@media (max-width: 768px) {
  .option {
    padding: 10px 5px;
  }
}

.option:hover {
  background-color: #8c1d1d;
}

/* Conteúdo do menu */
.menu-content,
.menu-content2 {
  display: flex;
  gap: 30px;
  align-items: stretch;
  flex-wrap: nowrap;
  margin-top: 20px;
}

.menu-content2 {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {

  .menu-content,
  .menu-content2 {
    flex-direction: column;
  }
}

.menu-large-image {
  width: 100%;
  max-width: 350px;
  /* Altura fixa */
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 250px;
}


@media (max-width: 768px) {
  .menu-items {
    margin-left: 10px;
  }
}

/* Estilização do título do item */
.item-title {
  font-size: 1.8rem;
  color: #8c1d1d;
  font-weight: bold;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .item-title {
    font-size: 1.5rem;
  }
}

/* Descrição do item */
.item-description {
  color: #555;
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 10px 0;
  text-align: justify;
}

@media (max-width: 768px) {
  .item-description {
    font-size: 1rem;
  }
}

/* Preços */
.item-prices {
  font-weight: bold;
  color: #333;
  font-size: 1.2rem;
}

.item-prices:hover {
  color: #a53d3d;
  cursor: pointer;
}

/* Logo do item */
.menu-logo {
  width: 100%;
  max-width: 350px;
  height: auto;
  margin: 20px 0;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .menu-logo {
    max-width: 250px;
    margin-left: 43px;
  }
}

/* Seções */
section {
  padding: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
  background-color: #fbebcb;
  border-radius: 10px;
  margin-top: 20px;
}










/* Seção Sobre Nós */
.about-us {
  background-color: #fbebcb;
  /* Fundo neutro */
  padding: 60px 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.9)), url('/img/fundo.jpg');
  /* Imagem de fundo com sobreposição */
  background-size: cover;
  background-position: center;
  color: #333;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}

.about-us .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.about-us h2 {
  font-size: 3rem;
  color: #8c1d1d;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
}

.about-us p {
  font-size: 1.4rem;
  line-height: 2;
  color: #555;
  margin-bottom: 40px;
}

.about-us .contact-info {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.about-us .contact-info li {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-us .contact-info li i {
  color: #8c1d1d;
  font-size: 1.6rem;
}

.about-us .contact-info a {
  color: #8c1d1d;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.about-us .contact-info a:hover {
  color: #a53d3d;
}

.about-us h3 {
  font-size: 2rem;
  color: #8c1d1d;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.about-us .working-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-us .working-hours li {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #555;
}

.about-us .working-hours li strong {
  color: #8c1d1d;
}

@media (max-width: 768px) {
  .about-us h2 {
    font-size: 2.5rem;
  }

  .about-us p {
    font-size: 1.2rem;
  }

  .about-us .contact-info li {
    font-size: 1.2rem;
  }

  .about-us .working-hours li {
    font-size: 1.1rem;
  }
}





/* Footer */
.footer {
  background-color: #1a252f;
  /* Fundo escuro refinado */
  color: #f1f1f1;
  /* Cor de texto mais clara */
  padding: 60px 0;
  font-family: 'Roboto', sans-serif;
}

.footer .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  font-size: 1.8rem;
  color: #e74c3c;
  /* Tom vibrante */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.footer-section ul li a {
  color: #f1f1f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #e74c3c;
}

.footer-section form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-section form input {
  padding: 12px;
  width: 70%;
  font-size: 1rem;
  border: 1px solid #34495e;
  border-radius: 5px;
  outline: none;
  background-color: #2c3e50;
  color: #f1f1f1;
}

.footer-section form input::placeholder {
  color: #95a5a6;
}

.footer-section form button {
  padding: 12px 25px;
  background-color: #c0392b;
  color: #f1f1f1;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.footer-section form button:hover {
  background-color: #e74c3c;
  transform: scale(1.05);
}

.footer-bottom {
  margin-top: 40px;
  font-size: 1rem;
  text-align: center;
  color: #95a5a6;
}

.footer-bottom p {
  margin: 5px 0;
  font-size: 1.2rem;
}

/* Estilo padrão para a classe 'developed-by' */
.footer-bottom .developed-by .p {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  /* Alinha o texto ao centro */
}

/* Estilo para a tag 'strong' */
.footer-bottom .developed-by strong {
  color: #f1f1f1;
}

/* Ajuste para telas menores (como celulares) */
@media screen and (max-width: 768px) {
  .footer-bottom .developed-by {
    text-decoration: none;
    font-size: 1rem;
    /* Reduz o tamanho da fonte em dispositivos móveis */
    margin-top: 8px;
    /* Ajusta o espaçamento no topo */
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    min-width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }

  .footer-section form input {
    width: 90%;
  }
}














/* Estilos para o botão */
.open-btn {
  background-color:#c0392b;
  color: white;
  font-size: 16px;
  padding: 10px 10px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  margin-left: -10px;

}

.open-btn1 {
  background-color: #ff6f61;
  color: white;
  font-size: 16px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  margin-left: 10px;
  MARGIN-RIGHT: -10px
}

.order-btn:hover {
  background-color: #ff4a38;
}

/* Estilos para a seção do formulário */
.order-form {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: -30rem auto;
}

.order-form h2 {
  font-size: 24px;
  color: #333;
}

.order-form label {
  font-size: 16px;
  margin-bottom: 8px;
  display: block;
}

.order-form select,
.order-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.order-form textarea {
  resize: vertical;
}

.order-form button {
  width: 100%;
  padding: 5px;
  background-color: #d32f2f;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 5px 0px 5px 0px
}

.order-form button:hover {
  background-color: #ff4a38;
}



/* Formulário oculto inicialmente */
#order-form-section {
  display: none;
  /* Oculta o formulário */
  position: absolute;
  /* Posiciona abaixo do botão */
  left: 50%;
  /* Centraliza horizontalmente */
  width: 400px;
  /* Define a largura do formulário */
  background-color: #fff;
  /* Fundo branco */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  /* Sombra */
  padding: 20px;
  /* Espaçamento interno */
  border-radius: 8px;
  /* Bordas arredondadas */
  z-index: 1000;
  /* Mantém o formulário acima de outros elementos */
}

/* Estilo adicional para transições suaves */
#order-form-section.open {
  display: block;
  /* Exibe o formulário */
}


/* Ajustes para telas menores (celulares) */
@media screen and (max-width: 768px) {
  #order-form-section {
    position: static;
    /* Ajusta para o fluxo normal da página */
    width: 85%;
    /* Largura ajustada para telas pequenas */
    margin: -40px auto;
    /* Centraliza na tela */
    top: auto;
    /* Remove a posição fixa de "top" */
    left: auto;
    /* Remove a posição fixa de "left" */
  }
}

