* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #102015;
}

:root {
  --green-dark: #005b2e;
  --green-main: #078b43;
  --green-soft: #eaf8ef;
  --green-light: #b9f6c9;
  --yellow: #eaff00;
  --white: #ffffff;
  --text: #102015;
  --muted: #5b6f63;
  --border: #dcefe3;
  --shadow: 0 24px 70px rgba(0, 91, 46, 0.14);
}

/* HEADER */

.header {
  width: 100%;
  height: 84px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgba(0, 91, 46, 0.96);
  backdrop-filter: blur(18px);
  transition: 0.3s ease;
}

.header.scrolled {
  height: 72px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.header-container {
  width: 100%;
  height: 100%;
  padding: 0 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  color: white;
}

.logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text span {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.6px;
}

.brand-text small {
  font-size: 12px;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  position: relative;
  opacity: 0.92;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.active-link {
  color: var(--yellow) !important;
}

.header-btn {
  border: none;
  background: var(--yellow);
  color: var(--green-dark);
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.3s ease;
}

.header-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(234, 255, 0, 0.28);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  margin: 6px auto;
  transition: 0.3s ease;
}

/* HERO */

.hero {
  min-height: 100vh;
  padding: 170px 52px 90px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: white;
  background-image:
    linear-gradient(90deg, rgba(0, 60, 30, 0.94), rgba(0, 91, 46, 0.72), rgba(0, 91, 46, 0.20)),
    url("assets/img/home/cancha.jpg");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -180px;
  width: 500px;
  height: 500px;
  background: var(--yellow);
  filter: blur(150px);
  opacity: 0.25;
}

.hero-content {
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(234, 255, 0, 0.13);
  border: 1px solid rgba(234, 255, 0, 0.3);
  color: var(--yellow);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 26px;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: -4px;
  margin-bottom: 26px;
  max-width: 820px;
}

.hero p {
  font-size: 18px;
  line-height: 1.75;
  color: #edfff2;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.btn-primary,
.btn-outline {
  border: none;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-primary {
  background: var(--yellow);
  color: var(--green-dark);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-primary:hover,
.btn-outline:hover {
  transform: translateY(-3px);
}

/* GENERAL */

.section {
  padding: 96px 52px;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-head span,
.booking-text span {
  display: inline-block;
  color: var(--green-main);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.8px;
  margin-bottom: 14px;
}

.section-head h2,
.booking-text h2 {
  color: var(--text);
  font-size: clamp(34px, 4.5vw, 58px);
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 18px;
}

.section-head p,
.booking-text p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

/* INTRO */

.intro {
  background: white;
}

.stats {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--green-soft);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 34px;
  text-align: center;
}

.stat-card h3 {
  font-size: 42px;
  color: var(--green-dark);
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.stat-card p {
  color: var(--muted);
  font-weight: 700;
}

/* SERVICES */

.services {
  background: #f7fbf8;
}

.services-grid {
  max-width: 1380px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: white;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.07);
  transition: 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.service-image {
  height: 360px;
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.06);
}

.service-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background: var(--yellow);
  color: var(--green-dark);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  color: var(--text);
  font-size: 25px;
  margin-bottom: 12px;
  letter-spacing: -0.7px;
}

.service-content p {
  color: var(--muted);
  line-height: 1.68;
  font-size: 15px;
  margin-bottom: 22px;
}

.service-info {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.service-info span {
  background: var(--green-soft);
  color: var(--green-dark);
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.service-content button,
.package-content button {
  width: 100%;
  border: none;
  background: var(--green-main);
  color: white;
  padding: 15px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.3s ease;
}

.service-content button:hover,
.package-content button:hover {
  background: var(--green-dark);
}

/* BOOKING */

.booking {
  background: white;
}

.booking-container {
  max-width: 1240px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.booking-note {
  margin-top: 26px;
  padding: 20px;
  background: var(--green-soft);
  border: 1px solid var(--border);
  border-radius: 22px;
  color: var(--green-dark);
  line-height: 1.6;
}

.booking-form {
  background: #f7fbf8;
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.input-group {
  margin-bottom: 18px;
}

.input-group label {
  display: block;
  margin-bottom: 9px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
}

.input-group input,
.input-group select {
  width: 100%;
  height: 54px;
  border: 1px solid #cfe5d6;
  border-radius: 17px;
  padding: 0 17px;
  outline: none;
  font-family: inherit;
  font-size: 15px;
  background: white;
  color: var(--text);
}

.input-group textarea {
  width: 100%;
  min-height: 130px;
  border: 1px solid #cfe5d6;
  border-radius: 17px;
  padding: 17px;
  outline: none;
  font-family: inherit;
  font-size: 15px;
  background: white;
  color: var(--text);
  resize: vertical;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 4px rgba(7, 139, 67, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.btn-submit {
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 999px;
  background: var(--green-main);
  color: white;
  font-weight: 900;
  cursor: pointer;
  margin-top: 8px;
  transition: 0.3s ease;
}

.btn-submit:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.form-message {
  display: none;
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: #e6ffed;
  color: var(--green-dark);
  font-weight: 800;
  text-align: center;
}

.form-message.error-message {
  background: #ffe8e8;
  color: #9f1d1d;
  border: 1px solid #ffc7c7;
}

/* CONTACT */

.contact {
  background: #f7fbf8;
}

.contact-grid {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.contact-card h3 {
  color: var(--green-dark);
  margin-bottom: 10px;
  font-size: 22px;
}

.contact-card p {
  color: var(--muted);
}

/* EVENTOS */

.event-hero {
  min-height: 100vh;
  padding: 170px 52px 90px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: white;
  background-image:
    linear-gradient(90deg, rgba(0, 60, 30, 0.94), rgba(0, 91, 46, 0.76), rgba(0, 91, 46, 0.28)),
    url("assets/img/eventos/evento_hero.jpg");
  background-size: cover;
  background-position: center;
}

.event-blur {
  position: absolute;
  width: 680px;
  height: 680px;
  right: -220px;
  bottom: -260px;
  background: rgba(234, 255, 0, 0.35);
  filter: blur(170px);
  border-radius: 50%;
}

.event-hero-content {
  max-width: 820px;
  position: relative;
  z-index: 2;
}

.event-hero h1 {
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: -4px;
  margin-bottom: 26px;
  max-width: 900px;
}

.event-hero p {
  font-size: 18px;
  line-height: 1.75;
  color: #edfff2;
  max-width: 680px;
}

.event-highlight {
  max-width: 1240px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.highlight-text {
  background: var(--green-soft);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 42px;
}

.highlight-text h3 {
  color: var(--green-dark);
  font-size: 34px;
  letter-spacing: -1.4px;
  margin-bottom: 16px;
}

.highlight-text p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 22px;
}

.highlight-text ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.highlight-text li {
  color: var(--green-dark);
  font-weight: 800;
  padding: 13px 15px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.highlight-image {
  height: 500px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.event-packages {
  background: #f7fbf8;
}

.packages-grid {
  max-width: 1380px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.package-card {
  background: white;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.07);
  transition: 0.35s ease;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.package-image {
  height: 340px;
  position: relative;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.06);
}

.package-content {
  padding: 30px;
}

.package-content h3 {
  color: var(--text);
  font-size: 25px;
  margin-bottom: 12px;
  letter-spacing: -0.7px;
}

.package-content p {
  color: var(--muted);
  line-height: 1.68;
  font-size: 15px;
  margin-bottom: 22px;
}

.event-gallery {
  background: white;
}

.gallery-grid {
  max-width: 1240px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 20px;
}

.gallery-item {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

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

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

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

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

/* ADMIN */

.admin-header {
  min-height: 86px;
  padding: 18px 46px;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: white;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.admin-brand h1 {
  font-size: 24px;
  letter-spacing: -0.8px;
}

.admin-brand p {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

.admin-back {
  background: var(--yellow);
  color: var(--green-dark);
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.3s ease;
}

.admin-back:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(234, 255, 0, 0.24);
}

.admin-main {
  background: #f7fbf8;
  min-height: 100vh;
  padding: 46px;
}

.admin-hero {
  max-width: 1240px;
  margin: 0 auto 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 38px;
  box-shadow: var(--shadow);
}

.admin-hero span {
  display: inline-block;
  color: var(--green-main);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.8px;
  margin-bottom: 12px;
}

.admin-hero h2 {
  color: var(--text);
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 14px;
}

.admin-hero p {
  color: var(--muted);
  max-width: 780px;
  line-height: 1.7;
  font-size: 16px;
}

.admin-filters {
  max-width: 1240px;
  margin: 0 auto 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
}

.admin-filter-group label {
  display: block;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 8px;
}

.admin-filter-group select,
.admin-filter-group input {
  width: 100%;
  height: 48px;
  border: 1px solid #cfe5d6;
  border-radius: 15px;
  padding: 0 14px;
  outline: none;
  font-family: inherit;
  background: white;
  color: var(--text);
}

.admin-clear {
  align-self: end;
  height: 48px;
  border: none;
  background: var(--green-main);
  color: white;
  border-radius: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.3s ease;
}

.admin-clear:hover {
  background: var(--green-dark);
}

.admin-summary {
  max-width: 1240px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.summary-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 26px;
  text-align: center;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.05);
}

.summary-card h3 {
  font-size: 38px;
  color: var(--green-dark);
  letter-spacing: -1px;
}

.summary-card p {
  color: var(--muted);
  font-weight: 800;
  margin-top: 5px;
}

.admin-table-section {
  max-width: 1240px;
  margin: auto;
  background: white;
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.table-header h2 {
  color: var(--text);
  font-size: 28px;
  letter-spacing: -1px;
}

.danger-btn {
  border: none;
  background: #ffe8e8;
  color: #9f1d1d;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.3s ease;
}

.danger-btn:hover {
  background: #ffd4d4;
}

.table-wrapper {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1050px;
}

.admin-table th {
  text-align: left;
  padding: 16px;
  color: var(--green-dark);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: var(--green-soft);
}

.admin-table th:first-child {
  border-radius: 16px 0 0 16px;
}

.admin-table th:last-child {
  border-radius: 0 16px 16px 0;
}

.admin-table td {
  padding: 16px;
  border-bottom: 1px solid #edf4ef;
  color: var(--text);
  font-size: 14px;
  vertical-align: middle;
}

.admin-table tr:hover td {
  background: #fbfefc;
}

.status {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.status-pending {
  background: #fff6d8;
  color: #8a6500;
}

.status-confirmed {
  background: #e4f0ff;
  color: #1857a4;
}

.status-paid {
  background: #e4ffec;
  color: #056839;
}

.status-cancelled {
  background: #ffe8e8;
  color: #9f1d1d;
}

.status-finished {
  background: #efefef;
  color: #555;
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-actions select {
  height: 38px;
  border: 1px solid #cfe5d6;
  border-radius: 12px;
  padding: 0 10px;
  font-family: inherit;
  outline: none;
  background: white;
  color: var(--text);
  font-weight: 700;
}

.admin-actions button {
  height: 38px;
  border: none;
  border-radius: 12px;
  background: #ffe8e8;
  color: #9f1d1d;
  padding: 0 12px;
  font-weight: 900;
  cursor: pointer;
}

.empty-state {
  display: none;
  text-align: center;
  padding: 46px 20px;
}

.empty-state h3 {
  color: var(--green-dark);
  font-size: 26px;
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--muted);
}

/* FOOTER */

.footer {
  background: var(--green-dark);
  color: white;
  padding: 34px 20px;
  text-align: center;
}

.footer img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 10px;
}

.footer p {
  font-size: 14px;
  opacity: 0.88;
}

/* ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: 0.85s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .services-grid,
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .service-image,
  .package-image {
    height: 420px;
  }

  .booking-container,
  .event-highlight {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 1000px) {
  .admin-filters,
  .admin-summary {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .header-container {
    padding: 0 22px;
  }

  .header-btn {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav {
    position: absolute;
    top: 84px;
    left: 20px;
    right: 20px;
    background: var(--green-dark);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    padding: 24px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
  }

  .nav.active {
    display: flex;
  }

  .hero,
  .event-hero {
    padding: 150px 24px 80px;
  }

  .hero h1,
  .event-hero h1 {
    letter-spacing: -2px;
  }

  .section {
    padding: 76px 24px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-image,
  .package-image {
    height: 300px;
  }

  .brand-text span {
    font-size: 17px;
  }

  .brand-text small {
    font-size: 10px;
  }

  .logo {
    width: 48px;
    height: 48px;
  }

  .highlight-text {
    padding: 28px;
  }

  .highlight-image {
    height: 340px;
  }

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

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

@media (max-width: 720px) {
  .admin-header {
    padding: 18px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-main {
    padding: 24px;
  }

  .admin-filters,
  .admin-summary {
    grid-template-columns: 1fr;
  }

  .table-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-back,
  .danger-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }

  .service-content,
  .package-content {
    padding: 24px;
  }

  .booking-form {
    padding: 24px;
  }
}

/* ============================= */
/* DISPONIBILIDAD DE CANCHAS */
/* ============================= */

.availability-box {
  margin: 24px 0 18px;
  padding: 22px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
}

.availability-header {
  margin-bottom: 18px;
}

.availability-header h3 {
  color: var(--green-dark);
  font-size: 22px;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.availability-header p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.availability-empty {
  grid-column: 1 / -1;
  padding: 18px;
  border-radius: 18px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
  text-align: center;
  border: 1px solid var(--border);
}

.court-option {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  background: #f7fbf8;
  cursor: pointer;
  transition: 0.25s ease;
  text-align: left;
}

.court-option h4 {
  color: var(--green-dark);
  font-size: 17px;
  margin-bottom: 8px;
}

.court-option span {
  display: inline-block;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.court-option.available span {
  background: #e4ffec;
  color: #056839;
}

.court-option.available:hover {
  transform: translateY(-3px);
  border-color: var(--green-main);
  box-shadow: 0 14px 30px rgba(0, 91, 46, 0.12);
}

.court-option.occupied {
  background: #f3f3f3;
  opacity: 0.65;
  cursor: not-allowed;
}

.court-option.occupied h4 {
  color: #777;
}

.court-option.occupied span {
  background: #ffe8e8;
  color: #9f1d1d;
}

.court-option.selected {
  background: var(--green-main);
  border-color: var(--green-main);
  box-shadow: 0 18px 38px rgba(7, 139, 67, 0.22);
}

.court-option.selected h4 {
  color: white;
}

.court-option.selected span {
  background: var(--yellow);
  color: var(--green-dark);
}

@media (max-width: 820px) {
  .availability-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================= */
/* DISPONIBILIDAD DE CANCHAS */
/* ============================= */

.availability-box {
  margin: 24px 0 18px;
  padding: 22px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
}

.availability-header {
  margin-bottom: 18px;
}

.availability-header h3 {
  color: var(--green-dark);
  font-size: 22px;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.availability-header p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.availability-empty {
  grid-column: 1 / -1;
  padding: 18px;
  border-radius: 18px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
  text-align: center;
  border: 1px solid var(--border);
}

.court-option {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  background: #f7fbf8;
  cursor: pointer;
  transition: 0.25s ease;
  text-align: left;
}

.court-option h4 {
  color: var(--green-dark);
  font-size: 17px;
  margin-bottom: 8px;
}

.court-option span {
  display: inline-block;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.court-option.available span {
  background: #e4ffec;
  color: #056839;
}

.court-option.available:hover {
  transform: translateY(-3px);
  border-color: var(--green-main);
  box-shadow: 0 14px 30px rgba(0, 91, 46, 0.12);
}

.court-option.occupied {
  background: #f3f3f3;
  opacity: 0.65;
  cursor: not-allowed;
}

.court-option.occupied h4 {
  color: #777;
}

.court-option.occupied span {
  background: #ffe8e8;
  color: #9f1d1d;
}

.court-option.selected {
  background: var(--green-main);
  border-color: var(--green-main);
  box-shadow: 0 18px 38px rgba(7, 139, 67, 0.22);
  animation: pulseSelect 0.8s ease;
}

.court-option.selected h4 {
  color: white;
}

.court-option.selected span {
  background: var(--yellow);
  color: var(--green-dark);
}

/* ============================= */
/* CANCHA VISUAL DE FÚTBOL */
/* ============================= */

.football-selector-wrapper {
  grid-column: 1 / -1;
}

.football-selector-title {
  margin-bottom: 16px;
  text-align: center;
}

.football-selector-title strong {
  display: block;
  color: var(--green-dark);
  font-size: 18px;
  margin-bottom: 6px;
}

.football-selector-title p {
  color: var(--muted);
  font-size: 14px;
}

.football-field-visual {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 14px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, #1f8e46 0%, #18783b 100%);
  border: 6px solid #155b2c;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

.football-field-visual::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 26px;
  pointer-events: none;
}

.field-zone {
  position: relative;
  height: 110px;
  margin: 8px 0;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.25s ease;
  overflow: hidden;
}

.field-zone::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.05) 0px,
      rgba(255,255,255,0.05) 24px,
      rgba(255,255,255,0.00) 24px,
      rgba(255,255,255,0.00) 48px
    );
  pointer-events: none;
}

.field-zone.available {
  background: linear-gradient(180deg, #2dbd5f 0%, #22944a 100%);
  cursor: pointer;
}

.field-zone.available:hover {
  transform: scale(1.02);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.field-zone.occupied {
  background: linear-gradient(180deg, #f36d6d 0%, #d93e3e 100%);
  cursor: not-allowed;
}

.field-zone.selected {
  background: linear-gradient(180deg, #078b43 0%, #056b33 100%);
  box-shadow: 0 0 0 4px rgba(234, 255, 0, 0.65);
  animation: pulseSelect 0.8s ease;
}

.field-zone-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: white;
}

.field-zone-name {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.4px;
}

.field-zone-content small {
  font-size: 13px;
  opacity: 0.95;
}

.field-zone-content strong {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(255,255,255,0.18);
}

.field-zone.occupied .field-zone-content strong {
  background: rgba(255,255,255,0.22);
}

.field-zone.selected .field-zone-content strong {
  background: var(--yellow);
  color: var(--green-dark);
}

/* ANIMACIÓN */

@keyframes pulseSelect {
  0% {
    transform: scale(0.98);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

/* RESPONSIVE */

@media (max-width: 820px) {
  .availability-grid {
    grid-template-columns: 1fr;
  }

  .football-field-visual {
    max-width: 100%;
  }

  .field-zone {
    height: 96px;
  }

  .field-zone-name {
    font-size: 18px;
  }
}

/* ============================= */
/* DISPONIBILIDAD DE CANCHAS */
/* ============================= */

.availability-box {
  margin: 24px 0 18px;
  padding: 22px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
}

.availability-header {
  margin-bottom: 18px;
}

.availability-header h3 {
  color: var(--green-dark);
  font-size: 22px;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.availability-header p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.availability-empty {
  grid-column: 1 / -1;
  padding: 18px;
  border-radius: 18px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
  text-align: center;
  border: 1px solid var(--border);
}

.court-option {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  background: #f7fbf8;
  cursor: pointer;
  transition: 0.25s ease;
  text-align: left;
}

.court-option h4 {
  color: var(--green-dark);
  font-size: 17px;
  margin-bottom: 8px;
}

.court-option span {
  display: inline-block;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.court-option.available span {
  background: #e4ffec;
  color: #056839;
}

.court-option.available:hover {
  transform: translateY(-3px);
  border-color: var(--green-main);
  box-shadow: 0 14px 30px rgba(0, 91, 46, 0.12);
}

.court-option.occupied {
  background: #f3f3f3;
  opacity: 0.65;
  cursor: not-allowed;
}

.court-option.occupied h4 {
  color: #777;
}

.court-option.occupied span {
  background: #ffe8e8;
  color: #9f1d1d;
}

.court-option.selected {
  background: var(--green-main);
  border-color: var(--green-main);
  box-shadow: 0 18px 38px rgba(7, 139, 67, 0.22);
  animation: pulseSelect 0.8s ease;
}

.court-option.selected h4 {
  color: white;
}

.court-option.selected span {
  background: var(--yellow);
  color: var(--green-dark);
}

@keyframes pulseSelect {
  0% {
    transform: scale(0.98);
  }

  50% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 820px) {
  .availability-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================= */
/* RESUMEN DE PRECIO */
/* ============================= */

.price-summary {
  margin: 22px 0;
  padding: 22px;
  background: linear-gradient(135deg, #eaf8ef, #ffffff);
  border: 1px solid var(--border);
  border-radius: 24px;
}

.price-summary h3 {
  color: var(--green-dark);
  font-size: 22px;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.price-summary p {
  color: var(--muted);
  line-height: 1.6;
  font-weight: 700;
}

.price-summary strong {
  color: var(--green-dark);
}

.price-total {
  margin-top: 12px;
  display: inline-block;
  background: var(--green-main);
  color: white;
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
}

/* BOTÓN DESHABILITADO */

.btn-disabled,
button:disabled {
  opacity: 0.55;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

/* ============================= */
/* DISPONIBILIDAD DE CANCHAS */
/* ============================= */

.availability-box {
  margin: 24px 0 18px;
  padding: 22px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
}

.availability-header {
  margin-bottom: 18px;
}

.availability-header h3 {
  color: var(--green-dark);
  font-size: 22px;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.availability-header p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.availability-empty {
  grid-column: 1 / -1;
  padding: 18px;
  border-radius: 18px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
  text-align: center;
  border: 1px solid var(--border);
}

.court-option {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  background: #f7fbf8;
  cursor: pointer;
  transition: 0.25s ease;
  text-align: left;
}

.court-option h4 {
  color: var(--green-dark);
  font-size: 17px;
  margin-bottom: 8px;
}

.court-option span {
  display: inline-block;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.court-option.available span {
  background: #e4ffec;
  color: #056839;
}

.court-option.available:hover {
  transform: translateY(-3px);
  border-color: var(--green-main);
  box-shadow: 0 14px 30px rgba(0, 91, 46, 0.12);
}

.court-option.occupied {
  background: #f3f3f3;
  opacity: 0.65;
  cursor: not-allowed;
}

.court-option.occupied h4 {
  color: #777;
}

.court-option.occupied span {
  background: #ffe8e8;
  color: #9f1d1d;
}

.court-option.selected {
  background: var(--green-main);
  border-color: var(--green-main);
  box-shadow: 0 18px 38px rgba(7, 139, 67, 0.22);
  animation: pulseSelect 0.8s ease;
}

.court-option.selected h4 {
  color: white;
}

.court-option.selected span {
  background: var(--yellow);
  color: var(--green-dark);
}

@keyframes pulseSelect {
  0% {
    transform: scale(0.98);
  }

  50% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 820px) {
  .availability-grid {
    grid-template-columns: 1fr;
  }
}

.price-breakdown {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.price-line div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-line strong {
  color: var(--green-dark);
  font-size: 14px;
}

.price-line small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.4;
}

.price-line span {
  color: var(--green-main);
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .price-line {
    align-items: flex-start;
    flex-direction: column;
  }
}

.admin-table {
  min-width: 1500px;
}

.admin-table td {
  word-break: break-word;
}

.admin-login-box {
  margin-top: 26px;
  max-width: 460px;
  display: grid;
  gap: 16px;
}

.admin-login-box .admin-clear {
  width: 100%;
}

.admin-table {
  min-width: 1500px;
}

.admin-table td {
  word-break: break-word;
}

.price-breakdown {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.price-line div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-line strong {
  color: var(--green-dark);
  font-size: 14px;
}

.price-line small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.4;
}

.price-line span {
  color: var(--green-main);
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .price-line {
    align-items: flex-start;
    flex-direction: column;
  }
}

.admin-login-box {
  margin-top: 26px;
  max-width: 460px;
  display: grid;
  gap: 16px;
}

.admin-login-box .admin-clear {
  width: 100%;
}

.admin-table {
  min-width: 1700px;
}

.admin-table td {
  word-break: break-word;
}

.price-breakdown {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.price-line div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-line strong {
  color: var(--green-dark);
  font-size: 14px;
}

.price-line small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.4;
}

.price-line span {
  color: var(--green-main);
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .price-line {
    align-items: flex-start;
    flex-direction: column;
  }
}

.auth-box,
.logged-user-box {
  display: grid;
  gap: 18px;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 6px;
  background: #f3f8f4;
  border: 1px solid var(--border);
  border-radius: 18px;
}

.auth-tab {
  border: none;
  padding: 13px 14px;
  border-radius: 14px;
  background: transparent;
  color: var(--green-dark);
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
}

.auth-tab.active {
  background: var(--green-main);
  color: white;
  box-shadow: 0 10px 24px rgba(0, 128, 68, 0.18);
}

.auth-form {
  display: grid;
  gap: 16px;
}

.user-session-card,
.profile-card,
.last-booking-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(135deg, #ffffff, #f6fbf7);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.06);
}

.user-session-card h3,
.profile-card h3,
.last-booking-card h3 {
  color: var(--green-dark);
  margin-bottom: 8px;
}

.user-session-card p,
.profile-card p,
.last-booking-card p {
  color: var(--muted);
  line-height: 1.7;
  font-weight: 600;
}

.profile-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.last-booking-card {
  display: grid;
  gap: 14px;
}

@media (max-width: 680px) {
  .profile-card {
    flex-direction: column;
  }

  .auth-tabs {
    grid-template-columns: 1fr;
  }
}

.profile-head-btn {
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  color: var(--green-dark);
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  transition: 0.25s ease;
}

.profile-head-btn:hover {
  transform: translateY(-2px);
  background: var(--green-main);
  color: white;
}

.profile-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  justify-content: flex-end;
}

.profile-modal-overlay.active {
  display: flex;
}

.profile-modal {
  width: min(430px, 92vw);
  height: 100%;
  background: white;
  padding: 28px;
  overflow-y: auto;
  position: relative;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.22);
  animation: profileSlide 0.25s ease;
}

@keyframes profileSlide {
  from {
    transform: translateX(60px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.profile-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #f2f6f3;
  color: var(--green-dark);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.profile-modal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 24px;
}

.profile-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: white;
  box-shadow: 0 14px 34px rgba(0, 128, 68, 0.25);
}

.profile-modal-header h3 {
  color: var(--green-dark);
  margin-bottom: 4px;
  font-size: 24px;
}

.profile-modal-header p {
  color: var(--muted);
  font-weight: 700;
}

.profile-modal-body {
  padding: 18px;
  border-radius: 20px;
  background: #f7fbf8;
  border: 1px solid var(--border);
  margin-bottom: 18px;
}

.profile-data-grid {
  display: grid;
  gap: 12px;
}

.profile-data-grid div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.profile-data-grid span {
  color: var(--muted);
  font-weight: 700;
}

.profile-data-grid strong {
  color: var(--green-dark);
  text-align: right;
}

.profile-modal-actions {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.recent-bookings-box {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.recent-bookings-box h4 {
  color: var(--green-dark);
  font-size: 20px;
  margin-bottom: 6px;
}

.recent-bookings-box > p {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 16px;
}

.recent-bookings-list {
  display: grid;
  gap: 14px;
}

.recent-booking-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  background: white;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);
}

.recent-booking-card img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  display: block;
}

.recent-booking-content {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.recent-booking-content h5 {
  color: var(--green-dark);
  font-size: 18px;
}

.recent-booking-content p {
  color: var(--muted);
  line-height: 1.5;
  font-weight: 700;
}

.recent-booking-content button {
  border: none;
  border-radius: 14px;
  padding: 12px 14px;
  background: var(--green-main);
  color: white;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
}

.recent-booking-content button:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
}

.profile-head-btn {
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  color: var(--green-dark);
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  transition: 0.25s ease;
}

.profile-head-btn:hover {
  transform: translateY(-2px);
  background: var(--green-main);
  color: white;
}

.profile-modal-overlay,
.cancel-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
}

.profile-modal-overlay.active,
.cancel-modal-overlay.active {
  display: flex;
}

.profile-modal-overlay {
  justify-content: flex-end;
}

.profile-modal {
  width: min(460px, 92vw);
  height: 100%;
  background: white;
  padding: 28px;
  overflow-y: auto;
  position: relative;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.22);
  animation: profileSlide 0.25s ease;
}

@keyframes profileSlide {
  from {
    transform: translateX(60px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.profile-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #f2f6f3;
  color: var(--green-dark);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.profile-modal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 24px;
}

.profile-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: white;
  box-shadow: 0 14px 34px rgba(0, 128, 68, 0.25);
}

.profile-modal-header h3 {
  color: var(--green-dark);
  margin-bottom: 4px;
  font-size: 24px;
  font-weight: 900;
}

.profile-modal-header p {
  color: var(--muted);
  font-weight: 800;
}

.profile-modal-body {
  padding: 18px;
  border-radius: 20px;
  background: #f7fbf8;
  border: 1px solid var(--border);
  margin-bottom: 18px;
}

.profile-data-grid {
  display: grid;
  gap: 12px;
}

.profile-data-grid div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.profile-data-grid span {
  color: var(--muted);
  font-weight: 800;
}

.profile-data-grid strong {
  color: var(--green-dark);
  text-align: right;
  font-weight: 900;
}

.profile-modal-actions {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.recent-bookings-box {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 18px;
}

.recent-bookings-box h4 {
  color: var(--green-dark);
  font-size: 20px;
  margin-bottom: 6px;
  font-weight: 900;
}

.recent-bookings-box > p {
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 16px;
}

.recent-bookings-list {
  display: grid;
  gap: 14px;
}

.active-list-title {
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 900;
  margin-top: 8px;
}

.recent-booking-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  background: white;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);
}

.recent-booking-card img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  display: block;
}

.recent-booking-content {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.recent-booking-content h5 {
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 900;
}

.recent-booking-content p {
  color: var(--muted);
  line-height: 1.5;
  font-weight: 800;
}

.recent-booking-content button {
  border: none;
  border-radius: 14px;
  padding: 12px 14px;
  background: var(--green-main);
  color: white;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
}

.recent-booking-content button:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
}

.danger-inline-btn {
  background: #dc2626 !important;
}

.danger-inline-btn:hover {
  background: #991b1b !important;
}

.cancel-modal-overlay {
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.cancel-modal {
  width: min(460px, 94vw);
  background: white;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
}

.cancel-modal h3 {
  color: #991b1b;
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 10px;
}

.cancel-modal p {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.6;
}

.cancel-warning {
  margin: 18px 0;
  padding: 16px;
  border-radius: 18px;
  background: #fff1f2;
  color: #991b1b;
  font-weight: 800;
}

.cancel-warning strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  letter-spacing: 1px;
}

.cancel-modal input {
  width: 100%;
  padding: 15px;
  border-radius: 16px;
  border: 1px solid var(--border);
  font-weight: 800;
  margin-bottom: 16px;
}

.cancel-modal-actions {
  display: grid;
  gap: 10px;
}

.admin-dashboard {
  background: #f6faf7;
}

.admin-panel-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 26px;
  margin-bottom: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.admin-section-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

.admin-section-title span {
  color: var(--green-main);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.admin-section-title h2 {
  color: var(--green-dark);
  font-size: 28px;
  font-weight: 900;
}

.admin-group-container {
  display: grid;
  gap: 28px;
}

.admin-state-group {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 18px;
  background: #fbfefc;
}

.admin-group-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.admin-group-title h3 {
  color: var(--green-dark);
  font-size: 23px;
  font-weight: 900;
  margin: 0;
}

.admin-group-title span {
  min-width: 34px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--green-main);
  color: white;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.admin-table {
  min-width: 1550px;
  font-size: 15px;
}

.admin-table th {
  font-size: 14px;
  font-weight: 900;
  color: var(--green-dark);
}

.admin-table td {
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
  vertical-align: top;
}

.admin-empty-row {
  text-align: center;
  color: var(--muted) !important;
  font-weight: 900 !important;
  padding: 28px !important;
}

.admin-hero-centered {
  min-height: calc(100vh - 100px);
  display: grid;
  place-items: center;
}

@media (max-width: 780px) {
  .admin-section-title {
    flex-direction: column;
  }

  .profile-modal {
    width: 100%;
  }
}

/* ================================
   PESTAÑAS PANEL ADMIN
================================ */

.admin-tabs-panel {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
  padding: 8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.05);
  width: fit-content;
}

.admin-tab-btn {
  border: none;
  padding: 14px 22px;
  border-radius: 16px;
  background: transparent;
  color: var(--green-dark);
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  transition: 0.25s ease;
}

.admin-tab-btn.active {
  background: var(--green-main);
  color: white;
  box-shadow: 0 12px 28px rgba(0, 128, 68, 0.18);
}

.admin-tab-btn:hover {
  transform: translateY(-1px);
}

/* ================================
   TABLAS ADMIN EN UNA SOLA LÍNEA
================================ */

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}

.admin-table {
  width: max-content;
  min-width: 1600px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  white-space: nowrap;
}

.admin-table td {
  vertical-align: middle;
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.admin-actions select,
.admin-actions button {
  white-space: nowrap;
  flex-shrink: 0;
}

/* Número al lado del título */

.admin-group-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.admin-group-title h3 {
  color: var(--green-dark);
  font-size: 23px;
  font-weight: 900;
  margin: 0;
}

.admin-group-title span {
  min-width: 34px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--green-main);
  color: white;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 780px) {
  .admin-tabs-panel {
    width: 100%;
    flex-direction: column;
  }

  .admin-tab-btn {
    width: 100%;
  }
}

/* ================================
   MENSAJE DE EVENTOS EN VARIAS LÍNEAS
   Solo aplica al panel de eventos
================================ */

#panelEventosAdmin .admin-table th:nth-child(9),
#panelEventosAdmin .admin-table td:nth-child(9) {
  min-width: 280px;
  max-width: 420px;
  white-space: normal;
  line-height: 1.5;
}

#panelEventosAdmin .admin-table td:nth-child(9) {
  color: #374151;
  font-weight: 700;
}

/* ================================
   CALENDARIO VISUAL DE RESERVAS
================================ */

.booking-calendar-box {
  display: grid;
  gap: 22px;
  padding: 22px;
  border-radius: 26px;
  background: #f5f8f6;
  border: 1px solid var(--border);
}

.calendar-top {
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  align-items: center;
  gap: 14px;
}

.calendar-top > div {
  text-align: center;
}

.calendar-month {
  display: block;
  color: var(--green-dark);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.calendar-top p {
  color: var(--muted);
  font-weight: 700;
  margin-top: 4px;
}

.calendar-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(0, 128, 68, 0.25);
  background: white;
  color: var(--green-dark);
  font-size: 32px;
  font-weight: 800;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: 0.25s ease;
}

.calendar-arrow:hover {
  background: var(--green-main);
  color: white;
  transform: translateY(-2px);
}

.calendar-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.calendar-day-btn {
  border: none;
  border-radius: 18px;
  background: white;
  color: var(--green-dark);
  padding: 16px 8px;
  cursor: pointer;
  display: grid;
  gap: 6px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.04);
  transition: 0.25s ease;
}

.calendar-day-btn strong {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.calendar-day-btn span {
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
}

.calendar-day-btn:hover {
  transform: translateY(-2px);
  background: #eaf7ee;
}

.calendar-day-btn.active {
  background: var(--green-main);
  color: white;
  box-shadow: 0 16px 34px rgba(0, 128, 68, 0.22);
}

.calendar-day-btn.active span {
  color: white;
}

.calendar-day-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.hours-section {
  display: grid;
  gap: 12px;
}

.hours-section h3 {
  color: var(--green-dark);
  font-size: 20px;
  font-weight: 900;
}

.hours-section p {
  color: var(--muted);
  font-weight: 700;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.hour-btn {
  border: none;
  border-radius: 14px;
  background: white;
  color: var(--green-dark);
  padding: 14px 10px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  transition: 0.25s ease;
}

.hour-btn:hover {
  transform: translateY(-2px);
  background: #eaf7ee;
}

.hour-btn.active {
  background: var(--green-main);
  color: white;
  box-shadow: 0 16px 34px rgba(0, 128, 68, 0.22);
}

@media (max-width: 780px) {
  .calendar-days-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .calendar-top {
    grid-template-columns: 42px 1fr 42px;
  }
}

/* ================================
   PANEL ADMIN EN ACORDEÓN
================================ */

.admin-accordion-list {
  display: grid;
  gap: 12px;
}

.admin-accordion-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.04);
  transition: 0.25s ease;
}

.admin-accordion-card[open] {
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 128, 68, 0.22);
}

.admin-accordion-summary {
  list-style: none;
  cursor: pointer;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
}

.admin-accordion-summary::-webkit-details-marker {
  display: none;
}

.admin-summary-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.admin-summary-main h4 {
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 4px;
}

.admin-summary-main p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  margin: 0;
}

.admin-summary-meta {
  display: grid;
  text-align: right;
  gap: 4px;
}

.admin-summary-meta span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-summary-meta strong {
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 900;
}

.admin-summary-right {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.admin-summary-price {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
  background: #f0f8f3;
  padding: 8px 12px;
  border-radius: 999px;
}

.admin-chevron {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f4f8f5;
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
  transition: 0.25s ease;
}

.admin-accordion-card[open] .admin-chevron {
  transform: rotate(180deg);
  background: var(--green-main);
  color: white;
}

.admin-accordion-content {
  border-top: 1px solid var(--border);
  padding: 18px;
  background: #fbfefc;
  display: grid;
  gap: 18px;
}

.admin-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.admin-info-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  display: grid;
  gap: 6px;
}

.admin-info-item span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.admin-info-item strong {
  color: #1f2937;
  font-size: 15px;
  font-weight: 800;
  word-break: break-word;
}

.admin-info-message {
  grid-column: 1 / -1;
}

.admin-info-message strong {
  line-height: 1.6;
  white-space: normal;
}

.admin-accordion-actions {
  display: flex;
  justify-content: flex-end;
  align-items: end;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-accordion-actions .admin-filter-group {
  min-width: 220px;
}

.admin-empty-card {
  padding: 22px;
  border-radius: 18px;
  background: white;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
  border: 1px dashed var(--border);
}

@media (max-width: 900px) {
  .admin-accordion-summary {
    grid-template-columns: 1fr;
  }

  .admin-summary-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-summary-meta {
    text-align: left;
  }

  .admin-summary-right {
    justify-content: space-between;
    width: 100%;
  }

  .admin-info-grid {
    grid-template-columns: 1fr;
  }

  .admin-accordion-actions {
    justify-content: stretch;
  }

  .admin-accordion-actions .admin-filter-group,
  .admin-accordion-actions button {
    width: 100%;
  }
}

/* ================================
   FILTROS RÁPIDOS ADMIN
================================ */

.admin-quick-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0;
  padding: 12px;
  background: #f6faf7;
  border: 1px solid var(--border);
  border-radius: 18px;
}

.admin-quick-filters button {
  border: none;
  padding: 11px 16px;
  border-radius: 999px;
  background: white;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: 0.25s ease;
}

.admin-quick-filters button:hover {
  transform: translateY(-1px);
  background: #eaf7ee;
}

.admin-quick-filters .clear-fast {
  background: var(--green-main);
  color: white;
}

/* ================================
   NOTIFICACIÓN PANEL ADMIN
================================ */

.admin-toast {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 9999;
  min-width: 300px;
  max-width: 420px;
  padding: 16px 18px;
  border-radius: 22px;
  background: white;
  border: 1px solid rgba(0, 128, 68, 0.2);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  animation: adminToastIn 0.35s ease;
}

.admin-toast strong {
  display: block;
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 4px;
}

.admin-toast p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.admin-toast button {
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1f5f2;
  color: var(--green-dark);
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  line-height: 1;
}

@keyframes adminToastIn {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 780px) {
  .admin-toast {
    left: 14px;
    right: 14px;
    top: 14px;
    min-width: auto;
    max-width: none;
  }
}

/* =========================================================
   CALENDARIO VISUAL EVENTOS Y CUMPLEAÑOS
   Mismo estilo premium de reservas deportivas
========================================================= */

#formulario-eventos .booking-calendar-box {
  width: 100%;
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(8, 12, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

#formulario-eventos .calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

#formulario-eventos .calendar-header strong {
  min-width: 120px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #ffffff;
  text-transform: uppercase;
}

#formulario-eventos .calendar-header button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 700;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

#formulario-eventos .calendar-header button:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(145deg, rgba(34, 197, 94, 0.22), rgba(34, 197, 94, 0.08));
  border-color: rgba(34, 197, 94, 0.42);
}

#formulario-eventos .calendar-days-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(72px, 1fr));
  gap: 10px;
}

#formulario-eventos .calendar-day-btn {
  min-height: 86px;
  border: 0;
  border-radius: 20px;
  cursor: pointer;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

#formulario-eventos .calendar-day-btn strong {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

#formulario-eventos .calendar-day-btn span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.62);
}

#formulario-eventos .calendar-day-btn:hover:not(:disabled) {
  transform: translateY(-3px);
  border-color: rgba(34, 197, 94, 0.42);
  background:
    linear-gradient(145deg, rgba(34, 197, 94, 0.20), rgba(34, 197, 94, 0.06));
  box-shadow: 0 14px 34px rgba(34, 197, 94, 0.12);
}

#formulario-eventos .calendar-day-btn.active {
  color: #07130d;
  border-color: rgba(34, 197, 94, 0.9);
  background:
    linear-gradient(145deg, #36f58a, #16a34a);
  box-shadow:
    0 16px 36px rgba(34, 197, 94, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

#formulario-eventos .calendar-day-btn.active span {
  color: rgba(7, 19, 13, 0.72);
}

#formulario-eventos .calendar-day-btn:disabled {
  cursor: not-allowed;
  opacity: 0.35;
  filter: grayscale(1);
}

#formulario-eventos .hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
  gap: 10px;
  margin-top: 4px;
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(8, 12, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

#formulario-eventos .hour-btn {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.11);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

#formulario-eventos .hour-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 197, 94, 0.42);
  background:
    linear-gradient(145deg, rgba(34, 197, 94, 0.20), rgba(34, 197, 94, 0.06));
}

#formulario-eventos .hour-btn.active {
  color: #07130d;
  border-color: rgba(34, 197, 94, 0.9);
  background:
    linear-gradient(145deg, #36f58a, #16a34a);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.22);
}

#formulario-eventos .availability-empty {
  grid-column: 1 / -1;
  padding: 18px;
  border-radius: 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.045);
  border: 1px dashed rgba(255, 255, 255, 0.14);
}

/* Responsive */
@media (max-width: 768px) {
  #formulario-eventos .booking-calendar-box,
  #formulario-eventos .hours-grid {
    padding: 14px;
    border-radius: 20px;
  }

  #formulario-eventos .calendar-days-grid {
    grid-template-columns: repeat(4, minmax(68px, 1fr));
  }

  #formulario-eventos .calendar-day-btn {
    min-height: 78px;
    border-radius: 18px;
  }

  #formulario-eventos .calendar-day-btn strong {
    font-size: 1.18rem;
  }

  #formulario-eventos .hours-grid {
    grid-template-columns: repeat(3, minmax(72px, 1fr));
  }
}

@media (max-width: 480px) {
  #formulario-eventos .calendar-days-grid {
    grid-template-columns: repeat(3, minmax(64px, 1fr));
  }

  #formulario-eventos .hours-grid {
    grid-template-columns: repeat(2, minmax(72px, 1fr));
  }

  #formulario-eventos .calendar-header strong {
    font-size: 0.82rem;
    min-width: auto;
  }
}

/* =========================================================
   CONTACTO INTERACTIVO
========================================================= */

.contact-link-card {
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.contact-link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(234, 255, 0, 0.22), transparent 38%),
    linear-gradient(145deg, rgba(7, 139, 67, 0.08), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-link-card > * {
  position: relative;
  z-index: 2;
}

.contact-link-card:hover {
  transform: translateY(-8px);
  border-color: rgba(7, 139, 67, 0.35);
  box-shadow: 0 24px 60px rgba(0, 91, 46, 0.16);
}

.contact-link-card:hover::before {
  opacity: 1;
}

.contact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  border: 1px solid var(--border);
  font-size: 28px;
}

.contact-link-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--green-main);
  color: white;
  font-size: 13px;
  font-weight: 900;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-link-card:hover span {
  background: var(--green-dark);
  transform: translateY(-2px);
}