@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

textarea {
  border: 2px solid #ccc;
  border-radius: 8px;
  font-family: "Outfit", sans-serif;
  transition: border-color 0.3s ease;
  font-size: 16px;
  width: 300px;
  padding: 5px;
}

textarea:focus {
  border-color: #C82736;
  outline: none;
}

input:not([type=checkbox]) {
  width: 300px;
  padding: 5px;
  border: 2px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  font-family: "Outfit", sans-serif;
}

input:focus {
  border-color: #C82736;
  outline: none;
}

select {
  width: 300px;
  padding: 5px;
  border: 2px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  font-family: "Outfit", sans-serif;
}

select:focus {
  border-color: #C82736;
  outline: none;
}

input[type=checkbox] {
  accent-color: #C82736;
}

.menuMobileForm {
  margin-bottom: 30px;
}

.obligatorio {
  color: red;
  margin-left: 4px;
  font-weight: bold;
}

.modalEnviado-title {
  color: #F2F2F2;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .modalEnviado-title {
    margin-left: 40px;
  }
}

.modalEnviado-description {
  color: #F2F2F2;
  margin-left: 20px;
  margin-bottom: 40px;
  margin-right: 20px;
}
@media (min-width: 1200px) {
  .modalEnviado-description {
    margin-left: 40px;
  }
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  flex-direction: column;
  gap: 20px;
}
footer .footer-rrss {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}
footer .footer-rrss img {
  width: 25px;
}
footer p {
  color: #F2F2F2;
  text-align: center;
}

.politica-privacidad {
  color: #F2F2F2;
}

.menuContainer {
  display: none;
}
@media (min-width: 768px) {
  .menuContainer {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: 40px;
    margin-top: 30px;
    margin-bottom: 30px;
    justify-content: space-between;
    margin-right: 40px;
  }
}
.menuContainer .menuPrincipal {
  display: none;
}
@media (min-width: 768px) {
  .menuContainer .menuPrincipal {
    display: flex;
    gap: 20px;
    align-items: center;
  }
}
.menuContainer .menuPrincipal .logoInicio {
  width: 30px;
}
@media (min-width: 768px) {
  .menuContainer .menuPrincipal .logoInicio {
    width: 70px;
  }
}
.menuContainer .menuPrincipal ul {
  display: flex;
  gap: 20px;
}
.menuContainer .menuPrincipal ul li {
  list-style: none;
  position: relative;
}
.menuContainer .menuPrincipal ul li a {
  text-decoration: none;
  color: #F2F2F2;
  display: flex;
  align-items: center;
  gap: 5px;
}
.menuContainer .menuPrincipal ul li.dropdown .dropdown-toggle {
  cursor: pointer;
}
.menuContainer .menuPrincipal ul li.dropdown .dropdown-toggle .arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.menuContainer .menuPrincipal ul li.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #1c465e;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  display: none;
  z-index: 1000;
  flex-direction: column;
  gap: 0;
}
.menuContainer .menuPrincipal ul li.dropdown .dropdown-menu li {
  border-bottom: 1px solid #eee;
}
.menuContainer .menuPrincipal ul li.dropdown .dropdown-menu li:last-child {
  border-bottom: none;
}
.menuContainer .menuPrincipal ul li.dropdown .dropdown-menu li a {
  padding: 10px 15px;
  font-size: 14px;
  transition: background-color 0.3s ease;
  color: #F2F2F2;
}
.menuContainer .menuPrincipal ul li.dropdown .dropdown-menu li a:hover {
  background-color: #f5f5f5;
  color: #1c465e;
}
.menuContainer .menuPrincipal ul li.dropdown:hover .dropdown-menu {
  display: flex;
}
.menuContainer .menuPrincipal ul li.dropdown:hover .dropdown-menu li {
  background-color: #1c465e;
}
.menuContainer .menuPrincipal ul li.dropdown:hover .dropdown-menu li a {
  color: #F2F2F2;
}
.menuContainer .menuPrincipal ul li.dropdown:hover .dropdown-menu li a:hover {
  background-color: #f5f5f5;
  color: #1c465e !important;
}
.menuContainer .menuPrincipal ul li.dropdown:hover .arrow {
  transform: rotate(180deg);
}
.menuContainer .menuLogin {
  display: none;
}
@media (min-width: 768px) {
  .menuContainer .menuLogin {
    display: inline-block;
    text-align: end;
  }
  .menuContainer .menuLogin ul li {
    list-style: none;
    cursor: pointer;
  }
  .menuContainer .menuLogin ul li a {
    text-decoration: none;
    color: rgba(242, 242, 242, 0.7);
    font-size: 0.85rem;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    opacity: 0.6;
  }
  .menuContainer .menuLogin ul li a:hover {
    color: #F2F2F2;
    opacity: 1;
    background: rgba(242, 242, 242, 0.1);
  }
}

.menuMobileNav {
  display: flex;
  margin: 30px;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .menuMobileNav {
    display: none;
  }
}
@media (min-width: 1200px) {
  .menuMobileNav {
    display: none;
  }
}
.menuMobileNav .logoMobile {
  width: 60px;
}
.menuMobileNav .imgMenu {
  width: 50px;
}
.menuMobileNav #btnMenuMobile {
  background: none;
  border: none;
}

#menuMobile {
  display: none;
  justify-content: space-around;
  gap: 10px;
  list-style: none;
  background-color: #F2F2F2;
  padding: 30px 10px;
}
#menuMobile li {
  margin-left: 10px;
}
#menuMobile li img {
  width: 20px;
  height: 20px;
}
#menuMobile.show {
  display: flex;
  flex-direction: column;
}
#menuMobile a {
  text-decoration: none;
  color: #0D1326;
  font-size: 20px;
}
#menuMobile .mobile-accordion .accordion-header {
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 20px;
  color: #0D1326;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
#menuMobile .mobile-accordion .accordion-header .mobile-arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}
#menuMobile .mobile-accordion .accordion-header .mobile-arrow.rotated {
  transform: rotate(180deg);
}
#menuMobile .mobile-accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: rgba(13, 19, 38, 0.05);
  border-radius: 4px;
  margin: 0;
}
#menuMobile .mobile-accordion .accordion-content.active {
  max-height: 300px;
}
#menuMobile .mobile-accordion .accordion-content li {
  padding-left: 20px;
}
#menuMobile .mobile-accordion .accordion-content li a {
  padding: 8px 15px;
  font-size: 16px;
  display: block;
  border-bottom: 1px solid rgba(13, 19, 38, 0.1);
}
#menuMobile .mobile-accordion .accordion-content li a:last-child {
  border-bottom: none;
}

.title-crear-bbdd {
  color: #F2F2F2;
  margin-left: 40px;
  margin-bottom: 40px;
  margin-top: 20px;
}

.form-crear-bbdd {
  color: #F2F2F2;
  margin-left: 40px;
  margin-bottom: 70px;
  font-size: 1.2rem;
}
.form-crear-bbdd label {
  margin-bottom: 5px;
}
.form-crear-bbdd button {
  margin-top: 15px;
  background-color: #C82736;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  color: #F2F2F2;
  padding: 15px 32px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  border: none;
}
.form-crear-bbdd button a {
  text-decoration: none;
  color: #F2F2F2;
}
.form-crear-bbdd fieldset {
  border: none;
}
.form-crear-bbdd fieldset .posiciones {
  margin-bottom: 15px;
}
.form-crear-bbdd .mensaje-enviado {
  color: #24734E;
  margin-top: 20px;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: bold;
}
.form-crear-bbdd .mensaje-error {
  color: #C82736;
  margin-top: 20px;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: bold;
}
.form-crear-bbdd input:not([type=checkbox]) {
  margin-bottom: 30px;
}
.form-crear-bbdd select {
  margin-bottom: 30px;
}
.form-crear-bbdd p {
  margin-bottom: 20px;
}
.form-crear-bbdd #color-picker {
  padding: 0;
  width: 45px;
  margin-top: 5px;
}

.title-editar-bbdd {
  color: #F2F2F2;
  margin-left: 40px;
  margin-bottom: 40px;
  margin-top: 20px;
}

.form-editar-bbdd {
  color: #F2F2F2;
  margin-left: 40px;
  margin-bottom: 70px;
}
.form-editar-bbdd label {
  margin-bottom: 5px;
}
.form-editar-bbdd button {
  margin-top: 15px;
  background-color: #C82736;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  color: #F2F2F2;
  padding: 15px 32px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  border: none;
}
.form-editar-bbdd button a {
  text-decoration: none;
  color: #F2F2F2;
}
.form-editar-bbdd .mensaje-enviado {
  color: #24734E;
  margin-top: 20px;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: bold;
}
.form-editar-bbdd .mensaje-error {
  color: #C82736;
  margin-top: 20px;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: bold;
}
.form-editar-bbdd input:not([type=checkbox]) {
  margin-bottom: 30px;
}
.form-editar-bbdd select {
  margin-bottom: 30px;
}
.form-editar-bbdd p {
  margin-bottom: 20px;
}
.form-editar-bbdd #color-picker {
  padding: 0;
  width: 45px;
  margin-top: 5px;
}
.form-editar-bbdd a {
  color: #F2F2F2;
}

