body {
  background-color: #fafaf4;
  color: #1a1c19;
  -webkit-font-smoothing: antialiased;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid #E2E8E0;
}

.premium-shadow {
  box-shadow: 0px 4px 20px rgba(0, 110, 36, 0.04);
}

.nav-transition {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fade-in 0.6s ease-out forwards;
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.mobile-menu.is-open {
  max-height: 80vh;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a:hover {
  background-color: #f4f4ee;
}

.historia-text strong {
  color: #006e24;
  font-weight: 600;
}

.historia-timeline-item {
  transition: transform 0.3s ease;
}

.historia-timeline-item:hover {
  transform: translateY(-2px);
}

/* Misión y Visión */
.mision-vision-heading {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #006e24;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #c8ebd5;
  position: relative;
}

.mision-vision-heading::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #21b546;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .mision-vision-heading::after {
    left: 2rem;
    transform: none;
  }
}

.mision-vision-icon {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8ebd5 0%, #21b546 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 110, 36, 0.15);
}

.mision-vision-icon .material-symbols-outlined {
  font-size: 2.25rem;
  color: #ffffff;
}

.mision-vision-divider {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #006e24;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.mision-vision-divider img {
  max-height: 2.5rem;
  width: auto;
  object-fit: contain;
}

.mision-vision-footer {
  position: relative;
  min-height: 12rem;
}

.mision-vision-footer-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.mision-vision-footer-bar {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background: rgba(0, 110, 36, 0.92);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .mision-vision-footer-bar {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 1.25rem 2rem;
  }
}

.mision-vision-slogan {
  font-family: 'Manrope', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  font-style: italic;
  color: #ffffff;
  max-width: 20rem;
  line-height: 1.5;
}

.mision-vision-social .flex {
  justify-content: center;
}

.mision-vision-social a {
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

.mision-vision-social a:hover {
  background: #ffffff !important;
  color: #006e24 !important;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background-color: #f4f4ee;
  border: 1px solid #bccbb8;
  border-radius: 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: #1a1c19;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: #006e24;
  box-shadow: 0 0 0 2px rgba(0, 110, 36, 0.15);
}

.form-label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #3d4a3c;
  margin-bottom: 8px;
}

.form-error {
  color: #ba1a1a;
  font-size: 14px;
  margin-top: 4px;
}

.flash-success {
  background-color: #c8ebd5;
  color: #003e10;
  border: 1px solid #21b546;
}

.flash-error {
  background-color: #ffdad6;
  color: #93000a;
  border: 1px solid #ba1a1a;
}

/* Reglamentos */
.reglamento-seccion {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #e2e8e0;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 2px 12px rgba(0, 110, 36, 0.04);
}

.reglamento-seccion-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.reglamento-seccion-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #006e24;
  color: #ffffff;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reglamento-seccion-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: #006e24;
}

.reglamento-seccion-titulo {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.9375rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #006e24;
  line-height: 1.3;
}

.reglamento-seccion-body {
  padding-left: 0.25rem;
}

.reglamento-seccion-body p {
  margin-bottom: 0.5rem;
}

.reglamento-lista-titulo {
  font-weight: 600;
  color: #1a1c19;
  margin-top: 0.75rem;
  margin-bottom: 0.375rem;
}

.reglamento-lista {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}

.reglamento-lista li {
  margin-bottom: 0.25rem;
}

.reglamento-footer {
  border-top: 3px solid #006e24;
}

