* {
  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);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;

}

/* 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: 180px;
  margin-right: 15px;
  filter: drop-shadow(0 0 5px rgba(255, 69, 0, 0.7));
  margin-left: -100px;
}

/* Texto da logo */
.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
}

.club-text {
  color: #ffffff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
}

.eagle-text {
  color: #ff4500;
  text-shadow: 2px 2px 10px rgba(255, 69, 0, 0.5);
}

/* Navegação */
.nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin-right: -90px;
}

.menu-icon {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
}

.bar {
  height: 5px;
  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.3rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 5px 0;
  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: 0 auto 10px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .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: 20px;
  }

  .nav ul li {
    margin: 0px 0;
  }

  .nav ul li a {
    font-size: 1.2rem;
  }
}




/* Hero Section */
.hero {
  background: url('/img/0593d3b7-d3f5-4fec-8c44-1da3cecd2297.jpg') no-repeat center center/cover;
  height: 100vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Camada escura para a imagem de fundo */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

/* Conteúdo da seção */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  margin-left: 15px;
}

/* Título impactante */
.hero h2 {
  font-size: 4rem;
  font-family: 'Bebas Neue', sans-serif;
  /* Fonte forte e marcante */
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
    text-align: center;
  }
}

/* Destaque para palavras específicas */
.hero h2 .highlight {
  color: #ff4500;
  /* Cor de destaque vibrante */
  text-shadow: 2px 2px 8px rgba(255, 69, 0, 0.8);
}

/* Parágrafo estilizado */
.hero p {
  font-size: 1.5rem;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* Botão estilizado */
.btn {
  background: linear-gradient(135deg, #ff4500, #ff6347);
  color: #fff;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s, transform 0.2s;
  box-shadow: 0 5px 15px rgba(255, 69, 0, 0.5);
}

@media (max-width: 768px) {
  .btn {
    font-size: 1rem;
  }
}

.btn:hover {
  background: linear-gradient(135deg, #ff6347, #ff4500);
  transform: scale(1.05);
}




.services {
  padding: 60px 0;
  background-color: #1f2933;
  ;
  /* Cor de fundo mais escura para contraste */
  color: #fff;
}


@media (max-width: 768px) {
  .services {
    margin-bottom: -80px;
  }
}

.section-title {
  font-size: 2.5rem;
  font-family: 'Bebas Neue', sans-serif;
  color: #ff4500;
  text-align: center;
  text-transform: uppercase;
}

.section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  margin: 20px 0 40px;
  font-family: 'Roboto', sans-serif;
  color: #ccc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

.service-item {
  background-color: #25303b;
  /* Novo fundo mais escuro, combinando com o estilo */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  /* Texto branco para garantir legibilidade em fundo escuro */
}

@media (max-width: 768px) {
  .service-item {
    padding: 20px;
  }
}

.service-item:hover {
  background-color: #2e3644;
  /* Tom mais claro no hover para efeito visual */
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}


.service-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.service-description {
  font-size: 1.1rem;
  color: #ddd;
  line-height: 1.6;
}

.service-item p {
  margin-bottom: 20px;
}







.about {
  padding: 80px 0;
  background-color: #1f2933;
  /* Cor de fundo escura para contraste */
  color: #f5f5f5;
}

.about-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: #ff4500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .about-header h2 {
    font-size: 2.3rem;
  }
}

.about-header .divider {
  width: 80px;
  height: 4px;
  background-color: #ff4500;
  margin: 12px auto;
  border: none;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.about-text {
  max-width: 600px;
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  line-height: 2rem;
}

@media (max-width: 768px) {
  .about-text {
    margin: 0 20px 0 20px;
  }
}

.about-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.about-list li {
  margin-bottom: 15px;
}

.about-list i {
  color: #ff4500;
  font-size: 1.4rem;
}

.about-image {
  max-width: 400px;
  flex-shrink: 0;
}

.about-image img {
  width: 130%;
  border-radius: 12px;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .about-image img {
    width: 100%;
    margin-bottom: -80px;
  }
}

.facilities {
  padding: 80px 0;
  background-color: #1f2933;
  /* Cor de fundo escura para elegância */
  color: #f5f5f5;
}

.facilities-header {
  text-align: center;
  margin-bottom: 50px;
}

.facilities-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: #ff4500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .facilities-header h2 {
    font-size: 2rem;
    letter-spacing: 0px;
  }
}

.facilities-header .divider {
  width: 80px;
  height: 4px;
  background-color: #ff4500;
  margin: 12px auto 20px auto;
  border: none;
}

.facilities-header .intro-text {
  font-family: 'Roboto', sans-serif;
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
  color: #ddd;
  line-height: 1.6;
}

.facility-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.facility {
  background-color: #2d3e50;
  padding: 30px;
  border-radius: 12px;
  max-width: 350px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);
}

.facility:hover {
  transform: translateY(-10px);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3);
}

