/* -------------------- RESET BÁSICO -------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f3f3f3;
  color: #111;
}


/* -------------------- TOP BAR ROJA -------------------- */
.top-bar {
  width: 100%;
  background: #e62e2e;
  color: #fff;
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}


/* -------------------- HEADER -------------------- */
.main-header {
  width: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  border-bottom: 1px solid #eeeeee;
  position: sticky;
  top: 0;
  z-index: 10;
}

/* IZQUIERDA: LOGO */
.header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 50px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.logo-subtitle {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #e62e2e;
}

/* CENTRO: MENÚ */
.header-center {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-center a {
  text-decoration: none;
  color: #111;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
}

.header-center a:hover {
  color: #e62e2e;
}

/* link activo */
.active-link {
  color: #e62e2e;
}

/* DERECHA: BUSCADOR + ICONO */
.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-input {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #d0d0d0;
  font-size: 13px;
  min-width: 150px;
}

.user-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e62e2e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}


/* -------------------- HERO (ESTILO ATLANTA) -------------------- */
.hero {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background: #000000;
}

/* imagen de jugador a la derecha */
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;      /* <--- esto cubre SIEMPRE */
  object-position: right; /* <--- mantiene al jugador a la derecha */
  filter: none;
  opacity: 1;
}


/* fogonazo rojo a la derecha */
.hero::before {
  content: "";
  position: absolute;
  right: -20%;
  top: -20%;
  width: 70%;
  height: 140%;
  background: radial-gradient(circle at left center,
    rgba(255, 40, 40, 0.9),
    transparent 60%);
  opacity: 0.9;
}

/* lado izquierdo oscurecido para el texto */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.9), transparent 55%);
}

/* texto del hero */
.hero-content {
  position: absolute;
  top: 32%;
  left: 70px;
  transform: translateY(-20%);
  color: #ffffff;
  max-width: 520px;
  z-index: 2;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffb3b3;
}

