.hero {
  min-height: 100vh;
  padding: 170px 24px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-logo {
  width: 400px;
  height: auto;
}

.hero-tagline {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.section {
  padding: 90px 24px;
  position: relative;
  z-index: 1;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

.section h2 {
  font-size: 32px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin-top: 10px;
}

.section p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.section-nosotros,
.section-eventos,
.section-contacto,
.section-remeras {
  background: rgba(7, 7, 7, 0.78);
  backdrop-filter: blur(6px);
}

/* Equipo */
.team-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.team-photos img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.objective-block h3,
.team-title h3 {
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.member-card {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  display: grid;
  gap: 10px;
}

.member-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 2px solid var(--accent);
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* Eventos */
.eventos-empty {
  color: var(--accent);
}

.eventos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.evento-card {
  background: rgba(8, 8, 8, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 16px;
  display: grid;
  gap: 12px;
  position: relative;
}

/* Registration status badges */
.evento-status-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.evento-status-open {
  background: #28a745 !important;
  color: white !important;
}

.evento-status-closed {
  background: #dc3545 !important;
  color: white !important;
}


.evento-media {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.evento-media--empty {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  border: 1px dashed rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evento-detalle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.evento-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

/* Resultados */
.resultados-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.resultado-card {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 8px;
}

.resultado-card h3 {
  font-size: 16px;
}

.resultado-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.resultado-table {
  display: grid;
  gap: 6px;
}

.resultado-row {
  display: grid;
  grid-template-columns: 48px 1fr 90px 120px;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.resultado-head {
  font-weight: 600;
  color: var(--accent);
}

.resultado-comments {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.comentario {
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
}

.comentario-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.comentario-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

.resultado-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.comentarios-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.comentarios-btn img {
  width: 16px;
  height: 16px;
}

.resultado-empty {
  display: grid;
  place-items: center;
  min-height: 180px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
}

/* Talles - Radio Options as Tags */
.radio-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.radio-option {
  position: relative;
  cursor: pointer;
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-option span {
  display: inline-block;
  padding: 10px 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.radio-option input[type="radio"]:checked + span {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  font-weight: 600;
}

.radio-option span:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
}

/* Footer */
.site-footer {
  padding: 30px 24px 40px;
  background: rgba(5, 5, 5, 0.9);
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.footer-nav {
  display: flex;
  gap: 16px;
}

/* Tema claro para home */
body.theme-light h1,
body.theme-light h2,
body.theme-light h3,
body.theme-light h4,
body.theme-light h5,
body.theme-light h6,
body.theme-light p,
body.theme-light span,
body.theme-light label,
body.theme-light strong,
body.theme-light small {
  color: #141414;
}

body.theme-light .section p {
  color: rgba(0, 0, 0, 0.85);
}

body.theme-light .section-nosotros,
body.theme-light .section-eventos,
body.theme-light .section-contacto,
body.theme-light .section-remeras {
  background: rgba(255, 255, 255, 0.78);
}

body.theme-light .member-card,
body.theme-light .resultado-card,
body.theme-light .evento-card {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.12);
  color: #141414;
}

body.theme-light .radio-option span {
  border-color: rgba(0, 0, 0, 0.3);
  color: rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.05);
}

body.theme-light .radio-option input[type="radio"]:checked + span {
  color: #fff;
}

body.theme-light .radio-option span:hover {
  border-color: var(--accent);
  background: rgba(0, 0, 0, 0.1);
}

body.theme-light .site-footer {
  background: rgba(245, 245, 245, 0.9);
}

@media (max-width: 860px) {
  .hero {
    padding-top: 200px;
  }
}

@media (max-width: 520px) {
  .hero-logo {
    width: 300px;
  }

  .hero-tagline {
    font-size: 16px;
  }
}

/* Contact Form Styles */
.contact-form {
  max-width: 800px;
  margin: 32px 0 0;
}

.contact-form .form-container {
  display: grid;
  gap: 20px;
}

.contact-form .btn {
  justify-self: flex-start;
  min-width: 220px;
}