.reglamento-footer--dark {
  background: linear-gradient(135deg, #004d19 0%, #006e24 100%);
}

.reglamento-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .reglamento-footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.reglamento-ind-logo {
  height: 3.5rem;
  width: auto;
  flex-shrink: 0;
  border-radius: 0.25rem;
}

.reglamento-slogan {
  font-family: 'Manrope', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  font-style: italic;
  color: #ffffff;
  max-width: 18rem;
  line-height: 1.5;
}

.reglamento-footer-social .flex {
  justify-content: center;
}

.reglamento-footer-social a {
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

.reglamento-footer-social a:hover {
  background: #ffffff !important;
  color: #006e24 !important;
}

.reglamento-resumen {
  background: #f4f4ee;
  border: 1px solid #e2e8e0;
}

.reglamento-resumen-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}

/* Resultados torneos */
.torneo-resultado-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(0, 110, 36, 0.08) 0%, rgba(200, 235, 213, 0.35) 100%);
  border-bottom: 2px solid #006e24;
}

.torneo-resultado-fecha {
  flex-shrink: 0;
  width: 4.5rem;
  text-align: center;
  background: #006e24;
  color: #ffffff;
  border-radius: 0.75rem;
  padding: 0.625rem 0.5rem;
}

.torneo-resultado-dia {
  display: block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.torneo-resultado-mes {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
  line-height: 1.2;
}

.torneo-resultado-logo {
  height: 4.5rem;
  width: auto;
  opacity: 0.9;
}

.site-logo {
  object-fit: contain;
}

.site-logo--on-dark {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0.5rem;
  padding: 0.375rem 0.625rem;
}

.torneo-serie-header {
  margin-bottom: 0.75rem;
}

.torneo-serie-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #004d19;
  color: #ffffff;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
}

.torneo-serie-badge-icon {
  font-size: 1.125rem;
}

.torneo-tabla-wrap {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #e2e8e0;
  box-shadow: 0 2px 12px rgba(0, 110, 36, 0.06);
}

.torneo-tabla {
  width: 100%;
  border-collapse: collapse;
  min-width: 36rem;
}

.torneo-tabla-th {
  background: #004d19;
  color: #ffffff;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.875rem 0.75rem;
  text-align: center;
}

.torneo-tabla-th--jugador {
  text-align: left;
  padding-left: 1.25rem;
}

.torneo-tabla-td {
  padding: 0.75rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a1c19;
  border-bottom: 1px solid #e8ece6;
  vertical-align: middle;
}

.torneo-tabla-td--jugador {
  padding-left: 1rem;
}

.torneo-tabla-td--num {
  text-align: center;
}

.torneo-row:nth-child(even) {
  background: #fafaf4;
}

.torneo-row:nth-child(odd) {
  background: #ffffff;
}

.torneo-row--gross {
  background: #fff8e6 !important;
}

.torneo-row--neto {
  background: #e8f9ed !important;
}