.title-eliminar-bbdd {
  color: #F2F2F2;
  margin-left: 40px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.mensaje-eliminar-bbdd {
  color: #F2F2F2;
  margin-left: 40px;
  margin-bottom: 40px;
}

.form-eliminar-bbdd {
  margin-left: 40px;
}
.form-eliminar-bbdd button {
  background-color: #C82736;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  color: #F2F2F2;
  padding: 15px 32px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.form-eliminar-bbdd button a {
  text-decoration: none;
  color: #F2F2F2;
}
.form-eliminar-bbdd a {
  color: #F2F2F2;
  margin-left: 10px;
}

.btn-volver {
  text-decoration: none;
  color: #F2F2F2;
  margin-left: 40px;
}

.title-panel-bbdd {
  color: #F2F2F2;
  margin-left: 40px;
  margin-bottom: 40px;
  margin-top: 30px;
}

.btn-crear {
  background-color: #24734E;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  color: #F2F2F2;
  padding: 15px 32px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
  margin-left: 40px;
  margin-bottom: 40px;
}
.btn-crear a {
  text-decoration: none;
  color: #F2F2F2;
}
.btn-crear a {
  font-size: 15px;
}

.table-bbdd {
  border-collapse: collapse;
  width: 95%;
  color: #F2F2F2;
  margin-left: 40px;
  margin-bottom: 40px;
}
.table-bbdd th, .table-bbdd td {
  padding: 8px;
  border: 1px solid #ccc;
  text-align: left;
}
.table-bbdd th {
  color: #F2F2F2;
}
.table-bbdd a {
  margin-right: 8px;
  text-decoration: none;
  color: #F2F2F2;
}

.filtro-bbdd {
  color: #F2F2F2;
  margin-left: 40px;
  margin-bottom: 40px;
}
.filtro-bbdd label {
  color: #F2F2F2;
  margin-right: 10px;
}
.filtro-bbdd select {
  margin-right: 20px;
  width: 10%;
}
.filtro-bbdd button {
  padding: 7px;
  border-radius: 10%;
  cursor: pointer;
}

.hero {
  margin-bottom: 40px;
  position: relative;
  text-align: center;
  color: #F2F2F2;
}
.hero img {
  width: 100%;
}
.hero .hero-texto {
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translate(-40%, -50%);
  display: none;
}
@media (min-width: 1200px) {
  .hero .hero-texto {
    display: inline-block;
  }
}
.hero .hero-texto h1 {
  font-size: 5rem;
}

body {
  background-color: #0D1326;
  font-family: "Outfit", sans-serif;
}

.faq {
  color: #fff;
  padding: 2rem;
  max-width: 800px;
  margin: auto;
  font-family: sans-serif;
}
@media (min-width: 768px) {
  .faq {
    max-width: 650px;
  }
}
.faq h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.faq .faq-item {
  border-bottom: 1px solid #444;
  margin-bottom: 1rem;
}
.faq .faq-item .faq-question {
  background: none;
  color: #fff;
  font-size: 1.1rem;
  padding: 1rem;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
}
.faq .faq-item .faq-question::after {
  content: "▼";
  position: absolute;
  right: 1rem;
  transition: transform 0.3s ease;
}
.faq .faq-item .faq-question.active::after {
  transform: rotate(180deg);
}
.faq .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1rem;
}
.faq .faq-item .faq-answer p {
  margin: 1rem 0;
}
.faq .faq-item .faq-question.active + .faq-answer {
  max-height: 200px;
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero .hero-texto .hero-subtitle {
  font-size: 1rem;
  margin-top: 10px;
  opacity: 0.9;
  color: #F2F2F2;
}
@media (min-width: 768px) {
  .hero .hero-texto .hero-subtitle {
    font-size: 1.2em;
  }
}

.bienvenida-liga {
  background: #C82736;
  padding: 2rem 1rem;
  text-align: center;
  border-bottom: 1px solid #F2F2F2;
}
@media (min-width: 768px) {
  .bienvenida-liga {
    background: none;
    border-bottom: 3px solid #F2F2F2;
    padding: 3rem 1rem;
    margin-bottom: 20px;
  }
}
.bienvenida-liga .contenedor {
  max-width: 800px;
  margin: 0 auto;
}
.bienvenida-liga .contenedor h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #F2F2F2;
  font-family: "Outfit", sans-serif;
}
@media (min-width: 768px) {
  .bienvenida-liga .contenedor h2 {
    font-size: 2rem;
  }
}
.bienvenida-liga .contenedor p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #F2F2F2;
  line-height: 1.5;
  font-family: "Outfit", sans-serif;
}
@media (min-width: 768px) {
  .bienvenida-liga .contenedor p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}
.bienvenida-liga .stats-destacadas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .bienvenida-liga .stats-destacadas {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
  }
}
.bienvenida-liga .stats-destacadas .stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(242, 242, 242, 0.1);
  border-radius: 10px;
  border: 2px solid #F2F2F2;
  font-family: "Outfit", sans-serif;
}
@media (min-width: 768px) {
  .bienvenida-liga .stats-destacadas .stat-item {
    min-width: 100px;
  }
}
.bienvenida-liga .stats-destacadas .stat-item .stat-number {
  display: block;
  font-size: 1.5em;
  font-weight: bold;
  color: #F2F2F2;
}
@media (min-width: 768px) {
  .bienvenida-liga .stats-destacadas .stat-item .stat-number {
    font-size: 1.8em;
  }
}
.bienvenida-liga .stats-destacadas .stat-item .stat-label {
  display: block;
  font-size: 0.9em;
  margin-top: 0.5rem;
  color: #F2F2F2;
}

.widgets-principales {
  padding: 2rem 1rem;
}
@media (min-width: 768px) {
  .widgets-principales {
    background: rgb(18.85, 27.55, 55.1);
    padding: 3rem 1rem;
  }
}
.widgets-principales .widgets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .widgets-principales .widgets-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
}
.widgets-principales .widget {
  background: #F2F2F2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(13, 13, 13, 0.1);
  border: 2px solid #C82736;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 768px) {
  .widgets-principales .widget {
    border-color: #C82736;
    box-shadow: 0 4px 6px rgba(13, 13, 13, 0.1);
  }
  .widgets-principales .widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(13, 13, 13, 0.15);
  }
}
.widgets-principales .widget .widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #0D1326, rgb(180, 35.1, 48.6));
  color: #F2F2F2;
}
.widgets-principales .widget .widget-header h3 {
  margin: 0;
  font-size: 1rem;
  color: #F2F2F2;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}
@media (min-width: 768px) {
  .widgets-principales .widget .widget-header h3 {
    font-size: 1.1em;
  }
}
.widgets-principales .widget .widget-header .ver-mas {
  color: #F2F2F2;
  text-decoration: none;
  font-size: 0.8em;
  opacity: 0.9;
  transition: opacity 0.2s ease;
  font-family: "Outfit", sans-serif;
}
@media (min-width: 768px) {
  .widgets-principales .widget .widget-header .ver-mas {
    font-size: 0.9em;
  }
}
.widgets-principales .widget .widget-header .ver-mas:hover {
  opacity: 1;
}
.widgets-principales .widget .widget-content {
  padding: 1rem;
}
@media (min-width: 768px) {
  .widgets-principales .widget .widget-content {
    padding: 1.5rem;
  }
}

.cta-section {
  padding: 3rem 1rem;
  color: #F2F2F2;
  text-align: center;
}
@media (min-width: 768px) {
  .cta-section {
    padding: 4rem 1rem;
  }
}
.cta-section .cta-content {
  max-width: 800px;
  margin: 0 auto;
}
.cta-section .cta-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #F2F2F2;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}
@media (min-width: 768px) {
  .cta-section .cta-content h2 {
    font-size: 2.5em;
  }
}
.cta-section .cta-content p {
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  font-family: "Outfit", sans-serif;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .cta-section .cta-content p {
    font-size: 1.3em;
  }
}
.cta-section .cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .cta-section .cta-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}
.cta-section .cta-buttons .btn-principal,
.cta-section .cta-buttons .btn-secundario {
  width: 100%;
  max-width: 300px;
  text-align: center;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 1rem;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .cta-section .cta-buttons .btn-principal,
  .cta-section .cta-buttons .btn-secundario {
    width: auto;
    max-width: none;
  }
}
.cta-section .cta-buttons .btn-principal {
  background-color: #C82736;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  color: #F2F2F2;
  padding: 15px 32px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  border: none;
  border: 2px solid #C82736;
  border-radius: 25px;
}
.cta-section .cta-buttons .btn-principal a {
  text-decoration: none;
  color: #F2F2F2;
}
.cta-section .cta-buttons .btn-principal:hover {
  background: rgb(180, 35.1, 48.6);
  transform: translateY(-2px);
}
.cta-section .cta-buttons .btn-secundario {
  background: transparent;
  color: #F2F2F2;
  border: 2px solid #F2F2F2;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
}
.cta-section .cta-buttons .btn-secundario:hover {
  background: #F2F2F2;
  color: #0D1326;
}

.faq-compacto {
  padding: 2rem 1rem;
  background: #f1f3f4;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .faq-compacto {
    padding: 3rem 1rem;
    background: #F2F2F2;
  }
}
.faq-compacto .contenedor {
  max-width: 1000px;
  margin: 0 auto;
}
.faq-compacto h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}
@media (min-width: 768px) {
  .faq-compacto h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.faq-compacto .faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .faq-compacto .faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }
}
.faq-compacto .faq-item {
  background: #F2F2F2;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(13, 13, 13, 0.1);
  border: 1px solid #e9ecef;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 768px) {
  .faq-compacto .faq-item {
    border: 2px solid rgb(59.8, 87.4, 174.8);
  }
  .faq-compacto .faq-item:hover {
    border-color: #C82736;
    box-shadow: 0 4px 8px rgba(13, 13, 13, 0.15);
  }
}
.faq-compacto .faq-item .faq-question {
  width: 100%;
  padding: 1rem;
  text-align: left;
  background: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  color: #2c3e50;
  font-size: 0.9rem;
  font-family: "Outfit", sans-serif;
}
@media (min-width: 768px) {
  .faq-compacto .faq-item .faq-question {
    font-size: 1rem;
  }
}
.faq-compacto .faq-item .faq-question:hover {
  background: #f8f9fa;
}
@media (min-width: 768px) {
  .faq-compacto .faq-item .faq-question:hover {
    background: rgb(84, 111, 196.5);
  }
}
.faq-compacto .faq-item .faq-answer {
  padding: 0 1rem 1rem 1rem;
  display: none;
  border-top: 1px solid #e9ecef;
}
@media (min-width: 768px) {
  .faq-compacto .faq-item .faq-answer {
    border-top-color: rgb(59.8, 87.4, 174.8);
  }
}
.faq-compacto .faq-item .faq-answer.active {
  display: block;
}
.faq-compacto .faq-item .faq-answer p {
  margin: 0.5rem 0 0 0;
  color: #7f8c8d;
  line-height: 1.4;
  font-family: "Outfit", sans-serif;
}
@media (min-width: 768px) {
  .faq-compacto .faq-item .faq-answer p {
    color: rgb(24.7, 36.1, 72.2);
  }
}

.quienes-somos {
  display: flex;
  flex-direction: column;
  margin-left: 50px;
  gap: 100px;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  margin-top: 50px;
  margin-right: 50px;
}
@media (min-width: 1200px) {
  .quienes-somos {
    margin-top: 100px;
    flex-direction: row;
  }
}
.quienes-somos div {
  max-width: 100%;
}
@media (min-width: 1200px) {
  .quienes-somos div {
    max-width: 30%;
  }
}
.quienes-somos div h1 {
  color: #F2F2F2;
  margin-bottom: 30px;
  font-size: 2em;
}
.quienes-somos div p {
  color: #F2F2F2;
  line-height: 2rem;
  font-size: 20px;
  text-align: justify;
}
.quienes-somos img {
  width: 700px;
  height: 500px;
}

.linkParticipa {
  color: #C82736;
}

.formContacto-title {
  color: #F2F2F2;
  text-align: center;
  margin-bottom: 30px;
}

.formContacto-description {
  color: #F2F2F2;
  text-align: center;
  margin-bottom: 35px;
}

.container-contacto {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 20px 70px 20px;
}
@media (min-width: 1200px) {
  .container-contacto {
    flex-direction: column;
    gap: 60px;
    margin: 0 40px 70px 40px;
  }
}
.container-contacto .contacto-form-section {
  flex: 1;
}
.container-contacto .participacion-section {
  flex: 1;
}