.hero-title {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero-text {
  font-size: 15px;
  max-width: 380px;
}

.btn-hero {
  display: inline-block;
  margin-top: 26px;
  padding: 12px 30px;
  background: #ffffff;
  color: #111;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

/* FLECHAS */
.hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.left-arrow {
  left: 25px;
}

.right-arrow {
  right: 25px;
}


/* -------------------- NEXT MATCH -------------------- */
.next-match-wrapper {
  position: relative;
  margin-top: -70px;
  margin-bottom: 50px;
  display: flex;
  justify-content: flex-start;
  z-index: 6;
  max-width: 1200px;
  padding-left: 40px;
  margin-left: auto;
  margin-right: auto;
}

.next-match-card {
  background: #e62e2e;
  color: #ffffff;
  border-radius: 40px;
  padding: 24px 48px;
  min-width: 520px;
  max-width: 620px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.next-match-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.team-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 8px;
}

.next-match-center {
  text-align: center;
  color: #fff;
}

.next-match-label {
  display: inline-block;
  background: #ffffff;
  color: #e62e2e;
  padding: 4px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.countdown {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.countdown div {
  text-align: center;
}

.countdown span {
  display: block;
  font-size: 20px;
  font-weight: 700;
}

.countdown small {
  font-size: 10px;
  letter-spacing: 0.13em;
}


/* -------------------- YOUTH SOCCER (PASSION ALWAYS DOMINATES) -------------------- */

.youth-section {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 40px;
}

.youth-layout {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr;
  gap: 30px;
  align-items: center;
}

.youth-photo img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.youth-text {
  font-size: 14px;
  color: #444;
}

.youth-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e62e2e;
  margin-bottom: 6px;
}

.youth-title {
  font-size: 22px;
  margin-bottom: 10px;
}

.youth-text p {
  margin-bottom: 10px;
}

.youth-subtitle {
  font-size: 15px;
  margin-top: 12px;
  margin-bottom: 4px;
}

.youth-detail {
  font-size: 13px;
  color: #555;
}


/* -------------------- FEATURED VIDEO -------------------- */
.featured-section {
  padding: 60px 40px 80px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 22px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 14px;
  color: #666;
  max-width: 520px;
  margin: 0 auto 30px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 18px;
}

.video-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.video-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.video-main {
  position: relative;
}

.video-main img {
  height: 230px;
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e62e2e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.video-caption {
  padding: 10px 12px 14px;
  font-size: 13px;
  text-align: left;
}


/* -------------------- PAGE HEADER + ABOUT (para about.html) -------------------- */

.page-header {
  background: #111111;
  color: #ffffff;
  padding: 50px 40px;
  margin-bottom: 40px;
}

.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-header-inner h1 {
  font-size: 28px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.page-header-inner p {
  font-size: 14px;
  color: #dddddd;
}

.about-section {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 40px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
}

.about-text h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

.about-text p {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}

.about-photo img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}

.about-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 18px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.about-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.about-card p {
  font-size: 13px;
  color: #555;
}

.about-subtitle {
  font-size: 18px;
  margin-bottom: 18px;
}

.about-layout-small {
  grid-template-columns: repeat(3, minmax(0,1fr));
}

.about-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.about-box h4 {
  font-size: 15px;
  margin-bottom: 8px;
}

.about-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-box li {
  font-size: 13px;
  color: #555;
  margin-bottom: 6px;
}


/* -------------------- FOOTER -------------------- */

.site-footer {
  background: #111111;
  color: #f5f5f5;
  padding: 40px 40px 20px;
  margin-top: 40px;
  border-top: 3px solid #e62e2e;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto 20px;
  display: grid;
  grid-template-columns: 2fr 1.3fr 1.3fr;
  gap: 40px;
}

.footer-title {
  font-size: 20px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-text {
  font-size: 13px;
  color: #cccccc;
  margin-bottom: 8px;
}

.footer-subtitle {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-subtitle-spaced {
  margin-top: 16px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 6px;
  font-size: 13px;
}

.footer-links a,
.footer-contact a {
  color: #f5f5f5;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #e62e2e;
}

/* Redes sociales */
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #f5f5f5;
  font-size: 11px;
  text-decoration: none;
  color: #f5f5f5;
}

.footer-social a:hover {
  background: #e62e2e;
  border-color: #e62e2e;
}

/* Línea inferior */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 10px;
  border-top: 1px solid #333333;
  font-size: 11px;
  display: flex;
  justify-content: space-between;
  color: #aaaaaa;
}

/* -------------------- SOCCER SCHOOL PAGE -------------------- */

/* Variación del page-header para Soccer School */
.school-header {
  background: linear-gradient(120deg, #111111, #e62e2e);
}

/* Bloques generales */
.school-section {
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 40px;
}

.school-title-center {
  text-align: center;
  font-size: 22px;
  margin-bottom: 8px;
}

.school-subtitle-center {
  text-align: center;
  font-size: 14px;
  color: #555;
  max-width: 560px;
  margin: 0 auto 24px;
}

/* Intro: texto + foto */
.school-intro {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  align-items: center;
}

.school-intro-text h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.school-intro-text p {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}

.school-intro-photo img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* Niveles / categorías */
.school-levels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}

.school-level-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 18px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.school-level-card h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.school-level-age {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e62e2e;
  margin-bottom: 10px;
}

.school-level-card p {
  font-size: 13px;
  color: #555;
}

/* Tabla de horarios */
.school-table-wrapper {
  overflow-x: auto;
}

.school-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.school-table th,
.school-table td {
  padding: 10px 14px;
  font-size: 13px;
  text-align: left;
}

.school-table thead {
  background: #111111;
  color: #ffffff;
}

.school-table tbody tr:nth-child(even) {
  background: #f5f5f5;
}

/* Planes / inscripción */
.school-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.school-plan-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 18px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.school-plan-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.school-plan-price {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.school-plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.school-plan-card li {
  font-size: 13px;
  color: #555;
  margin-bottom: 6px;
}

/* Plan destacado */
.school-plan-featured {
  border: 2px solid #e62e2e;
}

/* CTA final */
.school-cta-box {
  text-align: center;
  background: #111111;
  color: #ffffff;
  border-radius: 20px;
  padding: 24px 18px 26px;
  max-width: 680px;
  margin: 0 auto;
}

.school-cta-box h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.school-cta-box p {
  font-size: 14px;
  margin-bottom: 14px;
}

.school-cta-btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 999px;
  background: #e62e2e;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

/* -------------------- CONTACT PAGE -------------------- */

.contact-header {
  background: linear-gradient(120deg, #111111, #e62e2e);
}

.contact-section {
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 40px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr;
  gap: 30px;
  align-items: flex-start;
}

/* Tarjeta del formulario */
.contact-form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 22px 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-form-card h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

.contact-form-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 16px;
}

.contact-form .form-row {
  margin-bottom: 10px;
}

.contact-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #cccccc;
  font-size: 13px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-submit-btn {
  margin-top: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  background: #e62e2e;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.contact-submit-btn:hover {
  opacity: 0.9;
}

/* Tarjeta info arena */
.contact-info-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 22px 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-size: 14px;
}

.contact-info-card h2 {
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-info-card p {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
}

.contact-info-block {
  margin-top: 10px;
}

.contact-info-block h3 {
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-info-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-block li {
  font-size: 13px;
  color: #444;
  margin-bottom: 6px;
}

/* Bloque extra abajo (facility + restaurant) */
.contact-extra {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 40px;
}

.contact-extra-layout {
  display: grid;
  grid-template-columns: 1.3fr 1.1fr;
  gap: 30px;
  align-items: center;
}

.contact-extra-text h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

.contact-extra-text h3 {
  font-size: 16px;
  margin-top: 14px;
  margin-bottom: 6px;
}

.contact-extra-text p {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.contact-extra-photo img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}


/* -------------------- SCHEDULES PAGE -------------------- */

.schedules-header {
  background: linear-gradient(120deg, #111111, #e62e2e);
}

.schedules-section {
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 40px;
}

.schedules-filters {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr)) auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 12px;
}

.filter-group label {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
}

.filter-group select {
  width: 100%;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid #cccccc;
  font-size: 13px;
}

.filter-buttons {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.btn-filter,
.btn-show-all {
  padding: 7px 14px;
  border-radius: 999px;
  border: none;
  font-size: 13px;
  cursor: pointer;
}

.btn-filter {
  background: #e62e2e;
  color: #ffffff;
  font-weight: 600;
}

.btn-show-all {
  background: #ffffff;
  border: 1px solid #d0d0d0;
  color: #333;
}

.schedules-legend {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
}

.schedules-table-wrapper {
  overflow-x: auto;
}

.schedules-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.schedules-table th,
.schedules-table td {
  padding: 10px 12px;
  font-size: 13px;
  text-align: left;
}

.schedules-table thead {
  background: #111111;
  color: #ffffff;
}

.schedules-table tbody tr:nth-child(even) {
  background: #f8f8f8;
}

.schedules-table tbody tr {
  cursor: pointer;
}

.schedules-table tbody tr:hover {
  background: #ffecec;
}

/* Badges de estado */
.badge-status {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
}

.badge-status-final {
  background: #e0f7e9;
  color: #137333;
}

.badge-status-upcoming {
  background: #e3f2fd;
  color: #1a73e8;
}

.badge-status-cancelled {
  background: #f3e5f5;
  color: #6a1b9a;
}

/* Modal de partido */
.game-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.game-modal-backdrop.is-visible {
  display: flex;
}

.game-modal {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 22px 22px;
  max-width: 420px;
  width: 90%;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.game-modal h2 {
  font-size: 18px;
  margin-bottom: 6px;
}

.game-modal p {
  font-size: 13px;
  color: #444;
  margin-bottom: 4px;
}

.game-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
}


/* -------------------- SCHEDULES ADMIN -------------------- */

.admin-schedules-section {
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 40px;
}


/* Form card */
.admin-form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px 22px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.admin-form-card h2 {
  font-size: 18px;
  margin-bottom: 8px;
}

.admin-form-card .form-row {
  margin-bottom: 8px;
}

.admin-form-card label {
  display: block;
  font-size: 12px;
  margin-bottom: 3px;
}

.admin-form-card input,
.admin-form-card select {
  width: 100%;
  padding: 7px 9px;
  border-radius: 8px;
  border: 1px solid #cccccc;
  font-size: 13px;
}

.admin-form-buttons {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.admin-help-text {
  font-size: 12px;
  color: #666;
  margin-top: 10px;
}

/* Table card */
.admin-table-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px 22px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.admin-table-card h2 {
  font-size: 18px;
  margin-bottom: 4px;
}

.admin-table-caption {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}

.admin-table-wrapper {
  max-height: 420px;
  overflow: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 8px 10px;
  font-size: 12px;
  text-align: left;
  border-bottom: 1px solid #eeeeee;
}

.btn-small {
  padding: 3px 8px;
  border-radius: 999px;
  border: none;
  font-size: 11px;
  cursor: pointer;
  margin-right: 4px;
  background: #e0e0e0;
}

.btn-small.btn-danger {
  background: #ffebee;
  color: #c62828;
}

/* Export JSON */
.admin-export-card {
  margin-top: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px 22px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.admin-export-card h2 {
  font-size: 18px;
  margin-bottom: 6px;
}

.admin-export-card p {
  font-size: 13px;
  color: #555;
  margin-bottom: 8px;
}

#exportJson {
  width: 100%;
  min-height: 180px;
  font-family: "JetBrains Mono", "Consolas", monospace;
  font-size: 12px;
  border-radius: 8px;
  border: 1px solid #cccccc;
  padding: 8px;
  resize: vertical;
}

/* -------------------- LEAGUE MANAGER -------------------- */

.lm-wrapper {
  max-width: 1200px;
  margin: 30px auto 50px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
}




.lm-nav-item {
  padding: 7px 10px;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 4px;
}

.lm-nav-item.active {
  background: #e62e2e;
}

.lm-link {
  display: block;
  padding: 6px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: #f5f5f5;
  font-size: 13px;
}

.lm-link:hover {
  background: #333333;
}

/* zona principal */
.lm-main h1 {
  font-size: 22px;
  margin-bottom: 6px;
}

.lm-intro {
  font-size: 13px;
  color: #555;
  margin-bottom: 16px;
}

.lm-two-columns {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 20px;
  align-items: flex-start;
}

.lm-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px 22px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.lm-card h2 {
  font-size: 18px;
  margin-bottom: 8px;
}

.lm-help {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}

.lm-checkbox-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hidden {
  display: none;
}

/* --------- RESULTADOS DEL DÍA --------- */



.game-day-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 340px;
  gap: 22px;
  align-items: flex-start;
}



.gd-remove-btn:hover {
  text-decoration: underline;
}

.gd-status-select {
  width: 100%;
  font-size: 11px;
}

.gd-score-input {
  width: 32px;
  text-align: center;
  font-size: 12px;
}

/* Layout 2 columnas en Partidos Admin */
.admin-main-layout {
  max-width: 1200px;
  margin: 30px auto 50px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: flex-start;
}


.game-day-section .page-header-inner {
  margin-bottom: 10px;
}


/* Grid principal con sidebar */
.admin-page-shell {
  max-width: 1350px;
  margin: 30px auto 50px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
}

/* Dentro de la derecha: 2 columnas */
.admin-main-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: flex-start;
}








/* Ajuste del grid grande (sidebar + 2 columnas) */
.admin-page-shell {
  max-width: 1350px;
  margin: 30px auto 50px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.admin-main-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: flex-start;
}

/* Shell general: sidebar + contenido */
.admin-page-shell {
  max-width: 1350px;
  margin: 30px auto 50px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

/* Columna derecha apilada (arriba cards, abajo resultados) */
.admin-content-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Ya tenías admin-schedules-layout con 2 columnas, lo mantenemos */
.admin-schedules-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
}

/* Sidebar reaprovechado de league-manager */
.lm-sidebar {
  background: #0c0c0c;
  color: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 0 20px rgba(0,0,0,0.25);
}
.lm-sidebar h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}
.lm-sidebar ul {
  list-style: none;
  padding: 0;
}
.lm-nav-item a,
.lm-nav-item span {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
}
.lm-nav-item.active span {
  background: #e62b34;
}
.lm-nav-item a:hover {
  background: #222;
}
.lm-nav-separator {
  margin: 18px 0 8px;
  font-size: 12px;
  color: #bbb;
  letter-spacing: 1px;
}

/* Card de Resultados del día */
.game-day-section {
  margin: 0;
  padding: 0;
}

.game-day-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px 20px 22px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.game-day-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.game-day-header h2 {
  margin: 0;
  font-size: 20px;
}



.admin-table-wrapper.small {
  max-height: 260px;
  overflow-y: auto;
}

.game-detail-card {
  margin-top: 8px;
  border-radius: 14px;
  padding: 10px 12px;
  background: #fafafa;
  border: 1px solid #eee;
}


.admin-table-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 6px;
}



/* Bloque general de resultados del día */
.game-day-section {
  margin-top: 32px;
}

.game-day-section .page-header-inner {
  margin-bottom: 16px;
}

/* Layout: lista de partidos a la izquierda, detalles a la derecha */
.game-day-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.3fr);
  gap: 24px;
  align-items: flex-start;
}

/* Caja de "Partidos del día" */
.lm-card {
  padding: 16px 18px;
}

/* Filtros arriba de la tabla */
.game-day-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: flex-end;
  margin-bottom: 12px;
}

