/* Reset y Variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #dc2626;
  --secondary-color: #1e40af;
  --accent-color: #f59e0b;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

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

/*
.search-btn,
.menu-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.125rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.search-btn:hover,
.menu-btn:hover {
  color: var(--primary-color);
}*/



/* carousel */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--white);
  margin: 3px 0;
  transition: 0.3s;
}


.dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active, .dot:hover {
  background: var(--primary-color);
  transform: scale(1.1);
  border-color: var(--primary-color);
}
/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  padding: 10px 0;
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: 12px;
}

.stat-item h4 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-light);
  font-weight: 500;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.team-values {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: 12px;
  margin-bottom: 30px;
}

.team-values h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.values-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

.values-list li i {
  color: var(--primary-color);
  font-size: 1rem;
}

.team-achievements {
  margin-top: 4rem;
  text-align: center;
}

.team-achievements h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

/* Tournaments Section */
.tournaments {
  padding: 80px 0;
  background: var(--gray-50);
}

.tournaments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.tournament-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.tournament-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.tournament-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tournament-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.tournament-info {
  padding: 1.5rem;
}

.tournament-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.tournament-location,
.tournament-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.tournament-description {
  color: var(--text-light);
  margin: 1rem 0 1.5rem;
  line-height: 1.6;
}

.tournament-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.tournament-stats span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.tournament-stats i {
  color: var(--primary-color);
}

/* Próximos Partidos */
.upcoming-matches {
  margin-bottom: 4rem;
}

.upcoming-matches h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

