/* Estilos Generales */
:root {
  --primary-color: #3498db;
  --secondary-color: #2ecc71;
  --dark-color: #2c3e50;
  --light-color: #ecf0f1;
  --accent-color: #e74c3c;
  --text-color: #333333;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
}

.section-header h2:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}

.section-header p {
  color: #777;
  font-size: 18px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(52, 152, 219, 0.2);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: #27ae60;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.btn-small {
  padding: 8px 16px;
  font-size: 14px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #3498db, #1abc9c);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image {
  flex: 1;
  text-align: right;
  max-width: 500px;
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* For Players Section */
.for-players {
  padding: 80px 0;
  background-color: var(--light-color);
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.player-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.player-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-color: rgba(52, 152, 219, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon i {
  font-size: 28px;
  color: var(--primary-color);
}

.player-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: var(--dark-color);
}

.player-card p {
  color: #777;
}

/* For Clubs Section */
.for-clubs {
  padding: 80px 0;
  background-color: white;
}

.clubs-features {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.club-feature {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.feature-icon {
  min-width: 80px;
  height: 80px;
  background-color: rgba(46, 204, 113, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 32px;
  color: var(--secondary-color);
}

.feature-content h3 {
  margin-bottom: 10px;
  font-size: 22px;
  color: var(--dark-color);
}

.feature-content p {
  color: #777;
  font-size: 16px;
  max-width: 600px;
}

/* Upcoming Tournaments Section */
.upcoming-tournaments {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.tournaments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.tournament-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.tournament-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.tournament-date {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 12px;
  font-size: 20px;
  font-weight: 700;
}

.tournament-info {
  padding: 20px;
  flex-grow: 1;
}

.tournament-info h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: var(--dark-color);
}

.tournament-location, .tournament-category {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #777;
  font-size: 14px;
}

.tournament-card .btn {
  margin: 0 20px 20px;
}

.view-all {
  text-align: center;
  margin-top: 20px;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: white;
}

.testimonials-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial {
  min-width: 350px;
  flex: 1;
  background-color: var(--light-gray);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  font-size: 18px;
  color: var(--dark-color);
}

.author-title {
  color: #777;
  font-size: 14px;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #2c3e50, #3498db);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: 40px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .club-feature {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media screen and (max-width: 768px) {
  .section-header h2 {
    font-size: 30px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .testimonials-slider {
    flex-direction: column;
  }
  
  .testimonial {
    min-width: auto;
  }
}