/* Reset e configurações básicas */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: linear-gradient(135deg, #d80032, #c41e3a);
  color: white;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-100px); }
}

header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}

header .subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* Navegação */
nav {
  background: #2c3e50;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav ul li {
  margin: 0 5px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  padding: 18px 25px;
  display: block;
  transition: all 0.3s ease;
  border-radius: 0;
  font-weight: 500;
  position: relative;
}

nav ul li a:hover,
nav ul li a.active {
  background: linear-gradient(135deg, #d80032, #c41e3a);
  transform: translateY(-2px);
}

nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: white;
}

/* Search Box */
.search-container {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.search-container input {
  padding: 10px 15px;
  border: none;
  border-radius: 25px 0 0 25px;
  font-size: 14px;
  width: 200px;
  outline: none;
}

.search-container button {
  padding: 10px 15px;
  border: none;
  background: #d80032;
  color: white;
  border-radius: 0 25px 25px 0;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

.search-container button:hover {
  background: #c41e3a;
}

.search-highlight {
  background: yellow !important;
  padding: 2px 4px;
  border-radius: 3px;
  animation: highlight 2s ease-in-out;
}

@keyframes highlight {
  0% { background: yellow; }
  100% { background: transparent; }
}

/* Seções principais */
main {
  margin: 40px 0;
}

.content-section {
  background: white;
  margin: 40px 0;
  padding: 60px 0;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.content-section h2 {
  font-size: 2.5rem;
  color: #d80032;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.content-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #d80032, #c41e3a);
  margin: 15px auto;
  border-radius: 2px;
}

.section-intro {
  font-size: 1.2rem;
  text-align: center;
  color: #666;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid de esportes */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.sport-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  border-left: 5px solid #d80032;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.sport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.sport-card h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.sport-card p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.sport-card ul {
  list-style: none;
  margin-top: 20px;
}

.sport-card ul li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.sport-card ul li::before {
  content: '🥋';
  position: absolute;
  left: 0;
  top: 8px;
}

/* Seção destacada */
.featured-section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

/* Timeline */
.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #d80032;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin: 40px 0;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-date {
  background: #d80032;
  color: white;
  padding: 15px 20px;
  border-radius: 25px;
  font-weight: bold;
  position: relative;
  z-index: 2;
  min-width: 120px;
  text-align: center;
}

.timeline-content {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin: 0 30px;
  flex: 1;
}

.timeline-content h3 {
  color: #2c3e50;
  margin-bottom: 10px;
}

/* Estatísticas */
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.stat-item {
  text-align: center;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stat-item h3 {
  font-size: 2.5rem;
  color: #d80032;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Localizações */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.location-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-top: 4px solid #d80032;
}

.location-card h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.location-card ul {
  list-style: none;
}

.location-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.location-card ul li:last-child {
  border-bottom: none;
}

/* Benefícios */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-card {
  text-align: center;
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.benefit-card h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.benefit-card ul {
  list-style: none;
  text-align: left;
}

.benefit-card ul li {
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}

.benefit-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #d80032;
  font-weight: bold;
}

/* AdSense containers */
.ad-container {
  margin: 40px 0;
  text-align: center;
  background: #f8f9fa;
  border: 1px dashed #ddd;
  border-radius: 8px;
  padding: 20px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-top, .ad-bottom {
  max-width: 728px;
  margin: 40px auto;
}

.ad-middle {
  max-width: 300px;
  margin: 40px auto;
}

.ad-sidebar {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  z-index: 999;
}

/* Social Sharing */
.social-share {
  text-align: center;
  margin: 40px 0;
  padding: 20px;
  background: #34495e;
  border-radius: 12px;
}

.social-share h4 {
  color: white;
  margin-bottom: 15px;
}

.social-share button {
  background: none;
  border: 2px solid #d80032;
  color: #d80032;
  padding: 10px 15px;
  margin: 5px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-share button:hover {
  background: #d80032;
  color: white;
  transform: scale(1.1);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #d80032;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  display: none;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.back-to-top:hover {
  background: #c41e3a;
  transform: scale(1.1);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: white;
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-content p {
  flex: 1;
  margin: 0;
}

.cookie-content a {
  color: #d80032;
  text-decoration: none;
}

.cookie-content button {
  background: #d80032;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.3s ease;
}

.cookie-content button:hover {
  background: #c41e3a;
}

.cookie-content button:last-child {
  background: transparent;
  border: 1px solid #d80032;
}

.cookie-content button:last-child:hover {
  background: #d80032;
}

/* Footer */
footer {
  background: #2c3e50;
  color: white;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: #d80032;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  padding: 5px 0;
}

.footer-section ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #d80032;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 20px;
  text-align: center;
  color: #bbb;
}

/* Responsividade */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }
  
  nav .container {
    flex-direction: column;
    gap: 15px;
  }
  
  nav ul {
    width: 100%;
    flex-direction: column;
  }
  
  nav ul li {
    margin: 0;
  }
  
  .search-container {
    margin-top: 0;
  }
  
  .search-container input {
    width: 150px;
  }
  
  .content-section {
    margin: 20px 10px;
    padding: 40px 0;
  }
  
  .sports-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
    margin-left: 40px;
  }
  
  .timeline-date {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    min-width: 80px;
    font-size: 0.9rem;
    padding: 10px;
  }
  
  .timeline-content {
    margin: 0;
    width: 100%;
  }
  
  .ad-sidebar {
    display: none;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .social-share button {
    display: block;
    width: 100%;
    margin: 10px auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .legal-content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  header {
    padding: 40px 0;
  }
  
  header h1 {
    font-size: 1.8rem;
  }
  
  .content-section h2 {
    font-size: 2rem;
  }
  
  .sport-card {
    padding: 20px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .locations-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
  }
  
  .search-container input {
    width: 120px;
    font-size: 12px;
  }
  
  .search-container button {
    font-size: 12px;
  }
}

/* Estilos para páginas legais */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-content h2 {
  color: #d80032;
  margin: 30px 0 15px 0;
  font-size: 1.8rem;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.legal-content h3 {
  color: #2c3e50;
  margin: 20px 0 10px 0;
  font-size: 1.3rem;
}

.legal-content ul {
  margin: 15px 0;
  padding-left: 25px;
}

.legal-content li {
  margin: 8px 0;
}

.legal-content a {
  color: #d80032;
  text-decoration: none;
  border-bottom: 1px dotted #d80032;
}

.legal-content a:hover {
  text-decoration: none;
  border-bottom: 1px solid #d80032;
}

.update-info {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
  border-left: 4px solid #d80032;
}

/* Estilos para página de contato */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.contact-info .contact-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  border-left: 4px solid #d80032;
}

.contact-item h3 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.contact-item a {
  color: #d80032;
  text-decoration: none;
  font-weight: bold;
}

.contact-item a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  background: #d80032;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background: #c41e3a;
}

/* Formulário de contato */
.contact-form {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d80032;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
  line-height: 1.5;
}

.submit-btn {
  background: linear-gradient(135deg, #d80032, #c41e3a);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 0, 50, 0.3);
}

/* FAQ Section */
.faq-section {
  margin-top: 50px;
}

.faq-item {
  background: white;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-left: 4px solid #d80032;
}

.faq-item h3 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.faq-item p {
  line-height: 1.6;
  margin: 0;
}

.faq-item a {
  color: #d80032;
  text-decoration: none;
}

.faq-item a:hover {
  text-decoration: underline;
}

/* Business Hours */
.business-hours {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  margin-top: 40px;
  border-left: 4px solid #d80032;
}

.business-hours h2 {
  color: #2c3e50;
  margin-bottom: 20px;
}

.business-hours ul {
  list-style: none;
  padding: 0;
}

.business-hours li {
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.business-hours li:last-child {
  border-bottom: none;
}