/*
.matches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.match-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.match-card:hover {
  transform: translateY(-3px);
}

.match-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.match-date {
  font-weight: 600;
  color: var(--text-dark);
}

.match-time {
  color: var(--primary-color);
  font-weight: 600;
}

.match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.team-logo {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.team-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.875rem;
}

.vs {
  font-weight: 700;
  color: var(--text-light);
  font-size: 1.125rem;
}

.match-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

*/
.venue {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.venue i {
  color: var(--primary-color);
}

/* Resultados Recientes */
.recent-results {
  margin-top: 4rem;
}

.recent-results h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.result-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.result-card.win {
  border-left-color: #10b981;
}

.result-card.loss {
  border-left-color: #ef4444;
}

.result-card:hover {
  transform: translateY(-3px);
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.result-date {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.875rem;
}

.result-status {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.result-card.win .result-status {
  background: #dcfce7;
  color: #166534;
}

.result-card.loss .result-status {
  background: #fef2f2;
  color: #dc2626;
}

.result-teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.result-teams .team {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.team-score {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.separator {
  color: var(--text-light);
  font-weight: 600;
}

.result-info {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-light);
}

/* News Section */
.news {
  padding: 80px 0;
  background: var(--gray-50);
}

.news-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--text-dark);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.news-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.news-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.news-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.news-card.featured .news-image {
  height: 100%;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.news-content {
  padding: 1.5rem;
}

.news-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.news-card.featured .news-content h3 {
  font-size: 1.5rem;
}

.news-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.news-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.news-meta i {
  color: var(--primary-color);
}

.news-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
  flex-grow: 1;
  line-height: 1.6;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Noticias Adicionales */
.additional-news {
  margin-top: 4rem;
}

.additional-news h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.news-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.news-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  background: var(--white);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.news-item:hover {
  transform: translateX(5px);
}

.news-item-image {
  border-radius: 6px;
  overflow: hidden;
}

.news-item-image img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}

.news-item-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.news-item-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-size: 0.75rem;
}

.news-item-content p {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Newsletter */
.news-newsletter {
  background: var(--primary-color);
  color: var(--white);
  padding: 3rem;
  border-radius: 12px;
  margin: 4rem 0;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.newsletter-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.newsletter-signup {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.newsletter-signup input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
}

.newsletter-signup input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-image img {
  max-width: 100%;
  border-radius: 8px;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--secondary-color);
}

/* Archivo de Noticias */
.news-archive {
  margin-top: 4rem;
}
/*
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.archive-grid {
  grid-template-columns: 1fr;
}

.archive-month {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.archive-month h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.archive-month ul {
  list-style: none;
}

.archive-month li {
  margin-bottom: 0.5rem;
}

.archive-month a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.archive-month a:hover {
  color: var(--primary-color);
}
*/

/* Videos Section */
.videos {
  padding: 80px 0;
  background: var(--white);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.video-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.video-thumbnail {
  position: relative;
  height: 200px;
  overflow: hidden;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
  transform: scale(1.1);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(220, 38, 38, 0.9);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.play-button:hover {
  background: var(--primary-color);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
}

.video-info {
  padding: 1.5rem;
}

.video-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.video-info p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.video-stats {
  display: flex;
  gap: 1rem;
  color: var(--text-light);
  font-size: 0.875rem;
}

.video-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.video-category.live {
  background: #ef4444;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.video-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.video-filter-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--text-dark);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.video-filter-btn:hover,
.video-filter-btn.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.featured-video {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.featured-video-player {
  position: relative;
}

.featured-video-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-video-info h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.video-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.video-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.video-playlists {
  margin-top: 4rem;
}

.playlists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.playlist-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.playlist-thumbnail {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.playlist-count {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.playlist-info {
  padding: 1.5rem;
}

.playlist-info h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.playlist-duration {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* Gallery Section */
.gallery {
  padding: 80px 0;
  background: var(--gray-50);
}

.gallery-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-filter-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--text-dark);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  grid-auto-rows: 250px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  align-self: flex-end;
}

.gallery-info h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.gallery-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.gallery-date {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

.gallery-actions {
  display: flex;
  gap: 0.5rem;
  align-self: flex-start;
}

.gallery-btn {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.gallery-btn:hover {
  background: var(--primary-color);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--gray-50);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  background: var(--primary-color);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: var(--text-light);
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 20px
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.footer-section h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  background: var(--primary-color);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background: var(--secondary-color);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--secondary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

/* Statistics Section */
.statistics {
  /*padding: 80px 0;*/
  background: var(--white);
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.stats-visual {
  background: var(--gray-50);
  padding: 2rem;
  border-radius: 12px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#statsChart,
#battingChart {
  max-width: 100%;
  max-height: 100%;
}

.stats-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

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

.stat-card .stat-icon {
  margin-bottom: 1rem;
}

.stat-card .stat-content h4 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.stat-card .stat-content p {
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.stat-change {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
}

.stat-change.positive {
  background: #dcfce7;
  color: #166534;
}

.stat-change.negative {
  background: #fef2f2;
  color: #dc2626;
}

.stat-change.neutral {
  background: var(--gray-100);
  color: var(--text-light);
}

/* Estadísticas del Equipo */
.team-stats-overview {
  margin-bottom: 4rem;
}

.team-stats-overview h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.stats-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

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

.stat-card .stat-icon {
  margin-bottom: 1rem;
}

.stat-card .stat-content h4 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.stat-card .stat-content p {
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.stat-change {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
}

.stat-change.positive {
  background: #dcfce7;
  color: #166534;
}

.stat-change.negative {
  background: #fef2f2;
  color: #dc2626;
}

.stat-change.neutral {
  background: var(--gray-100);
  color: var(--text-light);
}

/* Estadísticas de Bateo */
.batting-stats {
  margin-bottom: 4rem;
}

.batting-stats h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

/* Líderes Individuales */
.individual-leaders {
  margin-bottom: 4rem;
}

.individual-leaders h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.leader-category {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.leader-category h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

.leader-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.leader-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.leader-item:hover {
  background: var(--gray-50);
}

.position {
  font-weight: 700;
  color: var(--primary-color);
  min-width: 20px;
}

.player-name {
  flex: 1;
  font-weight: 500;
  color: var(--text-dark);
}

.stat-value {
  font-weight: 700;
  color: var(--text-dark);
}

/* Estadísticas de Pitcheo */
.pitching-stats {
  margin-bottom: 4rem;
}

.pitching-stats h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.pitching-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.pitching-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 5.9rem;
}

.pitch-stat-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--secondary-color);
  padding: 30px;
}

.pitch-stat-card h4 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.pitch-stat-card p {
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.rank {
  font-size: 0.875rem;
  color: var(--secondary-color);
  font-weight: 600;
}

.pitching-leaders h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.pitcher-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.pitcher-category h5 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary-color);
}

.pitcher-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pitcher-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.pitcher-item:hover {
  background: var(--gray-50);
}

.pitcher-item span:first-child {
  font-weight: 500;
  color: var(--text-dark);
}

.pitcher-item span:last-child {
  font-weight: 700;
  color: var(--secondary-color);
}

/* Estadísticas Históricas */
.historical-stats {
  margin-bottom: 4rem;
}

.historical-stats h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.historical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.historical-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--accent-color);
}

.historical-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.historical-content .year {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.historical-content .record {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.historical-content p {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Estadísticas Avanzadas */
.advanced-stats h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.advanced-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.advanced-section {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.advanced-section h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

.metric-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.metric-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.5rem;
  align-items: center;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.metric-item:hover {
  background: var(--gray-50);
}

.metric-name {
  font-weight: 600;
  color: var(--text-dark);
}

.metric-value {
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
}

.metric-rank {
  font-size: 0.875rem;
  color: var(--text-light);
  text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--primary-color);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

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

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

  .stats-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pitching-overview {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pitching-cards {
    grid-template-columns: 1fr;
  }

  .pitcher-stats-grid {
    grid-template-columns: 1fr;
  }

  .historical-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .news-filters {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .news-grid {
    grid-template-columns: 1fr;
    height: auto;
    gap: 1.5rem;
  }

  .news-card.featured {
    grid-row: span 1;
  }

  .news-list {
    grid-template-columns: 1fr;
  }

  .news-item {
    flex-direction: column;
  }

  .news-item-image {
    width: 100%;
    height: 150px;
  }

  .news-newsletter {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter-signup {
    flex-direction: column;
  }



  .featured-video,
  .news-card.featured,
  .news-newsletter,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 1;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .video-filters,
  .gallery-filters,
  .news-filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

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

  .stats-cards-grid {
    grid-template-columns: 1fr;
  }

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

  .metric-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.25rem;
  }

  .news-filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .news-card.featured .news-content h3 {
    font-size: 1.25rem;
  }

  .news-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .news-grid,
  .videos-grid,
  .playlists-grid {
    grid-template-columns: 1fr;
  }

  .news-item {
    grid-template-columns: 80px 1fr;
  }

  .news-item-image img {
    height: 60px;
  }

  .modal-content {
    width: 95%;
    padding: 10px;
  }

  .modal-nav {
    padding: 0 10px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Actualizando estilos específicos para Angels */
.angels-header {
  background: var(--gray-900);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 96;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.angels-navbar {
  padding: 1rem 0;
}

/* Estilos mejorados para el breadcrumb */
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.breadcrumb .active {
  color: var(--primary-color);
  font-weight: 600;
}

/* Estilos para las secciones principales */
.section-inicio,
.section-acerca,
.section-torneos,
.section-estadisticas,
.section-noticias,
.section-videos,
.section-galeria,
.section-contacto {
  min-height: 100vh;
  padding: 100px 0 80px;
}

.section-inicio {
  padding-top: 120px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
}

.modal-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 90%;
  max-width: 800px;
  top: 50%;
  transform: translateY(-50%);
}

.modal-content img {
  width: 100%;
  max-height: 900px;
  border-radius: 8px;
}

.close {
  position: absolute;
  top:10px;
  right:10px;
  color: var(--white);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  opacity: 0.7;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
}

.modal-nav button {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background 0.3s ease;
}

.modal-nav button:hover {
  background: var(--primary-color);
}

------------------------

/* Dropdown de Estadísticas */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  /*display: flex;*/
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none !important;
  color: white !important;
}

.dropdown-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;

  background: white;
  min-width: 250px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  list-style: none;
  padding: 0.5rem 0;
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #333;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s;
}

.dropdown-menu a:hover {
  background: #f8f9fa;
  color: #e53e3e;
}

/* Submenús anidados */
.dropdown-submenu {
  position: relative;
}

.submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.submenu-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.submenu {
  position: absolute;
  top: 0;
  left: 100%;
  background: white;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  list-style: none;
  padding: 0.5rem 0;
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s;
}

.dropdown-submenu:hover > .submenu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.dropdown-submenu:hover > .submenu-toggle .submenu-arrow {
  transform: rotate(90deg);
}

.submenu a {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.submenu a:hover {
  background: #e53e3e;
  color: white;
}

/* Estilos móviles */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    min-width: auto;
    width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .dropdown.mobile-open .dropdown-menu {
    display: block;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.mobile-open:hover .dropdown-menu {
    display: block;
  }

  .submenu {
    position: static;
    display: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    min-width: auto;
    width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    margin-left: 1rem;
  }

  .dropdown-submenu.mobile-open .submenu {
    display: block;
  }

  .dropdown-submenu:hover > .submenu {
    display: none;
  }

  .dropdown-submenu.mobile-open:hover > .submenu {
    display: block;
  }
/* El enlace principal no debe cerrar el menú al hacer clic para abrir el submenú */
    .dropdown-toggle, .submenu-toggle {
        cursor: pointer;
    }
  .dropdown-menu a,
  .submenu a {
    color: white;
    padding: 0.75rem 1rem;
  }

  .dropdown-menu a:hover,
  .submenu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
  }
}


/* <CHANGE> Cambiar contact-content para usar grid layout de dos columnas */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* <CHANGE> Responsive para una columna en móvil */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ======================================================= */
/* --- SECCIÓN MÓVIL (Menos de 768px) --- */
/* ======================================================= */
@media (max-width: 768px) {

  /* --- AJUSTE DEL LOGO EN MÓVIL --- */
  .logo-circle {
      /* Reducir el tamaño del contenedor circular */
      width: 40px !important; /* De 50px a 40px */
      height: 40px !important; /* De 50px a 40px */
      /* Asegurar que el padding interno no empuje el logo */
      padding: 0 !important;
  }

  .logo-circle img {
      /* Ajustar la imagen dentro del círculo */
      max-width: 100% !important;
      height: auto !important;
      display: block; /* Para eliminar cualquier espacio extra debajo */
  }

  .nav-logo {
      /* Asegurar que el contenedor del logo no tenga márgenes/paddings que lo descoloquen */
      padding: 0;
      margin: 0;
      display: flex; /* Asegura la alineación si hay más elementos en el logo */
      align-items: center;
  }

  /* Reducir el padding de la navbar en móvil para más espacio vertical */
  .navbar, .angels-navbar {
      padding: 0.5rem 0 !important;
  }
  .tournaments {
  padding: 1px 0;
  }


.metric-rank {
  text-align: center;
}

.pitching-leaders h4 {
  text-align: center;
}


/* --- AJUSTES DE ESTADÍSTICAS DEL EQUIPO --- */

  .team-stats-overview h3 {
      font-size: 1.5rem !important; /* Título más pequeño */
      margin-bottom: 1.5rem !important;
  }

  /* 1. LAYOUT: Fuerzar a 2 columnas en móvil */
  .stats-cards-grid {
      grid-template-columns: 1fr 1fr !important; /* Dos columnas iguales */

  }

  /* 2. COMPACTAR TARJETA: Apilar el icono y el texto para ahorrar espacio horizontal */
  .stat-card {
      flex-direction: column !important; /* Apilar icono encima del texto */
      text-align: center !important;
      padding: 1rem !important; /* Reducir el padding interno */
      gap: 0.5rem !important; /* Reducir el espacio entre elementos */
      border-left: 3px solid var(--primary-color) !important; /* Barra lateral más delgada */
  }

  /* 3. AJUSTAR TAMAÑOS DE FUENTE */
  .stat-icon {
      width: 40px !important; /* Icono más pequeño */
      height: 40px !important;
      font-size: 1.2rem !important;
  }

  .stat-content {
      text-align: center !important; /* Centrar el contenido cuando está apilado */
  }

  .stat-content h4 {
      font-size: 1.4rem !important; /* Reducir tamaño del número principal */
  }

  .stat-content p {
      font-size: 0.8rem !important; /* Texto de descripción más pequeño */
  }

  .stat-change {
      font-size: 0.7rem !important; /* Texto de cambio más pequeño */
  }
}