.facility-icon {
  font-size: 2.5rem;
  color: #ff4500;
  margin-bottom: 20px;
}

.facility h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #ff4500;
  margin-bottom: 15px;
}

.facility p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #ddd;
}






.gallery {
  padding: 80px 0;
  background-color: #1f2933;
  color: #fff;
}

@media (max-width: 768px) {
  .gallery {
    margin-top: -80px;
    margin-bottom: -80px;
  }
}

.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: #ff4500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .gallery-header h2 {
    font-size: 2rem;
    letter-spacing: 0px;
  }
}

.gallery-header p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.3rem;
  color: #ddd;
  line-height: 1.6;
}

.gallery-header .divider {
  width: 80px;
  height: 4px;
  background-color: #ff4500;
  margin: 20px auto;
  border: none;
}

.gallery-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  justify-items: center;
  /* Alinha os itens individuais ao centro */
  max-width: 1200px;
  /* Defina uma largura máxima para a galeria */
  margin: 0 auto;
  /* Centraliza o grid container na página */
}


.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-img {
  opacity: 0.7;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay-text {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
}




.contact-info {
  background-color: #1f2933;
  /* Cor de fundo mais escura para combinar com o estilo */
  padding: 60px 0;
}

.section-title {
  font-size: 2.5rem;
  font-family: 'Bebas Neue', sans-serif;
  color: #ff4500;
  /* Cor vibrante para o título */
  text-align: center;
  text-transform: uppercase;
}

.section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  margin: 20px 0;
  font-family: 'Roboto', sans-serif;
  color: #ddd;
  /* Texto mais suave para contraste */
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.contact-item {
  background-color: #f7f2f2;
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-item i {
  font-size: 2rem;
  color: #ff4500;
  /* Ícones com cor vibrante */
  margin-bottom: 15px;
}

.contact-item p {
  font-size: 1rem;
  color: #444;
}

.contact-link {
  color: #ff4500;
  text-decoration: none;
  font-weight: bold;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-btn {
  display: inline-block;
  background-color: #ff4500;
  /* Cor vibrante para o botão */
  color: white;
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 30px;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  margin: 40px auto;
  /* Centralizado no meio */
  transition: all 0.3s ease;
  display: block;
}

.contact-btn:hover {
  background-color: #e43e00;
  /* Tom mais escuro no hover */
  transform: translateY(-5px);
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}


.contact {
  background-color: #1f2933;
  /* Fundo escuro que combina com o restante do layout */
  padding: 60px 0;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-family: 'Bebas Neue', sans-serif;
  color: #ff4500;
  /* Cor vibrante para destacar o título */
  text-transform: uppercase;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 35px;
  }
}


.section-subtitle {
  font-size: 1.3rem;
  font-family: 'Roboto', sans-serif;
  color: #ddd;
  /* Texto suave para contraste */
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .section-subtitle {
    font-size: 20px;
  }
}

.contact-btn {
  background-color: #ff4500;
  /* Cor vibrante para o botão */
  color: white;
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 30px;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  transition: all 0.3s ease;
  display: inline-block;
}

@media (max-width: 768px) {
  .contact-btn {
    font-size: 0.8rem;
  }
}

.contact-btn:hover {
  background-color: #e43e00;
  /* Cor mais escura no hover */
  transform: translateY(-5px);
}

.contact-btn:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(255, 69, 0, 0.7);
  /* Sombra ao focar */
}




.footer {
  background-color: #1d252e;
  /* Cor de fundo escura */
  color: #fff;
  /* Cor do texto em branco */
  padding: 40px 0;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

.footer-logo {
  width: 220px;
  /* Ajuste do tamanho da logo */
  margin-bottom: 20px;
}


@media (max-width: 768px) {
  .footer-logo {
    margin-left: 20px;
  }
}



.footer p {
  font-size: 1rem;
  color: #ddd;
  /* Cor suave para o texto */
  margin: 10px 0;
}

.social-links {
  margin-top: 20px;
}

.social-icon {
  display: inline-block;
  margin: 0 10px 10px;
  color: #ff4500;
  font-size: 2.5rem;
  text-decoration: none;
  /* Remove qualquer linha no ícone */
}

.social-icon i {
  border: none;
  /* Remove qualquer borda ao redor do ícone */
  text-decoration: none;
  /* Remove sublinhado, se presente */
  vertical-align: middle;
  /* Garante o alinhamento correto */
}



.social-icon:hover {
  color: #e43e00;
  /* Cor ao passar o mouse */
  transform: translateY(-5px);
}

.social-icon i {
  display: inline-block;
  vertical-align: middle;
}





.footer-credits {
  font-size: 1rem;
  text-align: center;
  color: #aaa;
  margin-top: 20px;
}

.footer-credits a {
  color: #ff4500;
  text-decoration: none;
  font-weight: bold;
}

.footer-credits a:hover {
  text-decoration: underline;
}