.game-day-filters .form-row {
  min-width: 160px;
}

/* Tabla compacta pero más prolija */
.game-day-section .admin-table-wrapper table.admin-table th,
.game-day-section .admin-table-wrapper table.admin-table td {
  padding: 6px 8px;
  vertical-align: middle;
  font-size: 13px;
}

/* Para que se separen visualmente las filas */
.game-day-section .admin-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

/* Columna derecha (detalle) como tarjeta */
.game-day-details {
  background: #ffffff;
  border-radius: 8px;
  padding: 14px 16px;
  border: 1px solid #e2e2e2;
}

.game-day-details h3 {
  margin-top: 0;
  margin-bottom: 4px;
}

.game-day-details .lm-help {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 12px;
  color: #777;
}

/* Form de eventos más prolijo */
#gdEventForm .form-row {
  margin-bottom: 8px;
}

#gdEventForm label {
  font-size: 12px;
  color: #555;
}

#gdEventForm input,
#gdEventForm select {
  font-size: 13px;
}

/* Lista de eventos */
.gd-events-title {
  margin-top: 14px;
  margin-bottom: 6px;
  font-size: 13px;
}

.gd-events-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 260px;
  overflow-y: auto;
}

.gd-events-list li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px dashed #eee;
  font-size: 12px;
}