.formContacto {
  text-align: center;
  color: #F2F2F2;
}
.formContacto .mensaje-enviado {
  color: #24734E;
  margin-top: 20px;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: bold;
}
.formContacto div {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}
.formContacto div label {
  margin-bottom: 5px;
  font-size: 18px;
}
.formContacto div input {
  font-size: 18px;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  width: 100%;
  max-width: 300px;
}
.formContacto div select {
  font-size: 18px;
}
.formContacto div textarea {
  font-size: 18px;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  width: 100%;
  max-width: 300px;
  resize: vertical;
}
.formContacto button {
  margin-top: 15px;
  background-color: #C82736;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  color: #F2F2F2;
  padding: 15px 32px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  border: none;
  cursor: pointer;
}
.formContacto button a {
  text-decoration: none;
  color: #F2F2F2;
}

.participa {
  display: flex;
  gap: 30px;
  color: #0D1326;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.participa h1, .participa h2 {
  margin-bottom: 20px;
  font-size: 20px;
}
@media (min-width: 768px) {
  .participa h1, .participa h2 {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .participa h1, .participa h2 {
    font-size: 24px;
  }
}
.participa .jugadora {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 30px 15px;
  border-radius: 30px;
  max-width: 600px;
}
.participa .jugadora button {
  background-color: #C82736;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  color: #F2F2F2;
  padding: 15px 32px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  border: none;
  margin-bottom: 20px;
}
.participa .jugadora button a {
  text-decoration: none;
  color: #F2F2F2;
}
.participa .jugadora p {
  width: 70%;
  margin: 0 auto;
}
.participa .voluntaria {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 30px 20px;
  border-radius: 30px;
  width: 100%;
  max-width: 500px;
}
@media (min-width: 768px) {
  .participa .voluntaria {
    padding: 30px 30px;
  }
}
@media (min-width: 1200px) {
  .participa .voluntaria {
    padding: 35px 30px;
  }
}
.participa .voluntaria button {
  background-color: #24734E;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  color: #F2F2F2;
  padding: 15px 32px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  border: none;
  margin-bottom: 20px;
}
.participa .voluntaria button a {
  text-decoration: none;
  color: #F2F2F2;
}
.participa .voluntaria button a {
  text-decoration: none;
  color: inherit;
}
.participa .voluntaria p {
  width: 85%;
  margin: 0 auto;
  font-size: 14px;
}
@media (min-width: 768px) {
  .participa .voluntaria p {
    font-size: 16px;
    width: 80%;
  }
}

.formEnviado {
  text-align: center;
  margin-bottom: 50px;
  background-color: #24734E;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 500px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
}
.formEnviado p {
  line-height: 2rem;
}

.comparteLink {
  color: #F2F2F2;
  margin-bottom: 25px;
}

#btnCompartir {
  background-color: #C82736;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  color: #F2F2F2;
  padding: 15px 32px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}
#btnCompartir a {
  text-decoration: none;
  color: #F2F2F2;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal.hidden {
  display: none;
}

.cerrar-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  color: #F2F2F2;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.btn404 {
  background-color: #C82736;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  color: #F2F2F2;
  padding: 15px 32px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  border: none;
}
.btn404 a {
  text-decoration: none;
  color: #F2F2F2;
}

.container-privacity {
  color: #F2F2F2;
  line-height: 1.6;
  margin: 0 auto;
  padding: 2rem;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.container-privacity h1 {
  margin-bottom: 1rem;
}
.container-privacity h2 {
  margin-top: 2rem;
  font-size: 1.2rem;
}
.container-privacity ul {
  padding-left: 1.2rem;
}
.container-privacity a {
  color: #0077cc;
  text-decoration: none;
}
.container-privacity a:hover {
  text-decoration: underline;
}

.inscripcion-title {
  color: #F2F2F2;
  margin-left: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .inscripcion-title {
    margin-left: 40px;
  }
}

.inscripcion-description {
  color: #F2F2F2;
  margin-left: 20px;
  margin-bottom: 40px;
  margin-right: 20px;
}
@media (min-width: 1200px) {
  .inscripcion-description {
    margin-left: 40px;
    width: 50%;
  }
}

.aviso-archivos {
  color: #f39c12;
  margin-left: 20px;
}

.inscripcion {
  margin-left: 20px;
  margin-right: 20px;
}
.inscripcion .archivo-subido {
  color: #F2F2F2;
  margin-top: 20px;
}
.inscripcion .cambiarArchivoButton {
  margin-top: 10px;
  padding: 5px;
}
.inscripcion input[type=file] {
  color: white;
  width: 100%;
  max-width: 500px;
}
@media (min-width: 1200px) {
  .inscripcion {
    margin-left: 40px;
    width: 50%;
  }
}
.inscripcion .inscripcion-h2 {
  margin-top: 30px;
  color: #F2F2F2;
  font-size: 30px;
}
.inscripcion .inscripcion-h2:nth-of-type(n + 2) {
  margin-top: 50px;
}
.inscripcion .datos-title {
  margin-bottom: 20px;
}
.inscripcion .inscripcion-h3 {
  margin-top: 10px;
  color: #F2F2F2;
  font-size: 25px;
}
.inscripcion .inscripcion-p {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #F2F2F2;
  font-size: 20px;
}
.inscripcion .inscripcion-p:last-of-type {
  margin-bottom: 40px;
}
.inscripcion a {
  color: #F2F2F2;
}
.inscripcion .inscripcion-form-group {
  margin-bottom: 25px;
}
.inscripcion .inscripcion-form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
  color: #F2F2F2;
}
.inscripcion .inscripcion-form-group input,
.inscripcion .inscripcion-form-group select,
.inscripcion .inscripcion-form-group textarea {
  margin-top: 5px;
}
.inscripcion .inscripcion-form-group .errorInscripcion {
  margin-top: 5px;
  color: red;
  font-size: 0.9em;
}
.inscripcion .inscripcion-checkbox-group {
  margin-top: 30px;
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.inscripcion .inscripcion-checkbox-group label {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #F2F2F2;
  cursor: pointer;
}
.inscripcion .inscripcion-checkbox-group .errorInscripcion {
  margin-top: 5px;
  color: red;
  font-size: 0.9em;
  width: 100%;
}
.inscripcion .inscripcion-radio-group {
  margin-top: 30px;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.inscripcion .inscripcion-radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  color: #F2F2F2;
  cursor: pointer;
}
.inscripcion .inscripcion-radio-group input[type=radio] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #F2F2F2;
  border-radius: 50%;
  background-color: transparent;
  position: relative;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.inscripcion .inscripcion-radio-group input[type=radio]:checked::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #C82736;
}
.inscripcion .errorInscripcion {
  margin-top: 5px;
  color: red;
  font-size: 0.9em;
}
.inscripcion .incripcion-acepto-container {
  display: flex;
  flex-direction: row;
  margin-top: 20px;
  margin-bottom: 10px;
}
.inscripcion .incripcion-acepto-container input[type=checkbox] {
  margin-right: 10px;
  cursor: pointer;
}
.inscripcion .incripcion-acepto-container label {
  color: #F2F2F2;
  font-size: 18px;
  cursor: pointer;
}
.inscripcion .incripcion-acepto-container .errorInscripcion {
  margin-top: 5px;
  color: red;
  font-size: 0.9em;
}
.inscripcion .tabla-tallas {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  color: #F2F2F2;
}
.inscripcion .tabla-tallas th,
.inscripcion .tabla-tallas td {
  border: 1px solid;
  padding: 0.5rem;
  text-align: center;
}
.inscripcion .tabla-tallas thead {
  font-weight: bold;
}
.inscripcion #tallaCamiseta,
.inscripcion #tallaPantalon {
  margin-bottom: 30px;
}
.inscripcion .inscripcion-button {
  margin-top: 40px;
  background-color: #C82736;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  color: #F2F2F2;
  padding: 15px 32px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  border: none;
  cursor: pointer;
}
.inscripcion .inscripcion-button a {
  text-decoration: none;
  color: #F2F2F2;
}
.inscripcion .inscripcion-button-firma {
  margin-bottom: 20px;
  margin-left: 20px;
  padding: 5px;
}

#explicacion-firma {
  color: #0D1326;
  background-color: #F2F2F2;
  padding: 5px;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  #explicacion-firma {
    max-width: 50%;
  }
}
#explicacion-firma a {
  color: #0D1326;
}

.login-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-container h1 {
  color: #F2F2F2;
  margin-bottom: 10px;
}
.login-container p {
  color: #F2F2F2;
  margin-bottom: 40px;
}
.login-container form {
  display: flex;
  flex-direction: column;
}
.login-container form label {
  color: #F2F2F2;
}
.login-container form button {
  background-color: #C82736;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  color: #F2F2F2;
  padding: 15px 32px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  border: none;
  cursor: pointer;
}
.login-container form button a {
  text-decoration: none;
  color: #F2F2F2;
}
.login-container form .password-container {
  position: relative;
  display: inline-block;
  width: 100%;
}
.login-container form .password-container input {
  width: 100%;
  padding-right: 40px;
  box-sizing: border-box;
}
.login-container form .password-container .password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  user-select: none;
  padding: 0;
  transition: opacity 0.3s ease;
  opacity: 0.8;
}
.login-container form .password-container .password-toggle:hover {
  opacity: 1;
}
.login-container form .password-container .password-toggle:focus {
  outline: 2px solid #F2F2F2;
  outline-offset: 2px;
  opacity: 1;
}
.login-container form .password-container .password-toggle img {
  width: 20px;
  height: 20px;
  display: block;
  transition: filter 0.3s ease;
}

.errorLogin {
  color: red;
  font-size: 0.9em;
  text-align: center;
  margin-top: 15px;
}

.register-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.register-container h1 {
  color: #F2F2F2;
  margin-bottom: 40px;
}
.register-container form {
  display: flex;
  flex-direction: column;
}
.register-container form label {
  color: #F2F2F2;
}
.register-container form button {
  background-color: #C82736;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  color: #F2F2F2;
  padding: 15px 32px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  border: none;
  cursor: pointer;
}
.register-container form button a {
  text-decoration: none;
  color: #F2F2F2;
}

.bbdd-title {
  color: #F2F2F2;
  margin-left: 20px;
  margin-bottom: 50px;
}

.bbdd-filter {
  margin-left: 20px;
}
.bbdd-filter label {
  color: #F2F2F2;
  margin-right: 10px;
}
.bbdd-filter select {
  margin-right: 20px;
  width: 7%;
}
.bbdd-filter button {
  padding: 7px;
  border-radius: 10%;
  cursor: pointer;
}

.bbdd-table {
  border-collapse: collapse;
  width: 90%;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
}
.bbdd-table th, .bbdd-table td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
  color: #F2F2F2;
}
.bbdd-table th {
  background-color: #F2F2F2;
  color: #0D1326;
}
.bbdd-table th.sortable {
  cursor: pointer;
  user-select: none;
  position: relative;
  transition: background-color 0.2s ease;
}
.bbdd-table th.sortable .sort-arrow {
  margin-left: 5px;
  font-size: 12px;
  color: #666;
  font-weight: normal;
}
.bbdd-table th.sortable .sort-arrow.active {
  color: #0D1326;
  font-weight: bold;
}
.bbdd-table td a {
  color: #F2F2F2;
}

