@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* Estilos gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #1a2130; /* Azul escuro do logo */
  color: #f2f2f2;
  line-height: 1.6;
}

#root {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

a {
  color: #f2f2f2;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #d94141; /* Vermelho do logo */
}

/* Header */
header {
  text-align: center;
  padding: 20px 0;
  margin-bottom: 40px;
}

header h1 {
  font-size: 2.8rem;
  color: #f2ead3; /* Bege do logo */
  text-transform: uppercase;
  margin-bottom: 10px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

header p {
  font-size: 1.1rem;
  color: #f2ead3;
}

/* Seções */
section {
  margin-bottom: 60px;
  position: relative;
}

section h2 {
  font-size: 2.2rem;
  color: #f2ead3; /* Bege do logo */
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.section-subtitle {
  font-size: 1.5rem;
  color: #d94141; /* Vermelho do logo */
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
}

/* Catálogo */
#catalogo {
  text-align: center;
}

.logo-container {
  margin: 20px auto;
  max-width: 300px;
}

.logo {
  width: 100%;
  height: auto;
}

.contato {
  font-size: 2rem;
  color: #e8963b;
  text-transform: uppercase;
  margin: 20px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links img {
  width: 40px;
  height: 40px;
}

.whatsapp-link {
  padding: 10px 20px;
  background-color: #25D366;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-link span {
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
}

.whatsapp-link:hover {
  background-color: #128C7E;
  transform: scale(1.05);
}

.instagram-link {
  padding: 10px 20px;
  background-color: #ff3131;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.instagram-link:hover {
  background-color: #d94141;
  color: #1a2130;
}

/* Clubes */
#clubes {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.clubes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.clube-item {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #2a3140;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.clube-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(217, 65, 65, 0.2);
}

.clube-item img {
  width: 90%;
  max-height: 90px;
  object-fit: contain;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.clube-item:hover img {
  transform: scale(1.08);
}

.clube-item span {
  display: block;
  font-weight: 600;
  color: #f2ead3;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-top: 10px;
}

.click-info {
  text-align: center;
  margin-top: 40px;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #f2ead3;
  letter-spacing: 1px;
  background-color: rgba(217, 65, 65, 0.1);
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(217, 65, 65, 0.2);
}

/* Clubes Internacionais */
#clubes-internacionais {
  margin-top: 60px;
}

#clubes-internacionais h2 {
  color: #d94141;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 0 20px;
  margin-top: 60px;
  border-top: 1px solid #2a3140;
}

.whatsapp-link {
  margin-top: 20px;
}

.whatsapp-link a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background-color: #25D366;
  border-radius: 5px;
  color: #000000;
  font-weight: bold;
  transition: all 0.3s ease;
}

.whatsapp-link img {
  width: 24px;
  height: 24px;
}

.whatsapp-link a:hover {
  background-color: #128C7E;
  color: #ffffff;
  transform: scale(1.05);
}

/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* View Counter */
.view-counter {
  display: none;
}

.view-counter:hover {
  display: none;
}

#online-count {
  display: none;
}

.pulse-animation {
  display: none;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .clubes-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
  
  header h1 {
    font-size: 2rem;
  }
  
  section h2 {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .clubes-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
  }
  
  header h1 {
    font-size: 1.8rem;
  }
  
  .social-links {
    flex-direction: column;
  }
  
  .clube-item {
    padding: 15px;
  }
  
  .clube-item span {
    font-size: 0.8rem;
  }
}

.nav-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(26, 33, 48, 0.95);
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 40px;
  width: auto;
  border-radius: 5px;
  margin-right: 15px;
  transition: transform 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.05);
}

.nav-logo span {
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2rem;
}

.nav-menu ul {
  display: flex !important;
  justify-content: center;
  list-style: none;
  gap: 10px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-menu li {
  margin: 0 5px;
  display: block;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  padding: 5px 8px;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  white-space: nowrap;
  display: block;
}

.nav-menu a:hover {
  color: #ffffff;
  background-color: rgba(217, 65, 65, 0.7);
}

@media (max-width: 768px) {
  .nav-menu {
    padding: 5px 0;
  }
  
  .nav-container {
    flex-direction: column;
    padding: 5px;
  }
  
  .nav-logo {
    margin-bottom: 5px;
  }
  
  .nav-menu ul {
    flex-direction: row; /* Manter na horizontal mesmo em mobile */
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 5px;
  }
  
  .nav-menu li {
    margin: 3px;
    text-align: center;
  }
  
  .nav-menu a {
    font-size: 0.8rem;
    padding: 5px;
  }
}

/* Produtos */
#produtos {
  margin-top: 60px;
}

/* Tabela de Medidas */
#tabela-medidas {
  margin-top: 60px;
  text-align: center;
}

.tabela-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #2a3140;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tabela-container p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: #f2ead3;
}

.tabela-link {
  margin: 40px 0;
}

.pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 15px 30px;
  background-color: #d94141;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.pdf-link:hover {
  background-color: #e8963b;
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.pdf-icon {
  width: 40px;
  height: auto;
}

/* Atualização para o ícone SVG */
svg.pdf-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  vertical-align: middle;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.pdf-link:hover svg.pdf-icon {
  transform: scale(1.1);
}

.pdf-link span {
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.medidas-info {
  font-size: 0.9rem !important;
  color: #a0a0a0 !important;
  margin-top: 20px !important;
}

.produtos-destaque {
  margin-bottom: 50px;
}

.produtos-destaque {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}

.produto-categoria {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.produto-item {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #2a3140;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.produto-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(217, 65, 65, 0.2);
}

.produto-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.produto-item:hover img {
  transform: scale(1.05);
}

.produto-item span {
  display: block;
  font-weight: 600;
  color: #f2ead3;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-top: 10px;
}

.produto-destaque-grande {
  width: 100%;
  text-align: center;
}

.produto-destaque-grande a {
  display: block;
  background-color: #2a3140;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produto-destaque-grande a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(217, 65, 65, 0.2);
}

.produto-destaque-grande img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.produto-destaque-grande:hover img {
  transform: scale(1.02);
}

.produto-destaque-grande span {
  display: block;
  font-weight: 600;
  color: #f2ead3;
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-top: 15px;
}

.produtos-secundarios {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .produto-categoria, 
  .produtos-secundarios {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .produto-item img {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .produto-categoria, 
  .produtos-secundarios {
    grid-template-columns: 1fr;
  }
}