.gd-events-list li:last-child {
  border-bottom: none;
}

.gd-events-list span {
  flex: 1;
}

/* Botón eliminar evento */
.gd-remove-btn {
  border: none;
  background: #fbe9e9;
  color: #c73737;
  font-size: 11px;
  padding: 3px 6px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

/* =========================
   RESULTADOS DEL DÍA (ADMIN)
   ========================= */

/* Sección completa */
.game-day-section {
  margin-top: 36px;
  padding: 20px 0;
  background: #f7f7f9;
  border-top: 1px solid #e0e0e0;
}

/* Título + texto intro */
.game-day-section .page-header-inner {
  max-width: 1100px;
  margin: 0 auto 18px auto;
}

/* Layout: lista de partidos + detalle */
.game-day-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1.4fr;
  gap: 28px;
  align-items: flex-start;
}

/* “Card” izquierda (partidos del día) */
.game-day-section .lm-card {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e1e1e1;
  padding: 16px 18px 18px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

/* Filtros arriba de la tabla */
.game-day-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: flex-end;
  margin-bottom: 14px;
}

.game-day-filters .form-row {
  min-width: 180px;
}

.game-day-filters label {
  font-size: 12px;
  color: #555;
}

/* Tabla de partidos del día (más espaciada) */
.game-day-section .admin-table-wrapper {
  margin-top: 6px;
}