.miCuenta-title {
  color: #F2F2F2;
  margin-left: 40px;
  margin-bottom: 50px;
}

.cambiarContraseña-form {
  margin-left: 40px;
  color: #F2F2F2;
}
.cambiarContraseña-form label {
  color: #F2F2F2;
  margin-right: 20px;
}
.cambiarContraseña-form .mensaje-error {
  color: #C82736;
  margin-bottom: 20px;
}
.cambiarContraseña-form .mensaje-exito {
  color: #24734E;
  margin-bottom: 20px;
}
.cambiarContraseña-form button {
  background-color: #C82736;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  color: #F2F2F2;
  padding: 15px 32px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  border: none;
  cursor: pointer;
}
.cambiarContraseña-form button a {
  text-decoration: none;
  color: #F2F2F2;
}

.acta-container {
  padding: 15px;
  background: #F2F2F2;
  min-height: 100vh;
  font-family: "Outfit", sans-serif;
}
@media (min-width: 768px) {
  .acta-container {
    padding: 20px;
  }
}
@media (min-width: 1200px) {
  .acta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
  }
}

.volver-acta {
  color: #0D1326;
  font-size: 20px;
}

.acta-header {
  margin-top: 20px;
  background: linear-gradient(135deg, #0D1326 0%, rgb(76, 174, 253) 100%);
  color: #F2F2F2;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 4px 6px rgba(13, 13, 13, 0.1);
}
@media (min-width: 768px) {
  .acta-header {
    padding: 30px;
  }
}

.acta-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .acta-title {
    font-size: 2.2em;
  }
}
@media (min-width: 1200px) {
  .acta-title {
    font-size: 2.5em;
  }
}

.partido-info {
  font-size: 1.1em;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .partido-info {
    font-size: 1.3em;
  }
}

.form-acta {
  background: #F2F2F2;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(13, 13, 13, 0.1);
  border: 2px solid rgba(13, 19, 38, 0.1);
}
@media (min-width: 768px) {
  .form-acta {
    padding: 30px;
  }
}

.equipo-section {
  margin-bottom: 40px;
  overflow-x: auto;
}
.equipo-section:last-child {
  margin-bottom: 0;
}

.equipo-header {
  color: #F2F2F2;
  padding: 15px 20px;
  border-radius: 8px 8px 0 0;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .equipo-header {
    font-size: 1.4em;
    padding: 18px 25px;
  }
}
.equipo-header--local {
  background: linear-gradient(135deg, #24734E 0%, rgb(44.5589403974, 142.3410596026, 96.5443708609) 100%);
}
.equipo-header--visitante {
  background: linear-gradient(135deg, #C82736 0%, rgb(215.20041841, 50.89958159, 66.2071129707) 100%);
}

.jugadoras-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 2px 4px rgba(13, 13, 13, 0.1);
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  font-family: "Outfit", sans-serif;
  table-layout: fixed;
}
.jugadoras-table thead th {
  background: rgba(13, 19, 38, 0.05);
  padding: 12px 8px;
  text-align: center;
  font-weight: bold;
  border: 1px solid rgba(13, 19, 38, 0.1);
  color: #0D1326;
  font-size: 0.9em;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .jugadoras-table thead th {
    padding: 15px 10px;
    font-size: 1em;
  }
}
.jugadoras-table tbody td {
  padding: 10px 8px;
  text-align: center;
  border: 1px solid rgba(13, 19, 38, 0.1);
  vertical-align: middle;
}
@media (min-width: 768px) {
  .jugadoras-table tbody td {
    padding: 12px 10px;
  }
}
.jugadoras-table tbody tr:nth-child(even) {
  background-color: rgba(13, 19, 38, 0.02);
}
.jugadoras-table tbody tr:hover {
  background-color: rgba(13, 19, 38, 0.05);
  transition: background-color 0.2s ease;
}

.dorsal-cell {
  font-weight: bold;
  color: #F2F2F2;
  background: #0D1326 !important;
  width: 45px;
  font-size: 1em;
}
@media (min-width: 768px) {
  .dorsal-cell {
    width: 80px;
    font-size: 1.2em;
  }
}

.nombre-cell {
  text-align: left;
  padding-left: 8px !important;
  font-weight: 500;
  color: #0D0D0D;
  font-size: 0.75em;
  display: none;
}
@media (min-width: 768px) {
  .nombre-cell {
    display: table-cell;
    padding-left: 15px !important;
    font-size: 1em;
  }
}

.checkbox-cell {
  width: 50px;
}
@media (min-width: 768px) {
  .checkbox-cell {
    width: 100px;
  }
}

.stats-cell {
  width: 55px;
}
@media (min-width: 768px) {
  .stats-cell {
    width: 100px;
  }
}

.custom-checkbox {
  transform: scale(1.1);
  accent-color: #24734E;
  cursor: pointer;
}
@media (min-width: 768px) {
  .custom-checkbox {
    transform: scale(1.3);
  }
}

.stats-input {
  width: 45px !important;
  height: 30px !important;
  padding: 3px !important;
  border: 1px solid rgba(13, 19, 38, 0.3);
  border-radius: 4px;
  text-align: center;
  font-size: 12px !important;
  font-family: "Outfit", sans-serif;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .stats-input {
    width: 55px !important;
    height: 32px !important;
    padding: 4px !important;
    font-size: 13px !important;
  }
}
.stats-input:focus {
  outline: none;
  border-color: #24734E;
  box-shadow: 0 0 0 2px rgba(36, 115, 78, 0.25);
}

.btn-guardar {
  background-color: #24734E;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  color: #F2F2F2;
  padding: 15px 32px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 30px auto 0;
  box-shadow: 0 4px 6px rgba(13, 13, 13, 0.1);
  font-size: 1em;
  width: 100%;
}
.btn-guardar a {
  text-decoration: none;
  color: #F2F2F2;
}
@media (min-width: 768px) {
  .btn-guardar {
    font-size: 1.1em;
    padding: 18px 45px;
    width: auto;
  }
}
.btn-guardar:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(36, 115, 78, 0.3);
  background-color: rgb(34.2, 109.25, 74.1);
}

@media (max-width: 768px) {
  .jugadoras-table {
    font-size: 0.8em;
  }
  .jugadoras-table thead th {
    padding: 8px 3px;
    font-size: 0.7em;
  }
  .jugadoras-table thead th:nth-child(2) {
    display: none;
  }
  .jugadoras-table tbody td {
    padding: 8px 3px;
  }
  .jugadoras-table tbody td:nth-child(2) {
    display: none;
  }
  .dorsal-cell {
    width: 45px;
    font-size: 0.95em;
  }
  .checkbox-cell,
  .stats-cell {
    width: 50px;
    padding: 6px 2px !important;
  }
  .custom-checkbox {
    transform: scale(1);
  }
  .equipo-header {
    font-size: 1em;
    padding: 12px 15px;
  }
  .acta-container {
    padding: 10px;
  }
  .form-acta {
    padding: 15px 10px;
  }
  .equipo-section {
    margin-bottom: 30px;
  }
}
.jugadora-row--jugando {
  background-color: rgba(36, 115, 78, 0.05) !important;
}
.jugadora-row--jugando:hover {
  background-color: rgba(36, 115, 78, 0.1) !important;
}
.jugadora-row--con-goles {
  border-left: 3px solid #24734E;
}
.jugadora-row--con-asistencias {
  border-right: 3px solid #0D1326;
}

.stats-highlight--goles {
  background-color: rgba(36, 115, 78, 0.1) !important;
  font-weight: bold;
  color: #24734E;
}
.stats-highlight--asistencias {
  background-color: rgba(13, 19, 38, 0.1) !important;
  font-weight: bold;
  color: #0D1326;
}

.panel-container {
  margin-left: 40px;
}
.panel-container h1 {
  color: #F2F2F2;
  margin-bottom: 40px;
}
.panel-container .menuPanel {
  display: flex;
  gap: 40px;
  cursor: pointer;
  flex-wrap: wrap;
  width: 100%;
}
@media (min-width: 1200px) {
  .panel-container .menuPanel {
    flex-wrap: nowrap;
  }
}
.panel-container .menuPanel .menuItemLink {
  text-decoration: none;
  color: inherit;
}
.panel-container .menuPanel .menuItemLink .menuItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background-color: rgb(45, 101, 255);
  border-radius: 10px;
  padding: 20px;
}
.panel-container .menuPanel .menuItemLink .menuItem h2 {
  color: #F2F2F2;
}
.panel-container .menuPanel .menuItemLink .menuItem img {
  width: 50px;
  height: 50px;
}

.formVoluntaria-title {
  color: #F2F2F2;
  text-align: center;
  margin-bottom: 15px;
}

.formVoluntaria-description {
  color: #F2F2F2;
  text-align: center;
  margin-bottom: 35px;
}

.formVoluntaria {
  text-align: center;
  color: #F2F2F2;
  margin-bottom: 70px;
}
.formVoluntaria div:not(.checkbox-container) {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}
.formVoluntaria div:not(.checkbox-container) label {
  margin-bottom: 5px;
  font-size: 18px;
}
.formVoluntaria div:not(.checkbox-container) input {
  font-size: 18px;
}
.formVoluntaria div:not(.checkbox-container) select {
  font-size: 18px;
}
.formVoluntaria div:not(.checkbox-container) textarea {
  font-size: 18px;
}
.formVoluntaria button {
  margin-top: 15px;
  background-color: #C82736;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  color: #F2F2F2;
  padding: 15px 32px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  border: none;
}
.formVoluntaria button a {
  text-decoration: none;
  color: #F2F2F2;
}
.formVoluntaria .mensaje-enviado {
  color: #24734E;
  margin-top: 20px;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: bold;
}
.formVoluntaria .mensaje-error {
  color: #C82736;
  margin-top: 20px;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: bold;
}
.formVoluntaria input:not([type=checkbox]) {
  margin-bottom: 30px;
}
.formVoluntaria select {
  margin-bottom: 30px;
}
.formVoluntaria .checkbox-title {
  margin-bottom: 15px;
  font-size: 18px;
}
.formVoluntaria .checkbox-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .formVoluntaria .checkbox-container {
    flex-direction: row;
  }
}
.formVoluntaria .informacion-container {
  margin-top: 50px;
  font-size: 12px;
  display: flex;
  flex-direction: row;
}
@media (min-width: 768px) {
  .formVoluntaria .informacion-container {
    font-size: 16px;
  }
}
.formVoluntaria .sugerencia-container {
  margin-top: 40px;
}