.torneo-jugador-cell {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.torneo-jugador-nombre {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.torneo-icon {
  flex-shrink: 0;
  font-size: 1.375rem;
}

.torneo-icon--trophy {
  color: #c9a227;
}

.torneo-icon--medal {
  color: #5b8def;
}

.torneo-icon-spacer {
  width: 1.375rem;
  flex-shrink: 0;
}

.torneo-celda-ganador {
  font-weight: 800;
}

.torneo-ganador-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  line-height: 1.1;
}

.torneo-ganador-star {
  font-size: 0.875rem;
  font-variation-settings: 'FILL' 1;
}

.torneo-celda-ganador--gross .torneo-ganador-star,
.torneo-celda-ganador--gross .torneo-ganador-valor {
  color: #c17800;
}

.torneo-celda-ganador--gross .torneo-ganador-texto {
  color: #c17800;
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.torneo-celda-ganador--gross .torneo-ganador-valor {
  font-size: 1.25rem;
}

.torneo-celda-ganador--neto .torneo-ganador-star,
.torneo-celda-ganador--neto .torneo-ganador-valor {
  color: #006e24;
}

.torneo-celda-ganador--neto .torneo-ganador-texto {
  color: #006e24;
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.torneo-celda-ganador--neto .torneo-ganador-valor {
  font-size: 1.25rem;
}

/* Ranking anual — estilo Excel */
.ranking-anual-info {
  border-left: 4px solid #006e24;
}

.excel-sheet-wrap {
  border: 1px solid #b4b4b4;
  border-radius: 0.25rem;
  overflow: auto;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.excel-sheet {
  width: 100%;
  border-collapse: collapse;
  min-width: 32rem;
  font-family: 'Segoe UI', 'Manrope', sans-serif;
  font-size: 0.875rem;
}

.excel-th {
  background: #217346;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  padding: 0.625rem 0.75rem;
  border: 1px solid #1a5c38;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 2;
}

.excel-th--nombre {
  text-align: left;
  min-width: 12rem;
}

.excel-th--row-num {
  width: 2.5rem;
  background: #f3f3f3;
  color: #444444;
  border-color: #d4d4d4;
}

.excel-td {
  padding: 0.375rem 0.625rem;
  border: 1px solid #d4d4d4;
  vertical-align: middle;
  background: #ffffff;
}

.excel-row:nth-child(even) .excel-td:not(.excel-td--row-num) {
  background: #f9faf8;
}

.excel-td--row-num {
  background: #f3f3f3;
  color: #666666;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  border-color: #d4d4d4;
}

.excel-td--nombre {
  font-weight: 600;
  color: #1a1c19;
  white-space: nowrap;
}

.excel-td--serie {
  text-align: center;
}

.excel-td--mes {
  text-align: center;
  color: #3d4a3c;
}

.excel-td--golpes {
  text-align: center;
  min-width: 5.5rem;
}

.excel-td--empty {
  text-align: center;
  padding: 2rem;
  color: #6d7b6a;
}

.excel-serie-badge {
  display: inline-block;
  min-width: 1.75rem;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 800;
  font-size: 0.75rem;
  text-align: center;
}

.excel-serie-a {
  background: #e8f4fd;
  color: #1565c0;
}

.excel-serie-b {
  background: #fff8e6;
  color: #c17800;
}

.excel-serie-c {
  background: #e8f9ed;
  color: #006e24;
}

.excel-input-golpes {
  width: 4.5rem;
  padding: 0.25rem 0.375rem;
  border: 2px solid #217346;
  border-radius: 0.125rem;
  text-align: center;
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a1c19;
  background: #fffef0;
}

.excel-input-golpes:focus {
  outline: none;
  border-color: #006e24;
  box-shadow: 0 0 0 2px rgba(33, 115, 70, 0.25);
  background: #ffffff;
}

.excel-input-golpes:disabled {
  opacity: 0.6;
}

.excel-golpes-readonly {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-family: 'Consolas', 'Courier New', monospace;
  font-weight: 700;
  color: #1a1c19;
  min-width: 4.5rem;
}

.excel-lock-icon {
  font-size: 0.875rem;
  color: #6d7b6a;
}

.ranking-anual-toast.text-error {
  color: #ba1a1a;
}

.ranking-anual-toast.text-primary {
  color: #006e24;
}

/* Socios activos */
.socio-activo-card {
  display: flex;
  flex-direction: column;
}

.socio-activo-foto {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #e2e8e0;
}

.socio-activo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.socio-activo-card:hover .socio-activo-img {
  transform: scale(1.03);
}

.socio-activo-info {
  padding: 1.25rem 1.5rem 1.5rem;
  text-align: center;
}

.socio-activo-nombre {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #006e24;
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.socio-activo-fecha {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  color: #3d4a3c;
}

.socio-activo-fecha-icon {
  font-size: 1.125rem;
  color: #006e24;
}

.socio-activo-fecha strong {
  color: #1a1c19;
  font-weight: 600;
}

@media (min-width: 640px) {
  .socio-activo-foto {
    aspect-ratio: 4 / 5;
    min-height: 22rem;
  }
}

/* Beneficios y convenios */
.beneficios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .beneficio-card:has(.beneficio-convenio) {
    grid-column: 1 / -1;
  }
}

.beneficio-descuento {
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.beneficio-descuento-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.beneficio-logo {
  max-height: 3.5rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.beneficio-icon-wrap {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8ebd5 0%, #21b546 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.beneficio-icon-wrap .material-symbols-outlined {
  font-size: 2rem;
}

.beneficio-badge {
  display: inline-block;
  background: #006e24;
  color: #ffffff;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
}

.beneficio-titulo {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #006e24;
  margin-bottom: 0.5rem;
}

.beneficio-texto {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  color: #3d4a3c;
  line-height: 1.5;
}

.beneficio-convenio {
  padding: 1.5rem;
}

.beneficio-convenio-badge {
  display: inline-block;
  background: #004d19;
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  margin-bottom: 0.75rem;
}

.beneficio-intro {
  margin-bottom: 1.25rem;
}

.beneficio-intro strong {
  color: #006e24;
  font-weight: 600;
}

.beneficio-detalles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .beneficio-detalles {
    grid-template-columns: repeat(2, 1fr);
  }
}

.beneficio-detalle {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.875rem;
  background: #f4f7f2;
  border-radius: 0.75rem;
  border: 1px solid #e2e8e0;
}

.beneficio-detalle-icon {
  color: #006e24;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.beneficio-detalle-titulo {
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #006e24;
  margin-bottom: 0.125rem;
}

.beneficio-detalle-texto {
  font-size: 0.9375rem;
  color: #1a1c19;
}

.beneficio-tarifas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.beneficio-tarifa {
  text-align: center;
  padding: 1rem;
  background: #006e24;
  color: #ffffff;
  border-radius: 0.75rem;
}

.beneficio-tarifa-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.9;
  margin-bottom: 0.25rem;
}

.beneficio-tarifa-valor {
  display: block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
}

.beneficio-items {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .beneficio-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

.beneficio-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.875rem;
  background: #fafaf4;
  border-radius: 0.75rem;
  border: 1px solid #e2e8e0;
}

.beneficio-item-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c8ebd5;
  color: #006e24;
  border-radius: 50%;
  font-size: 1.25rem;
}

.beneficio-item-titulo {
  font-weight: 700;
  font-size: 0.875rem;
  color: #006e24;
  margin-bottom: 0.125rem;
}

.beneficio-item-texto {
  font-size: 0.875rem;
  color: #3d4a3c;
  line-height: 1.45;
}

.beneficio-item-texto strong {
  color: #1a1c19;
  font-weight: 700;
}

.beneficio-normas {
  margin-bottom: 1rem;
  padding: 1rem;
  background: #fff8e6;
  border-radius: 0.75rem;
  border: 1px solid #f0e0b0;
}

.beneficio-normas-titulo {
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8a6d00;
  margin-bottom: 0.5rem;
}

.beneficio-normas ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
}

.beneficio-normas li {
  font-size: 0.875rem;
  color: #3d4a3c;
  margin-bottom: 0.25rem;
}

.beneficio-nota {
  font-size: 0.875rem;
  font-style: italic;
  color: #3d4a3c;
  padding: 0.875rem 1rem;
  background: #e8f9ed;
  border-radius: 0.75rem;
  border-left: 4px solid #006e24;
  margin-bottom: 1rem;
}

.beneficio-nota strong {
  color: #006e24;
  font-weight: 700;
}

.beneficio-flyer {
  margin-top: 0.5rem;
}

.beneficio-flyer-toggle {
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #006e24;
  list-style: none;
  padding: 0.5rem 0;
}

.beneficio-flyer-toggle::-webkit-details-marker {
  display: none;
}

.beneficio-flyer-img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin-top: 0.5rem;
  border: 1px solid #e2e8e0;
}

.eventos-slogan {
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.eventos-notas {
  border-left: 4px solid #006e24;
  background: rgba(255, 255, 255, 0.85);
}

.eventos-calendario-header {
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #c8ebd5;
}