.game-day-section .admin-table th,
.game-day-section .admin-table td {
  padding: 7px 8px;
  font-size: 13px;
  line-height: 1.3;
  vertical-align: middle;
}

.game-day-section .admin-table thead th {
  background: #f0f2f5;
}

.game-day-section .admin-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

/* Columna de goles un poco más estrecha para que no se estire tanto */
.game-day-section .admin-table td:nth-child(8),
.game-day-section .admin-table th:nth-child(8) {
  width: 110px;
}

/* Inputs de goles */
.gd-score-input {
  width: 40px;
  text-align: center;
  font-size: 12px;
}

/* Columna derecha: detalle del partido */
.game-day-details {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e1e1e1;
  padding: 14px 16px 16px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.game-day-details h3 {
  margin-top: 0;
  margin-bottom: 4px;
  font-size: 16px;
}

.game-day-details .lm-help {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 12px;
  color: #777;
}

/* Form de eventos */
#gdEventForm .form-row {
  margin-bottom: 8px;
}

#gdEventForm label {
  font-size: 12px;
  color: #555;
}

#gdEventForm input,
#gdEventForm select {
  font-size: 13px;
  padding: 4px 6px;
}

/* Checkbox de expulsión en línea prolija */
#gdEventSuspended {
  margin-right: 6px;
}