.modal-voluntaria {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.oculto-voluntaria {
  display: none !important;
}

.form-error-voluntaria {
  background-color: #C82736;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.form-enviado-voluntaria {
  color: #F2F2F2;
  background-color: #24734E;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.cerrar-voluntaria {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.errorListaEspera {
  color: red;
  font-size: 0.9em;
}

.formListaEspera-title {
  color: #F2F2F2;
  text-align: center;
  margin-bottom: 15px;
}

.formListaEspera-description {
  color: #F2F2F2;
  text-align: center;
  margin-bottom: 35px;
}

.formListaEspera {
  text-align: center;
  color: #F2F2F2;
  margin-bottom: 70px;
}
.formListaEspera div:not(.checkbox-container) {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}
.formListaEspera div:not(.checkbox-container) label {
  margin-bottom: 5px;
  font-size: 18px;
}
.formListaEspera div:not(.checkbox-container) input {
  font-size: 18px;
}
.formListaEspera div:not(.checkbox-container) select {
  font-size: 18px;
}
.formListaEspera div:not(.checkbox-container) textarea {
  font-size: 18px;
}
.formListaEspera button {
  margin-top: 15px;
  background-color: #C82736;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  color: #F2F2F2;
  padding: 15px 32px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  border: none;
}
.formListaEspera button a {
  text-decoration: none;
  color: #F2F2F2;
}
.formListaEspera #noSevillaJ, .formListaEspera #noSevillaV {
  display: none;
}
.formListaEspera #otraZona {
  display: none;
}
.formListaEspera input:not([type=checkbox]) {
  margin-bottom: 30px;
}
.formListaEspera select {
  margin-bottom: 10px;
}
.formListaEspera .checkbox-title {
  margin-bottom: 15px;
  font-size: 18px;
}
.formListaEspera .checkbox-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .formListaEspera .checkbox-container {
    flex-direction: row;
  }
}

.mantenimiento-title {
  color: #F2F2F2;
  text-align: center;
  margin-bottom: 15px;
  margin-top: 200px;
}

.mantenimiento-description {
  color: #F2F2F2;
  text-align: center;
  margin-bottom: 100px;
}

.clasificacion-container {
  padding: 1rem 0.5rem;
  min-height: 80vh;
  font-family: "Outfit", sans-serif;
}
@media (min-width: 768px) {
  .clasificacion-container {
    padding: 2rem 1rem;
  }
}