/* Lista de eventos con scroll propio */
.gd-events-title {
  margin-top: 14px;
  margin-bottom: 6px;
  font-size: 13px;
}

.gd-events-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 260px;
  overflow-y: auto;
}

.gd-events-list li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px dashed #eeeeee;
  font-size: 12px;
}

.gd-events-list li:last-child {
  border-bottom: none;
}

.gd-events-list span {
  flex: 1;
}

/* Botón de eliminar evento */
.gd-remove-btn {
  border: none;
  background: #fbe9e9;
  color: #c73737;
  font-size: 11px;
  padding: 3px 6px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

/* ---------- Responsivo: en pantallas chicas apila ---------- */
@media (max-width: 960px) {
  .game-day-layout {
    grid-template-columns: 1fr;
  }

  .game-day-section .page-header-inner {
    padding: 0 12px;
  }

  .game-day-section .lm-card,
  .game-day-details {
    margin: 0 12px;
  }
}
/* ===== LAYOUT STANDINGS ===== */

.standings-section {
  padding: 24px 0 40px;
  background: #f3f4f6;
}

.standings-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: flex-start;
}

/* Sidebar ligas en standings (reusa estilo tipo panel lateral) */
#standingsLeagueList {
  list-style: none;
  margin: 0;
  padding: 0;
}

#standingsLeagueList .lm-nav-item {
  padding: 8px 10px;
  border-radius: 6px;
  margin-bottom: 4px;
  cursor: pointer;
  font-size: 14px;
  color: #b63434;
  transition: background 0.15s, color 0.15s;
}

#standingsLeagueList .lm-nav-item:hover {
  background: #e5e7eb;
}

#standingsLeagueList .lm-nav-item.active {
  background: #111827;
  color: #ff0000;
}

/* ===== CARDS GENERALES ===== */

.lm-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  padding: 18px 20px;
}

.lm-card h2,
.lm-card h3,
.lm-card h4 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 18px;
}

.lm-help {
  font-size: 13px;
  color: #6b7280;
}

/* ===== TABLAS ===== */

.admin-table-wrapper {
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table thead {
  background: #f3f4f6;
}

.admin-table th,
.admin-table td {
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.admin-table th {
  font-weight: 600;
  color: #4b5563;
  white-space: nowrap;
}

.admin-table tbody tr:nth-child(even) {
  background: #f9fafb;
}

.admin-table tbody tr:hover {
  background: #eef2ff;
}

/* ===== BOTONES PEQUEÑOS ===== */

.btn-small {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  background: #111827;
  color: #f9fafb;
  margin-right: 4px;
}



.btn-small:hover {
  filter: brightness(1.05);
}

/* ===== TEAM DETAIL ===== */

.team-detail-section {
  padding: 24px 0 40px;
  background: #f9fafb;
}

.team-detail-layout {
  max-width: 1200px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 20px;
}

.team-games-layout {
  max-width: 1200px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}

/* Info del equipo (dl) */

.team-info-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px 16px;
}

.team-info-list div {
  display: flex;
  flex-direction: column;
}

.team-info-list dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-bottom: 2px;
}

.team-info-list dd {
  margin: 0;
  font-size: 14px;
  color: #111827;
}

/* Resumen rápido de stats */

.team-quick-stats {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.team-quick-stats li {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  color: #1d4ed8;
}

/* ===== GAME DETAIL ===== */

.game-detail-section {
  max-width: 900px;
  margin: 24px auto 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Lista pública de eventos */

.gd-events-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gd-events-list li {
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  margin-bottom: 6px;
  background: #f9fafb;
  font-size: 14px;
}

.gd-events-list li span {
  display: block;
  line-height: 1.3;
}

/* ===== PEQUEÑOS AJUSTES GENERALES ===== */

.page-header-inner h1 {
  margin-bottom: 4px;
}

.page-header-inner p {
  margin-top: 0;
  color: #4b5563;
}

.top-bar {
  font-size: 13px;
  padding: 6px 16px;
}

@media (max-width: 900px) {
  .standings-layout {
    grid-template-columns: 1fr;
  }

  .team-detail-layout,
  .team-games-layout {
    grid-template-columns: 1fr;
  }

  .game-detail-section {
    padding: 0 12px 32px;
  }
}

.user-icon {
  font-size: 28px;
  cursor: pointer;
  user-select: none;
}

.team-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-icon svg {
  width: 50px;
  height: 50px;
}

/* FEATURED MATCH */
.featured-match-section {
  padding: 60px 7%;
  background: #f5f7fb;
}

.featured-match-card {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  align-items: center;
}

.featured-match-teams {
  flex: 1 1 260px;
  border-right: 1px solid #e5e7f0;
  padding-right: 24px;
}

.featured-match-info {
  flex: 1 1 240px;
  padding-left: 24px;
}

@media (max-width: 800px) {
  .featured-match-card {
    flex-direction: column;
  }
  .featured-match-teams {
    border-right: none;
    border-bottom: 1px solid #e5e7f0;
    padding-right: 0;
    padding-bottom: 16px;
  }
  .featured-match-info {
    padding-left: 0;
    padding-top: 8px;
  }
}

.fm-league {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ff6b00;
  margin-bottom: 12px;
}

.fm-teams-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fm-team {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fm-team-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f3a93, #3a67ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.fm-team-away .fm-team-icon {
  background: linear-gradient(135deg, #ff6b00, #ff9c3a);
}

.fm-team-name {
  font-weight: 700;
  font-size: 15px;
  color: #222;
}

.fm-vs {
  font-weight: 800;
  letter-spacing: 1px;
  color: #555;
}

.fm-status-pill {
  display: inline-flex;
  margin-top: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #e5f3ff;
  color: #1f6fe5;
}

/* estados */
.fm-status-final {
  background: #e7f8ea;
  color: #2d8a3b;
}
.fm-status-cancelled {
  background: #fde6e7;
  color: #d7263d;
}

.fm-info-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 14px;
}

.fm-info-label {
  color: #7a7f90;
}

.fm-info-value {
  font-weight: 600;
  color: #252733;
}

.fm-btn {
  margin-top: 14px;
  display: inline-block;
  padding: 8px 18px;
  font-size: 13px;
}

.featured-note {
  margin-top: 16px;
  font-size: 13px;
  color: #777;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.result-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.result-league {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #888;
}

.result-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-weight: 600;
}

.result-team {
  font-size: 14px;
  max-width: 45%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.result-score {
  font-size: 18px;
  font-weight: 700;
}

.result-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  color: #777;
  flex-wrap: wrap;
}

.result-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.featured-empty {
  font-size: 13px;
  color: #777;
  margin-top: 12px;
}

/* --- LAYOUT GENÉRICO SECCIONES SOCCER SCHOOL --- */

.section-light {
  background-color: #ffffff;
  padding: 50px 20px;
}

.section-striped {
  background-color: #f5f7fb;
  padding: 50px 20px;
}

.content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 30px;
}