.clasificacion-title {
  color: #F2F2F2;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .clasificacion-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}

.tabla-container {
  overflow-x: auto;
  padding: 0 0.25rem;
}
@media (min-width: 768px) {
  .tabla-container {
    padding: 0 1rem;
  }
}

.tabla-clasificacion {
  width: 100%;
  max-width: 1200px;
  border-collapse: collapse;
  margin: 1rem auto;
  font-size: 0.65rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  overflow: hidden;
  font-family: "Outfit", sans-serif;
}
@media (min-width: 480px) {
  .tabla-clasificacion {
    font-size: 0.75rem;
    margin: 1.5rem auto;
  }
}
@media (min-width: 768px) {
  .tabla-clasificacion {
    width: 95%;
    font-size: 0.9rem;
    margin: 2rem auto;
  }
}
@media (min-width: 1200px) {
  .tabla-clasificacion {
    width: 90%;
    font-size: 1rem;
  }
}
.tabla-clasificacion thead {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}
.tabla-clasificacion thead th {
  padding: 0.4rem 0.15rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #F2F2F2;
  font-size: 0.6rem;
  letter-spacing: 0.3px;
  border-bottom: 3px solid #1c465e;
}
@media (min-width: 480px) {
  .tabla-clasificacion thead th {
    padding: 0.6rem 0.3rem;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
  }
}
@media (min-width: 768px) {
  .tabla-clasificacion thead th {
    padding: 1rem 0.75rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
  }
}
.tabla-clasificacion tbody {
  color: #F2F2F2;
}
.tabla-clasificacion tbody tr {
  transition: all 0.3s ease;
}
.tabla-clasificacion tbody tr:nth-child(even) {
  background: linear-gradient(135deg, #1c465e 0%, rgb(35.1239344262, 87.8098360656, 117.9160655738) 100%);
}
.tabla-clasificacion tbody tr:nth-child(odd) {
  background: linear-gradient(135deg, #4c657a 0%, rgb(90.3709090909, 120.0981818182, 145.0690909091) 100%);
}
.tabla-clasificacion tbody tr:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%) !important;
  transform: scale(1.01);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 10;
  position: relative;
  color: #F2F2F2;
}
.tabla-clasificacion tbody tr:hover .escudo-clasificacion {
  transform: scale(1.15);
}
.tabla-clasificacion tbody tr td {
  padding: 0.4rem 0.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 480px) {
  .tabla-clasificacion tbody tr td {
    padding: 0.6rem 0.3rem;
  }
}
@media (min-width: 768px) {
  .tabla-clasificacion tbody tr td {
    padding: 1rem 0.75rem;
  }
}
.tabla-clasificacion tbody tr td.posicion {
  font-weight: bold;
  font-size: 0.75rem;
  color: #f39c12;
}
@media (min-width: 480px) {
  .tabla-clasificacion tbody tr td.posicion {
    font-size: 0.85rem;
  }
}
@media (min-width: 768px) {
  .tabla-clasificacion tbody tr td.posicion {
    font-size: 1rem;
  }
}
.tabla-clasificacion tbody tr td.equipo-nombre {
  font-weight: 600;
  font-size: 0.7rem;
  text-align: left;
  padding: 0 !important;
}
@media (min-width: 480px) {
  .tabla-clasificacion tbody tr td.equipo-nombre {
    font-size: 0.85rem;
  }
}
@media (min-width: 768px) {
  .tabla-clasificacion tbody tr td.equipo-nombre {
    font-size: 1.05rem;
  }
}
.tabla-clasificacion tbody tr td.equipo-nombre .enlace-equipo {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  color: inherit;
  padding: 0.4rem 0.15rem;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  position: relative;
}
@media (min-width: 480px) {
  .tabla-clasificacion tbody tr td.equipo-nombre .enlace-equipo {
    padding: 0.6rem 0.3rem;
    gap: 0.5rem;
  }
}
@media (min-width: 768px) {
  .tabla-clasificacion tbody tr td.equipo-nombre .enlace-equipo {
    padding: 1rem 0.75rem;
    gap: 0.8rem;
  }
}
.tabla-clasificacion tbody tr td.equipo-nombre .enlace-equipo:hover {
  color: #f39c12;
  text-decoration: none;
  transform: translateX(3px);
}
.tabla-clasificacion tbody tr td.equipo-nombre .enlace-equipo:hover::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: linear-gradient(135deg, #f39c12 0%, rgba(255, 193, 7, 0.8) 100%);
  border-radius: 2px;
  animation: slideIn 0.3s ease;
}
.tabla-clasificacion tbody tr td.equipo-nombre .enlace-equipo:active {
  transform: translateX(1px) scale(0.98);
}
.tabla-clasificacion tbody tr td.equipo-nombre .enlace-equipo:focus {
  outline: 2px solid rgba(255, 193, 7, 0.5);
  outline-offset: 2px;
  border-radius: 4px;
}
.tabla-clasificacion tbody tr td.puntos-destacados {
  font-weight: bold;
  font-size: 0.85rem;
  color: #F2F2F2;
}
@media (min-width: 480px) {
  .tabla-clasificacion tbody tr td.puntos-destacados {
    font-size: 0.95rem;
  }
}
@media (min-width: 768px) {
  .tabla-clasificacion tbody tr td.puntos-destacados {
    font-size: 1.1rem;
  }
}
.tabla-clasificacion tbody tr td.no-datos {
  font-style: italic;
  opacity: 0.7;
  font-size: 0.9rem;
  padding: 1.5rem;
  color: #95a5a6;
}
@media (min-width: 768px) {
  .tabla-clasificacion tbody tr td.no-datos {
    font-size: 1.1rem;
    padding: 2rem;
  }
}

.escudo-clasificacion {
  width: 18px;
  height: 18px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
@media (min-width: 480px) {
  .escudo-clasificacion {
    width: 22px;
    height: 22px;
  }
}
@media (min-width: 768px) {
  .escudo-clasificacion {
    width: 32px;
    height: 32px;
  }
}

.nombre-equipo-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

@keyframes slideIn {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 3px;
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tabla-clasificacion {
  animation: fadeInUp 0.6s ease-out;
}

.tabla-clasificacion th {
  position: relative;
}
.tabla-clasificacion th[title]:hover::after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: #F2F2F2;
  padding: 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  z-index: 1000;
  font-weight: normal;
  text-transform: none;
}

.estadisticas-container {
  padding: 2rem 1rem;
  min-height: 80vh;
  font-family: "Outfit", sans-serif;
}

.estadisticas-title {
  color: #F2F2F2;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .estadisticas-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}

.filtro-estadisticas-container {
  margin: 2rem 0;
  text-align: center;
}
.filtro-estadisticas-container .filtro-select {
  background: linear-gradient(135deg, #1c465e 0%, #4c657a 100%);
  color: #F2F2F2;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.filtro-estadisticas-container .filtro-select:hover {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.filtro-estadisticas-container .filtro-select:focus {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}
.filtro-estadisticas-container .filtro-select option {
  background: #1c465e;
  color: #F2F2F2;
  padding: 10px;
}

.tablas-container {
  overflow-x: auto;
  padding: 0 1rem;
}

.tabla-estadisticas {
  width: 100%;
  max-width: 800px;
  border-collapse: collapse;
  margin: 2rem auto;
  font-size: 0.85rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: opacity 0.3s ease;
  font-family: "Outfit", sans-serif;
}
@media (min-width: 480px) {
  .tabla-estadisticas {
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) {
  .tabla-estadisticas {
    width: 95%;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .tabla-estadisticas {
    width: 90%;
  }
}
.tabla-estadisticas thead {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}
.tabla-estadisticas thead th {
  padding: 0.75rem 0.4rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #F2F2F2;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  border-bottom: 3px solid #1c465e;
}
@media (min-width: 480px) {
  .tabla-estadisticas thead th {
    padding: 0.9rem 0.6rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
  }
}
@media (min-width: 768px) {
  .tabla-estadisticas thead th {
    padding: 1rem 0.75rem;
    font-size: 0.9rem;
  }
}
.tabla-estadisticas tbody {
  color: #F2F2F2;
}
.tabla-estadisticas tbody tr {
  transition: all 0.3s ease;
}
.tabla-estadisticas tbody tr:nth-child(even) {
  background: linear-gradient(135deg, #1c465e 0%, rgb(35.1239344262, 87.8098360656, 117.9160655738) 100%);
}
.tabla-estadisticas tbody tr:nth-child(odd) {
  background: linear-gradient(135deg, #4c657a 0%, rgb(90.3709090909, 120.0981818182, 145.0690909091) 100%);
}
.tabla-estadisticas tbody tr:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%) !important;
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 10;
  position: relative;
}
.tabla-estadisticas tbody tr td {
  padding: 0.75rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: #F2F2F2 !important;
}
@media (min-width: 480px) {
  .tabla-estadisticas tbody tr td {
    padding: 0.9rem 0.6rem;
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) {
  .tabla-estadisticas tbody tr td {
    padding: 1rem 0.75rem;
    font-size: 1rem;
  }
}
.tabla-estadisticas tbody tr td.jugadora-nombre {
  font-weight: 600;
  font-size: 0.85rem;
  text-align: left;
  padding-left: 0.8rem;
  color: #F2F2F2 !important;
}
@media (min-width: 480px) {
  .tabla-estadisticas tbody tr td.jugadora-nombre {
    font-size: 0.95rem;
    padding-left: 1rem;
  }
}
@media (min-width: 768px) {
  .tabla-estadisticas tbody tr td.jugadora-nombre {
    font-size: 1.05rem;
  }
}
.tabla-estadisticas tbody tr td.equipo-nombre {
  font-weight: 500;
  font-size: 0.75rem;
  color: #F2F2F2 !important;
}
@media (min-width: 480px) {
  .tabla-estadisticas tbody tr td.equipo-nombre {
    font-size: 0.85rem;
  }
}
@media (min-width: 768px) {
  .tabla-estadisticas tbody tr td.equipo-nombre {
    font-size: 0.95rem;
  }
}
.tabla-estadisticas tbody tr td.stat-destacada {
  font-weight: bold;
  font-size: 1rem;
  color: #F2F2F2 !important;
}
@media (min-width: 480px) {
  .tabla-estadisticas tbody tr td.stat-destacada {
    font-size: 1.15rem;
  }
}
@media (min-width: 768px) {
  .tabla-estadisticas tbody tr td.stat-destacada {
    font-size: 1.3rem;
  }
}
.tabla-estadisticas tbody tr td.no-datos {
  font-style: italic;
  opacity: 0.7;
  font-size: 1.1rem;
  padding: 2rem;
  color: #95a5a6 !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tabla-estadisticas {
  animation: fadeInUp 0.6s ease-out;
}

.tabla-estadisticas.loading {
  opacity: 0.6;
  pointer-events: none;
}
.tabla-estadisticas.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #F2F2F2;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.aviso-estadisticas {
  color: #F2F2F2;
  text-align: center;
}
.aviso-estadisticas a {
  color: #F2F2F2;
  text-decoration: underline;
}

.equipos-title {
  color: #F2F2F2;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .equipos-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}

.equipos-container h1 {
  color: #F2F2F2;
  margin-bottom: 40px;
  margin-left: 40px;
}
.equipos-container .menuPanelEquipos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  cursor: pointer;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .equipos-container .menuPanelEquipos {
    flex-direction: row;
  }
}
.equipos-container .menuPanelEquipos .LinkEquipo {
  text-decoration: none;
  color: inherit;
}
.equipos-container .menuPanelEquipos .LinkEquipo .itemEquipo {
  display: flex;
  width: 200px;
  height: 200px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: rgb(45, 101, 255);
  border-radius: 10px;
  padding: 20px;
  position: relative;
}
.equipos-container .menuPanelEquipos .LinkEquipo .itemEquipo h2 {
  color: #F2F2F2;
  font-size: 25px;
}
.equipos-container .menuPanelEquipos .LinkEquipo .itemEquipo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}
.equipos-container .menuPanelEquipos .LinkEquipo .itemEquipo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.equipos-container .menuPanelEquipos .LinkEquipo .itemEquipo h2 {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
}
.equipos-container .menuPanelEquipos .LinkEquipo .itemEquipo img {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.equipo-container {
  text-align: center;
  padding: 20px;
}
.equipo-container .info-equipo .nombre-equipo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-direction: row;
}
.equipo-container .info-equipo h1 {
  color: #F2F2F2;
  margin: 0;
}
.equipo-container .info-equipo p {
  color: #F2F2F2;
}
.equipo-container .info-equipo img {
  width: 100px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .equipo-container .info-equipo img {
    width: 150px;
  }
}
.equipo-container .info-equipo .color-equipo {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
  border: 2px solid #F2F2F2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}
.equipo-container .jugadoras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.equipo-container .jugadoras-grid .jugadora-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.equipo-container .jugadoras-grid .jugadora-card img {
  width: 100%;
  border-radius: 5px;
}
.equipo-container .jugadoras-grid-4x3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.equipo-container .jugadoras-grid-4x3 .jugadora-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.equipo-container .jugadoras-grid-4x3 .jugadora-card-link:hover {
  transform: translateY(-5px);
}
.equipo-container .jugadoras-grid-4x3 .jugadora-card-link:hover .jugadora-card {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.equipo-container .jugadoras-grid-4x3 .jugadora-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 15px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease;
  cursor: pointer;
  position: relative;
}
.equipo-container .jugadoras-grid-4x3 .jugadora-card.capitana {
  border: 2px solid #ffd700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}
.equipo-container .jugadoras-grid-4x3 .jugadora-card.capitana:hover {
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}
.equipo-container .jugadoras-grid-4x3 .jugadora-card .icono-capitana {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.equipo-container .jugadoras-grid-4x3 .jugadora-card .icono-capitana img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin: 0;
  border-radius: 0;
}
.equipo-container .jugadoras-grid-4x3 .jugadora-card img {
  width: 100%;
  max-width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}
.equipo-container .jugadoras-grid-4x3 .jugadora-card h4 {
  margin: 10px 0 5px 0;
  font-size: 1rem;
  color: #0D0D0D;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.equipo-container .jugadoras-grid-4x3 .jugadora-card h4 .icono-capitana-nombre {
  width: 16px;
  height: 16px;
  object-fit: contain;
  margin-left: 5px;
}
.equipo-container .jugadoras-grid-4x3 .jugadora-card p {
  margin: 0;
  color: #666;
  font-weight: bold;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .equipo-container .jugadoras-grid-4x3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .equipo-container .jugadoras-grid-4x3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.jugadora-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.jugadora-container .info-principal {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .jugadora-container .info-principal {
    flex-direction: column;
    text-align: center;
  }
}
.jugadora-container .info-principal .foto-jugadora {
  flex-shrink: 0;
  position: relative;
}
.jugadora-container .info-principal .foto-jugadora img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #F2F2F2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.jugadora-container .info-principal .foto-jugadora .icono-capitana-foto {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  border: 2px solid #ffd700;
}
.jugadora-container .info-principal .foto-jugadora .icono-capitana-foto img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  margin: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
}
.jugadora-container .info-principal .datos-basicos {
  flex: 1;
}
.jugadora-container .info-principal .datos-basicos h1 {
  color: #F2F2F2;
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 768px) {
  .jugadora-container .info-principal .datos-basicos h1 {
    font-size: 2rem;
    justify-content: center;
  }
}
.jugadora-container .info-principal .datos-basicos h1 .icono-capitana-nombre {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.jugadora-container .info-principal .datos-basicos .dorsal {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.jugadora-container .info-principal .datos-basicos .dorsal .numero {
  background: #F2F2F2;
  color: #0D0D0D;
  font-size: 2rem;
  font-weight: bold;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jugadora-container .info-principal .datos-basicos .dorsal .texto {
  color: #F2F2F2;
  font-size: 1.2rem;
}
.jugadora-container .info-principal .datos-basicos .posicion {
  color: #F2F2F2;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}
.jugadora-container .info-principal .datos-basicos .equipo a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #F2F2F2;
  text-decoration: none;
  font-size: 1.2rem;
  transition: opacity 0.3s ease;
}
.jugadora-container .info-principal .datos-basicos .equipo a:hover {
  opacity: 0.8;
}
.jugadora-container .info-principal .datos-basicos .equipo a .color-equipo {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #F2F2F2;
}
.jugadora-container .stats-temporada-actual {
  margin-bottom: 40px;
}
.jugadora-container .stats-temporada-actual h2 {
  color: #F2F2F2;
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.jugadora-container .stats-temporada-actual .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .jugadora-container .stats-temporada-actual .stats-grid {
    grid-template-columns: 1fr;
  }
}
.jugadora-container .stats-temporada-actual .stats-grid .stat-item {
  background: #F2F2F2;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.jugadora-container .stats-temporada-actual .stats-grid .stat-item .stat-numero {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  color: #e74c3c;
  margin-bottom: 5px;
}
.jugadora-container .stats-temporada-actual .stats-grid .stat-item .stat-label {
  color: #666;
  font-size: 1rem;
  font-weight: 600;
}
.jugadora-container .historial-temporadas {
  margin-bottom: 40px;
}
.jugadora-container .historial-temporadas h2 {
  color: #F2F2F2;
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.jugadora-container .historial-temporadas .tabla-estadisticas {
  background: #F2F2F2;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.jugadora-container .historial-temporadas .tabla-estadisticas table {
  width: 100%;
  border-collapse: collapse;
}
.jugadora-container .historial-temporadas .tabla-estadisticas table thead {
  background: #e74c3c;
  color: #F2F2F2;
}
.jugadora-container .historial-temporadas .tabla-estadisticas table thead th {
  padding: 15px;
  text-align: left;
  font-weight: 600;
}
.jugadora-container .historial-temporadas .tabla-estadisticas table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  color: #333;
}
.jugadora-container .historial-temporadas .tabla-estadisticas table tbody tr:nth-child(even) {
  background: #f8f9fa;
}
.jugadora-container .historial-temporadas .tabla-estadisticas table tbody tr:hover {
  background: #e8f4fd !important;
  color: #333 !important;
}
.jugadora-container .historial-temporadas .tabla-estadisticas table tbody tr.total-row {
  background: #f8f9fa !important;
  border-top: 2px solid #e74c3c;
  color: #333 !important;
}
.jugadora-container .historial-temporadas .tabla-estadisticas table tbody tr.total-row:hover {
  background: #e8f4fd !important;
}
.jugadora-container .historial-temporadas .tabla-estadisticas table tbody tr td {
  padding: 15px;
}

.document-title {
  color: #F2F2F2;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .document-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}

.document-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 0 auto 60px auto;
  max-width: 800px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .document-list {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    padding: 0 40px;
  }
}
@media (min-width: 1200px) {
  .document-list {
    max-width: 900px;
  }
}
.document-list .document-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(76, 101, 122, 0.15), 0 3px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(76, 101, 122, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.document-list .document-item span {
  color: #C82736;
}
.document-list .document-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4c657a, #1c465e);
}
.document-list .document-item:hover {
  transform: translateY(-8px);
  background: rgb(255, 255, 255);
  box-shadow: 0 20px 40px rgba(76, 101, 122, 0.2), 0 8px 16px rgba(0, 0, 0, 0.1);
}
.document-list .document-item:hover .btn-descargar {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(76, 101, 122, 0.3);
}
.document-list .document-item h3 {
  margin: 0 0 1rem 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media (min-width: 768px) {
  .document-list .document-item h3 {
    font-size: 1.5rem;
  }
}
.document-list .document-item h3::before {
  content: attr(data-icon);
  font-size: 2rem;
  background: linear-gradient(135deg, #4c657a, #1c465e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.document-list .document-item p {
  margin: 0 0 1.5rem 0;
  color: #5a6c7d;
  line-height: 1.6;
  font-size: 0.95rem;
}
@media (min-width: 768px) {
  .document-list .document-item p {
    font-size: 1rem;
  }
}
.document-list .document-item .btn-descargar {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, #4c657a 0%, #1c465e 100%);
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(76, 101, 122, 0.2);
}
.document-list .document-item .btn-descargar::after {
  content: "↗";
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.document-list .document-item .btn-descargar:hover {
  background: linear-gradient(135deg, #1c465e 0%, #4c657a 100%);
  border-color: rgba(255, 255, 255, 0.2);
}
.document-list .document-item .btn-descargar:hover::after {
  transform: translate(2px, -2px);
}
.document-list .document-item .btn-descargar[download] {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}
.document-list .document-item .btn-descargar[download]::after {
  content: "⬇";
}
.document-list .document-item .btn-descargar[download]:hover {
  background: linear-gradient(135deg, #229954 0%, #27ae60 100%);
}
@media (min-width: 768px) {
  .document-list .document-item .btn-descargar {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.document-item {
  animation: fadeInUp 0.6s ease forwards;
}
.document-item:nth-child(1) {
  animation-delay: 0.1s;
}
.document-item:nth-child(2) {
  animation-delay: 0.2s;
}
.document-item:nth-child(3) {
  animation-delay: 0.3s;
}

.calendario-partidos {
  width: 95%;
  max-width: 1200px;
  margin: 1rem auto;
  font-size: 0.9rem;
  padding: 0 1rem;
}
.calendario-partidos h2 {
  color: #F2F2F2;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 300;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.calendario-partidos h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #4c657a, #1c465e);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}
@media (min-width: 768px) {
  .calendario-partidos {
    width: 90%;
    margin: 2rem auto;
    font-size: 0.95rem;
    padding: 0 2rem;
  }
  .calendario-partidos h2 {
    margin-bottom: 3rem;
    font-size: 2.2rem;
  }
}
@media (min-width: 1200px) {
  .calendario-partidos {
    width: 80%;
    max-width: 900px;
  }
}

.jornada {
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.jornada:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 3px 10px rgba(0, 0, 0, 0.1);
}
.jornada h3 {
  background: linear-gradient(135deg, #4c657a 0%, #1c465e 100%);
  margin: 0;
  padding: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #F2F2F2;
  position: relative;
}
.jornada h3::before {
  content: "⚽";
  position: absolute;
  left: 0.8rem;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .jornada h3 {
    padding: 1.25rem;
    font-size: 1.1rem;
  }
  .jornada h3::before {
    left: 1.5rem;
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) {
  .jornada {
    margin-bottom: 2.5rem;
  }
}

.partidos {
  background: #ffffff;
  position: relative;
}

.partido {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem 0.8rem;
  border-bottom: 1px solid rgba(76, 101, 122, 0.1);
  position: relative;
  transition: all 0.3s ease;
}
.partido::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: transparent;
  transition: background 0.3s ease;
}
.partido:nth-child(even) {
  background: linear-gradient(90deg, #f8f9fa 0%, #f1f3f4 100%);
}
.partido:nth-child(odd) {
  background: #ffffff;
}
.partido:last-child {
  border-bottom: none;
}
.partido:hover {
  background: linear-gradient(90deg, rgba(76, 101, 122, 0.05) 0%, rgba(28, 70, 94, 0.08) 100%) !important;
  transform: translateX(8px);
}
.partido:hover::before {
  background: linear-gradient(180deg, #4c657a 0%, #1c465e 100%);
}
.partido:hover .enfrentamiento .equipo-local,
.partido:hover .enfrentamiento .equipo-visitante {
  color: #1c465e;
}
@media (min-width: 768px) {
  .partido {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
  }
}
.partido.partido-jugado {
  background: linear-gradient(135deg, rgba(39, 174, 96, 0.03) 0%, rgba(34, 153, 84, 0.06) 100%) !important;
}
.partido.partido-jugado .enfrentamiento .equipo-local,
.partido.partido-jugado .enfrentamiento .equipo-visitante {
  color: #2c3e50;
  font-weight: 700;
}

.enfrentamiento {
  width: 100%;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  gap: 0.8rem;
}
@media (min-width: 768px) {
  .enfrentamiento {
    flex-grow: 1;
    width: auto;
    margin-bottom: 0;
    justify-content: flex-start;
    gap: 1.5rem;
  }
}

.equipo-con-escudo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}
.equipo-con-escudo.equipo-local-wrapper {
  flex-direction: row-reverse;
  justify-content: flex-start;
}
.equipo-con-escudo.equipo-local-wrapper .equipo-local {
  text-align: right;
}
.equipo-con-escudo.equipo-visitante-wrapper {
  justify-content: flex-start;
}
.equipo-con-escudo.equipo-visitante-wrapper .equipo-visitante {
  text-align: left;
}
@media (min-width: 768px) {
  .equipo-con-escudo {
    gap: 0.8rem;
  }
}

.escudo-equipo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .escudo-equipo {
    width: 35px;
    height: 35px;
  }
}
.partido:hover .escudo-equipo {
  transform: scale(1.1);
}

.equipo-local {
  font-size: 0.85rem;
  font-weight: 700;
  color: #2c3e50;
  transition: color 0.3s ease;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .equipo-local {
    font-size: 1.2rem;
  }
}

.vs {
  color: #7f8c8d;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  background: #ecf0f1;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .vs {
    margin: 0 0.5rem;
    font-size: 0.9rem;
    padding: 0.3rem 0.6rem;
  }
}

.equipo-visitante {
  font-weight: 700;
  font-size: 0.85rem;
  color: #2c3e50;
  transition: color 0.3s ease;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .equipo-visitante {
    font-size: 1.2rem;
  }
}

.fecha {
  color: #7f8c8d;
  font-size: 0.75rem;
  white-space: nowrap;
  font-weight: 500;
  align-self: center;
  background: #f8f9fa;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  border: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
@media (min-width: 768px) {
  .fecha {
    margin-left: 1.5rem;
    font-size: 0.9rem;
    align-self: auto;
    padding: 0.4rem 1rem;
  }
}

.resultado {
  color: #2c3e50;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .resultado {
    margin: 0 1rem;
    font-size: 1.2rem;
    gap: 0.5rem;
  }
}

.equipo-info {
  display: flex;
  align-items: center;
}

.campo {
  font-size: 0.75rem;
  color: #95a5a6;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.observaciones {
  background: rgba(149, 165, 166, 0.1);
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  border-left: 3px solid #95a5a6;
  font-size: 0.75rem;
  max-width: 100%;
  word-wrap: break-word;
}

.indicador-pendiente {
  background: rgba(243, 156, 18, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  border: 1px solid rgba(243, 156, 18, 0.3);
  animation: fadeInOut 2s infinite;
}

.fecha-hoy {
  background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
  color: white !important;
  animation: pulse 2s infinite;
}

.no-partidos {
  color: #F2F2F2;
  text-align: center;
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
.inscripciones-title {
  color: #F2F2F2;
  text-align: center;
  margin-bottom: 15px;
}

.inscripciones-description {
  color: #F2F2F2;
  text-align: center;
  margin-bottom: 35px;
}

.pagos-container {
  padding: 15px;
  min-height: 100vh;
  font-family: "Outfit", sans-serif;
}
@media (min-width: 768px) {
  .pagos-container {
    padding: 20px;
  }
}
@media (min-width: 1200px) {
  .pagos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
  }
}

.volver-pagos {
  color: #0D1326;
  font-size: 20px;
}

.btn-nuevo-pago {
  background-color: #24734E;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  color: #F2F2F2;
  padding: 15px 32px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  border: none;
  text-decoration: none;
}
.btn-nuevo-pago a {
  text-decoration: none;
  color: #F2F2F2;
}

.pagos-header {
  color: #F2F2F2;
  padding: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .pagos-header {
    padding: 30px;
  }
}

.pagos-title {
  font-size: 1.8em;
  margin-bottom: 0;
  font-weight: bold;
}
@media (min-width: 768px) {
  .pagos-title {
    font-size: 2.2em;
  }
}
@media (min-width: 1200px) {
  .pagos-title {
    font-size: 2.5em;
  }
}

.mensaje-error {
  background: rgba(200, 39, 54, 0.1);
  border: 1px solid #C82736;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  color: #C82736;
  font-weight: 500;
}

.form-pagos {
  background: #F2F2F2;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(13, 13, 13, 0.1);
  border: 2px solid rgba(13, 19, 38, 0.1);
}
@media (min-width: 768px) {
  .form-pagos {
    padding: 30px;
  }
}

.seccion-pago {
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(13, 19, 38, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(13, 19, 38, 0.1);
}
.seccion-pago:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .seccion-pago {
    padding: 25px;
  }
}

.seccion-titulo {
  font-size: 1.2em;
  font-weight: bold;
  color: #0D1326;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(13, 19, 38, 0.2);
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .seccion-titulo {
    font-size: 1.4em;
  }
}

.tipo-pago-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .tipo-pago-container {
    flex-direction: row;
    gap: 30px;
  }
}

.tipo-pago-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  border: 2px solid rgba(13, 19, 38, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #F2F2F2;
}
@media (min-width: 768px) {
  .tipo-pago-option {
    flex: 1;
    padding: 20px;
  }
}
.tipo-pago-option:hover {
  border-color: #0D1326;
  background: rgba(13, 19, 38, 0.05);
}
.tipo-pago-option input[type=radio]:checked + .radio-custom + strong {
  color: #0D1326;
}
.tipo-pago-option input[type=radio]:checked ~ * {
  color: #0D1326;
}
.tipo-pago-option input[type=radio] {
  display: none;
}
.tipo-pago-option strong {
  font-size: 1.1em;
  margin-bottom: 5px;
  display: block;
}
.tipo-pago-option small {
  color: rgba(13, 13, 13, 0.6);
  font-size: 0.9em;
  display: block;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(13, 19, 38, 0.3);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}
.radio-custom::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #0D1326;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease;
}

input[type=radio]:checked + .radio-custom {
  border-color: #0D1326;
}
input[type=radio]:checked + .radio-custom::after {
  transform: translate(-50%, -50%) scale(1);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .form-row {
    flex-direction: row;
    gap: 20px;
  }
}

.form-group {
  flex: 1;
  position: relative;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0D1326;
  font-size: 0.95em;
}
.form-group select, .form-group input[type=text], .form-group input[type=number], .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(13, 19, 38, 0.3);
  border-radius: 6px;
  font-size: 14px;
  font-family: "Outfit", sans-serif;
  transition: border-color 0.3s ease;
  background: #F2F2F2;
}
@media (min-width: 768px) {
  .form-group select, .form-group input[type=text], .form-group input[type=number], .form-group textarea {
    padding: 12px 18px;
    font-size: 15px;
  }
}
.form-group select:focus, .form-group input[type=text]:focus, .form-group input[type=number]:focus, .form-group textarea:focus {
  outline: none;
  border-color: #0D1326;
  box-shadow: 0 0 0 3px rgba(13, 19, 38, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.input-suffix {
  position: absolute;
  right: 15px;
  top: 38px;
  color: rgba(13, 13, 13, 0.6);
  font-weight: 600;
  pointer-events: none;
}

.individual-section.style.display.none, .grupal-section.style.display.none {
  display: none !important;
}

.subseccion {
  margin-bottom: 25px;
}
.subseccion:last-child {
  margin-bottom: 0;
}
.subseccion h4 {
  font-size: 1.1em;
  font-weight: 600;
  color: #0D1326;
  margin-bottom: 15px;
}

.buscador-container {
  position: relative;
}
.buscador-container input[type=text] {
  padding-left: 45px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>');
  background-repeat: no-repeat;
  background-position: 15px center;
  background-size: 20px;
}

.resultados-busqueda {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #F2F2F2;
  border: 1px solid rgba(13, 19, 38, 0.2);
  border-top: none;
  border-radius: 0 0 6px 6px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(13, 13, 13, 0.1);
}

.resultado-item {
  padding: 12px 15px;
  cursor: pointer;
  border-bottom: 1px solid rgba(13, 19, 38, 0.1);
  transition: background-color 0.2s ease;
}
.resultado-item:hover {
  background: rgba(13, 19, 38, 0.05);
}
.resultado-item:last-child {
  border-bottom: none;
}

.jugadora-info strong {
  display: block;
  color: #0D0D0D;
  font-size: 0.95em;
}

.jugadora-detalles {
  font-size: 0.85em;
  color: rgba(13, 13, 13, 0.6);
  margin-top: 2px;
}

.no-resultados {
  padding: 15px;
  text-align: center;
  color: rgba(13, 13, 13, 0.6);
  font-style: italic;
}

.jugadora-seleccionada, .beneficiarias-seleccionadas {
  margin-top: 15px;
}

.jugadora-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(36, 115, 78, 0.1);
  border: 1px solid rgba(36, 115, 78, 0.3);
  border-radius: 20px;
  padding: 8px 12px;
  margin: 4px;
  font-size: 0.9em;
}
.jugadora-chip--pagador {
  background: rgba(13, 19, 38, 0.1);
  border-color: rgba(13, 19, 38, 0.3);
}
.jugadora-chip--beneficiaria {
  background: rgba(36, 115, 78, 0.1);
  border-color: rgba(36, 115, 78, 0.3);
}
.jugadora-chip .jugadora-nombre {
  font-weight: 600;
  color: #0D0D0D;
}
.jugadora-chip .jugadora-detalles {
  font-size: 0.8em;
  color: rgba(13, 13, 13, 0.7);
}
.jugadora-chip .btn-quitar {
  background: none;
  border: none;
  color: #C82736;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  padding: 2px 4px;
  line-height: 1;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}
.jugadora-chip .btn-quitar:hover {
  background: rgba(200, 39, 54, 0.1);
}

.sin-beneficiarias {
  color: rgba(13, 13, 13, 0.6);
  font-style: italic;
  padding: 15px;
  text-align: center;
  border: 2px dashed rgba(13, 19, 38, 0.3);
  border-radius: 6px;
}

.resumen-section {
  background: rgba(36, 115, 78, 0.05);
  border-color: rgba(36, 115, 78, 0.3);
}

.resumen-contenido {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.resumen-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(36, 115, 78, 0.2);
  font-size: 0.95em;
}
.resumen-item:last-child {
  border-bottom: none;
}
.resumen-item strong {
  color: #24734E;
}

.resumen-total {
  background: rgba(36, 115, 78, 0.1);
  padding: 15px;
  border-radius: 6px;
  text-align: center;
  font-size: 1.1em;
  color: #24734E;
  margin-top: 10px;
}

.btn-procesar {
  background-color: #24734E;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  color: #F2F2F2;
  padding: 15px 32px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 30px auto 0;
  box-shadow: 0 4px 6px rgba(13, 13, 13, 0.1);
  font-size: 1.1em;
  padding: 18px 45px;
}
.btn-procesar a {
  text-decoration: none;
  color: #F2F2F2;
}
@media (min-width: 768px) {
  .btn-procesar {
    font-size: 1.2em;
    padding: 20px 50px;
  }
}
.btn-procesar:disabled {
  background: rgba(13, 13, 13, 0.3);
  cursor: not-allowed;
  opacity: 0.6;
}
.btn-procesar:disabled:hover {
  transform: none;
  box-shadow: 0 4px 6px rgba(13, 13, 13, 0.1);
}
.btn-procesar:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(36, 115, 78, 0.3);
  background-color: rgb(34.2, 109.25, 74.1);
}
.btn-procesar .btn-icon {
  font-size: 1.2em;
}

@media (max-width: 768px) {
  .form-row {
    gap: 15px;
  }
  .tipo-pago-container {
    gap: 10px;
  }
  .tipo-pago-option {
    padding: 12px;
  }
  .tipo-pago-option strong {
    font-size: 1em;
  }
  .tipo-pago-option small {
    font-size: 0.85em;
  }
  .jugadora-chip {
    margin: 2px;
    padding: 6px 10px;
    font-size: 0.85em;
  }
  .jugadora-chip .jugadora-detalles {
    font-size: 0.75em;
  }
  .btn-procesar {
    font-size: 1em;
    padding: 15px 35px;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.resultados-busqueda {
  animation: fadeIn 0.2s ease;
}

.jugadora-chip {
  animation: fadeIn 0.3s ease;
}

.resumen-section {
  animation: fadeIn 0.4s ease;
}

.page-header {
  padding: 3rem 1rem 2rem 1rem;
  text-align: center;
  color: #F2F2F2;
}
@media (min-width: 768px) {
  .page-header {
    padding: 4rem 1rem 3rem 1rem;
  }
}
.page-header .contenedor {
  max-width: 800px;
  margin: 0 auto;
}
.page-header h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #F2F2F2;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}
@media (min-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
}
.page-header .page-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  font-family: "Outfit", sans-serif;
}
@media (min-width: 768px) {
  .page-header .page-subtitle {
    font-size: 1.3rem;
  }
}

.info-content {
  padding: 2rem 1rem;
}
@media (min-width: 768px) {
  .info-content {
    padding: 3rem 1rem;
  }
}
.info-content .contenedor {
  max-width: 1000px;
  margin: 0 auto;
}
.info-content ul li {
  margin-left: 20px;
}

.info-section {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .info-section {
    margin-bottom: 4rem;
  }
}
.info-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #F2F2F2;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  border-bottom: 3px solid #C82736;
  padding-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .info-section h2 {
    font-size: 2rem;
  }
}
.info-section h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #F2F2F2;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}
@media (min-width: 768px) {
  .info-section h3 {
    font-size: 1.5rem;
  }
}
.info-section h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #F2F2F2;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}
.info-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #F2F2F2;
  font-family: "Outfit", sans-serif;
}
@media (min-width: 768px) {
  .info-section p {
    font-size: 1.1rem;
  }
}
.info-section ul {
  margin-bottom: 1rem;
}
.info-section ul li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: #F2F2F2;
  font-family: "Outfit", sans-serif;
}
@media (min-width: 768px) {
  .info-section ul li {
    font-size: 1.1rem;
  }
}
.info-section ul li strong {
  color: #0D1326;
  font-weight: 600;
}

.info-list li {
  background: #4c657a;
  padding: 1rem;
  margin-bottom: 0.8rem;
  border-radius: 8px;
  border-left: 4px solid #C82736;
}
.info-list li strong {
  color: #0D1326;
  display: block;
  margin-bottom: 0.3rem;
}

.participation-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .participation-options {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
.participation-options .option-card {
  background: #4c657a;
  border: 2px solid rgb(59.8, 87.4, 174.8);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .participation-options .option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(13, 13, 13, 0.15);
    border-color: #C82736;
  }
}
.participation-options .option-card h3 {
  color: #0D1326;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.participation-options .option-card p {
  margin-bottom: 1rem;
}
.participation-options .option-card ul {
  margin-bottom: 0;
}
.participation-options .option-card ul li {
  background: none;
  padding: 0.3rem 0;
  margin-bottom: 0.3rem;
  border-radius: 0;
  border-left: none;
  font-size: 0.95rem;
}
@media (min-width: 768px) {
  .participation-options .option-card ul li {
    font-size: 1rem;
  }
}

.future-feature {
  background: linear-gradient(135deg, rgb(139.6545454545, 163.2909090909, 183.1454545455), rgb(120.4303030303, 148.0060606061, 171.1696969697));
  padding: 1.5rem;
  border-radius: 10px;
  border: 2px solid #4c657a;
}
.future-feature p {
  margin: 0;
  color: #F2F2F2;
  font-weight: 500;
}
.future-feature p strong {
  color: #0D1326;
}

.schedule-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .schedule-info {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.schedule-info .schedule-item {
  background: #4c657a;
  padding: 1.5rem;
  border-radius: 10px;
  border: 2px solid rgb(36.4, 53.2, 106.4);
  text-align: center;
}
.schedule-info .schedule-item h4 {
  color: #0D1326;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.schedule-info .schedule-item p {
  margin-bottom: 0.5rem;
  color: #F2F2F2;
  font-weight: 500;
}
.schedule-info .schedule-item p:last-child {
  margin-bottom: 0;
}
.schedule-info .schedule-item ul {
  text-align: left;
  margin: 0;
}
.schedule-info .schedule-item ul li {
  background: none;
  padding: 0.3rem 0;
  margin-bottom: 0.3rem;
  border: none;
  color: #F2F2F2;
  font-weight: 500;
}

.cost-breakdown {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .cost-breakdown {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
.cost-breakdown .cost-item {
  background: #4c657a;
  border: 2px solid #1c465e;
  border-radius: 12px;
  padding: 1.5rem;
}
.cost-breakdown .cost-item h4 {
  color: #0D1326;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  text-align: center;
}
.cost-breakdown .cost-item p {
  margin-bottom: 1rem;
  text-align: center;
}
.cost-breakdown .cost-item p:last-child {
  margin-bottom: 0;
}
.cost-breakdown .cost-item ul {
  margin: 0;
}
.cost-breakdown .cost-item ul li {
  background: none;
  padding: 0.3rem 0;
  margin-bottom: 0.3rem;
  border: none;
}

.cost-note {
  background: #4c657a;
  padding: 1rem;
  border-radius: 8px;
  border: 2px solid #1c465e;
  text-align: center;
  font-weight: 500;
  color: #F2F2F2;
  margin: 0;
}

/*# sourceMappingURL=styles.css.map */