@media (max-width: 900px) {
  .two-columns {
    grid-template-columns: 1fr;
  }
}

/* --- HEADER DE LA PÁGINA SOCCER SCHOOL --- */

.soccer-header {
  background: linear-gradient(135deg, #0f172a, #1d3557);
  color: #ffffff;
  padding: 40px 20px;
}

.soccer-header .page-header-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.soccer-header h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.soccer-header p {
  font-size: 0.95rem;
  max-width: 700px;
  line-height: 1.6;
  opacity: 0.9;
}

/* --- TARJETAS E INFO BOXES --- */

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
}

.info-card {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  padding: 14px 16px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.section-striped .info-card {
  background: #fdfdfd;
}

.info-card h3 {
  font-size: 0.9rem;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1f2937;
}

.info-card p {
  margin: 0;
  font-size: 0.85rem;
  color: #4b5563;
}

/* --- TEXTOS Y LISTAS --- */

.section-light h2,
.section-striped h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #111827;
}

.section-light h3,
.section-striped h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #111827;
}

.section-light p,
.section-striped p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4b5563;
}

.bullet-list {
  list-style: none;
  padding-left: 0;
  margin: 8px 0 16px;
}

.bullet-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 0.92rem;
  color: #374151;
}

.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  color: #f59e0b; /* amarillito / dorado */
  font-size: 1rem;
}

/* --- CTA BLOCK --- */

.cta-block {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta-block h2 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.cta-block p {
  max-width: 650px;
  margin: 0 auto 20px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease;
}

.btn-primary {
  background: #f59e0b;
  color: #111827;
  box-shadow: 0 6px 14px rgba(245, 158, 11, 0.35);
}

.btn-primary:hover {
  background: #d97706;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(245, 158, 11, 0.45);
}

.btn-secondary {
  border: 1px solid #4b5563;
  color: #111827;
  background: #ffffff;
}

.btn-secondary:hover {
  background: #f3f4f6;
  transform: translateY(-1px);
}

/* --- FOOTER SOCCER SCHOOL (usa lo que ya tienes pero un poquito más de aire) --- */

.site-footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Opcional: separar un poquito las columnas si se ve muy apretado */
.site-footer .footer-col {
  margin-bottom: 8px;
}

/* Reduce size of soccer school images */
.soccer-img-small {
  max-width: 380px;     /* ajustable */
  width: 100%;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}
/* Botón hamburguesa: oculto en escritorio */
.mobile-menu-btn {
  display: none;
  background: #e4262c;      /* tu rojo */
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 22px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* Navegación normal en escritorio (ajusta si ya lo tenés) */
.header-center {
  display: flex;
  gap: 24px;
  align-items: center;
}

/* ----------- MOBILE ----------- */
@media (max-width: 768px) {

  /* mostramos hamburguesa */
  .mobile-menu-btn {
    display: inline-flex;
    margin-left: 8px;
  }

  /* el header para posicionar el menú flotante */
  .main-header {
    position: relative;
  }

  /* nav como menú desplegable */
  .header-center {
    position: absolute;
    top: 100%;        /* justo debajo del header */
    right: 10px;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    gap: 10px;

    /* oculto por defecto con animación */
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 50;
  }

  /* cuando está abierto */
  .header-center.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* los links del menú en mobile */
  .header-center a {
    display: block;
    font-size: 14px;
    padding: 4px 0;
  }
}
