/* Reset y Variables CSS */
:root {
  --background: 240 33% 4%;
  --foreground: 0 0% 98%;
  --card: 240 24% 10%;
  --card-foreground: 0 0% 98%;
  --popover: 240 24% 6%;
  --popover-foreground: 0 0% 98%;
  --primary: 182 100% 55%;
  --primary-foreground: 240 33% 4%;
  --primary-hover: 182 100% 65%;
  --secondary: 300 100% 65%;
  --secondary-foreground: 0 0% 98%;
  --secondary-hover: 300 100% 75%;
  --muted: 240 24% 8%;
  --muted-foreground: 0 0% 70%;
  --accent: 150 100% 50%;
  --accent-foreground: 240 33% 4%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 100%;
  --border: 240 24% 20%;
  --input: 240 24% 20%;
  --ring: 182 100% 55%;
  --radius: 1.25rem;
  --gradient-hero: linear-gradient(135deg, rgba(5, 5, 8, 0.95) 0%, rgba(10, 10, 15, 0.9) 100%);
  --gradient-card: linear-gradient(180deg, rgba(15, 15, 25, 0.95), rgba(5, 5, 8, 0.9));
  --shadow-card: 0 25px 60px rgba(0, 240, 255, 0.15);
  --shadow-hover: 0 40px 80px rgba(0, 240, 255, 0.25);
  --primary-color: #00f0ff;
  --secondary-color: #ff00ff;
  --accent-color: #00ff88;
  --dark-bg: #0a0a0f;
  --darker-bg: #050508;
  --card-bg: rgba(15, 15, 25, 0.85);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --border-color: rgba(0, 240, 255, 0.3);
  --glow-color: rgba(0, 240, 255, 0.5);
  --hero-image: url('../assets/actuales/hero-bg.webp');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: hsl(var(--border));
}


/* Utilidades */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1400px;
  }
}

/* Grid y Flexbox */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* Espaciado */
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-24 { padding-bottom: 6rem; }

.m-0 { margin: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Tipografía */
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }

.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }

.text-center { text-align: center; }
.text-left { text-align: left; }

.italic { font-style: italic; }

/* Colores */
.text-foreground { color: hsl(var(--foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-primary { color: hsl(var(--primary)); }
.text-secondary { color: hsl(var(--secondary)); }
.text-white { color: white; }
.text-destructive { color: hsl(var(--destructive)); }

.bg-background { background-color: hsl(var(--background)); }
.bg-card { background-color: hsl(var(--card)); }
.bg-muted { background-color: hsl(var(--muted)); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-secondary { background-color: hsl(var(--secondary)); }
.bg-accent { background-color: hsl(var(--accent)); }
.bg-gradient-card { background: var(--gradient-card); }
.bg-gradient-hero { background: var(--gradient-hero); }

.bg-primary\/5 { background-color: hsl(var(--primary) / 0.05); }
.bg-primary\/10 { background-color: hsl(var(--primary) / 0.1); }
.bg-secondary\/5 { background-color: hsl(var(--secondary) / 0.05); }
.bg-secondary\/10 { background-color: hsl(var(--secondary) / 0.1); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-black\/50 { background-color: rgba(0, 0, 0, 0.5); }
.bg-black\/70 { background-color: rgba(0, 0, 0, 0.7); }

.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-secondary-foreground { color: hsl(var(--secondary-foreground)); }

/* Bordes */
.border { border-width: 1px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-border { border-color: hsl(var(--border)); }
.border-primary { border-color: hsl(var(--primary)); }
.border-secondary { border-color: hsl(var(--secondary)); }
.border-muted { border-color: hsl(var(--muted)); }
.border-white { border-color: white; }

.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: var(--radius); }
.rounded-full { border-radius: 9999px; }
.rounded-r-lg { border-top-right-radius: var(--radius); border-bottom-right-radius: var(--radius); }
.rounded-md { border-radius: calc(var(--radius) - 2px); }

/* Sombras */
.shadow-card { box-shadow: var(--shadow-card); }
.shadow-hover { box-shadow: var(--shadow-hover); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

/* Efectos */
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

.hover\:text-primary:hover { color: hsl(var(--primary)); }
.hover\:text-secondary:hover { color: hsl(var(--secondary)); }
.hover\:bg-white:hover { background-color: white; }
.hover\:bg-accent:hover { background-color: hsl(var(--accent)); }
.hover\:bg-primary:hover { background-color: hsl(var(--primary-hover)); }
.hover\:bg-secondary:hover { background-color: hsl(var(--secondary-hover)); }
.hover\:shadow-hover:hover { box-shadow: var(--shadow-hover); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:underline:hover { text-decoration: underline; }

/* Posicionamiento */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.top-4 { top: 1rem; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-50 { z-index: 50; }

/* Tamaños */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-48 { height: 12rem; }
.h-\[400px\] { height: 400px; }
.h-\[50vh\] { height: 50vh; }
.h-\[600px\] { height: 600px; }
.min-h-screen { min-height: 100vh; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-sm { max-width: 24rem; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Objetos */
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }

/* Display */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:hidden { display: none; }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
}

@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:w-auto { width: auto; }
}

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 150ms;
  cursor: pointer;
  border: none;
  text-decoration: none;
  padding: 0.5rem 1rem;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}


.btn-secondary {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.btn-secondary:hover {
  background-color: hsl(var(--secondary-hover));
}

.btn-outline {
  background-color: transparent;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
}

.btn-outline:hover {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

/* Cards */
.card {
  background-color: hsl(var(--card));
  color: hsl(var(--card-foreground));
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-header {
  padding: 1.5rem;
}

/* Card con imagen (reservas) */
.card-reserva {
  position: relative;
  overflow: hidden;
}

.card-reserva .card-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.card-reserva .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card-reserva:hover .card-image img {
  transform: scale(1.1);
}

.card-reserva .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.card-reserva .card-header {
  position: relative;
  z-index: 1;
}

.card-reserva .card-content {
  position: relative;
  z-index: 1;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-description {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.card-content {
  padding: 1.5rem;
  padding-top: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-content > :last-child {
  margin-top: auto;
}

/* Inputs */
.input {
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid hsl(var(--input));
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}

.input:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

/* Estilos para el campo de fecha */
.date-input-wrapper {
  position: relative;
  cursor: pointer;
}

.date-input-wrapper input[type="date"] {
  cursor: pointer;
  position: relative;
  color-scheme: dark;
}

.date-input-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 1;
  position: absolute;
  right: 0.5rem;
  width: 20px;
  height: 20px;
  z-index: 1;
}

.date-input-wrapper:hover input[type="date"] {
  border-color: hsl(var(--primary) / 0.5);
}

.label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

.textarea {
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid hsl(var(--input));
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  resize: vertical;
  min-height: 80px;
}

.textarea:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

/* Checkbox y Radio */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox {
  width: 1rem;
  height: 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.25rem;
  cursor: pointer;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.radio {
  width: 1rem;
  height: 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: 50%;
  cursor: pointer;
}

/* Navbar */
.navbar {
  background-color: hsl(var(--background) / 0.95);
  border-bottom: 1px solid hsl(var(--border));
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(4px);
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 1rem;
}

.navbar-logo {
  height: 65px;
  width: auto;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .navbar-links {
    display: flex;
  }
}

.navbar-link {
  color: hsl(var(--foreground));
  text-decoration: none;
  transition: color 300ms;
}

.navbar-link:hover {
  color: hsl(var(--primary));
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: hsl(var(--foreground));
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu.active {
  display: flex;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Footer */
.footer {
  background-color: hsl(var(--muted));
  margin-top: 5rem;
}

.footer-content {
  padding: 3rem 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
}

.footer-title .secondary {
  color: hsl(var(--secondary));
}

.footer-link {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 300ms;
}

.footer-link:hover {
  color: hsl(var(--primary));
}

.footer-bottom {
  border-top: 1px solid hsl(var(--border));
  padding-top: 2rem;
  text-align: center;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.footer-bottom-link {
  color: inherit;
  text-decoration: underline;
  transition: color 300ms;
}

.footer-bottom-link:visited {
  color: inherit;
}

.footer-bottom-link:hover {
  color: hsl(var(--primary));
}

/* Breadcrumbs */
.breadcrumbs {
  margin-bottom: 1.5rem;
}

.breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 300ms;
}

.breadcrumbs a:hover {
  color: hsl(var(--foreground));
}

.breadcrumbs .current {
  color: hsl(var(--foreground));
  font-weight: 500;
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero p {
  font-size: 1.25rem;
  color: white;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero p {
    font-size: 1.5rem;
  }
}

/* Activity Cards */
.activity-card {
  background-color: hsl(var(--card));
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 300ms;
}

.activity-card:hover {
  box-shadow: var(--shadow-hover);
  transform: scale(1.05);
}

.activity-card-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.activity-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms;
}

.activity-card:hover .activity-card-image img {
  transform: scale(1.1);
}

.activity-card-content {
  padding: 1.5rem;
}

.activity-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

.activity-card-description {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.activity-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.activity-card-meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Prose */
.prose {
  max-width: none;
}

.prose h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}

.prose p {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* Opacity */
.opacity-90 { opacity: 0.9; }

/* Flex shrink */
.flex-shrink-0 { flex-shrink: 0; }

/* Cursor */
.cursor-pointer { cursor: pointer; }


/* Responsive utilities */
@media (max-width: 767px) {
  .mobile-hidden {
    display: none;
  }
}

/* Iconos SVG inline - se pueden reemplazar con iconos reales */
.icon {
  width: 1rem;
  height: 1rem;
  display: inline-block;
  vertical-align: middle;
}

/* Sticky summary para formularios */
.sticky-summary {
  position: sticky;
  top: 1rem;
}

/* Floating mobile summary */
.floating-summary {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: hsl(var(--background));
  border-top: 1px solid hsl(var(--border));
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  z-index: 30;
}

/* Formulario específico */
.form-section {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-error {
  color: hsl(var(--destructive));
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Radio buttons personalizados */
.radio-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: calc(var(--radius) - 2px);
  border: 2px solid hsl(var(--muted));
  background-color: hsl(var(--background));
  padding: 1rem;
  cursor: pointer;
  transition: all 150ms;
  position: relative;
}

.radio-option:hover {
  border-color: hsl(var(--primary) / 0.5);
}

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

.radio-option input[type="radio"]:checked ~ span,
.radio-option:has(input[type="radio"]:checked) {
  border-color: hsl(var(--primary));
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.radio-option input[type="radio"]:checked {
  border-color: hsl(var(--primary));
}


/* Checkbox personalizado */
.checkbox-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: calc(var(--radius) - 2px);
  border: 2px solid hsl(var(--muted));
  cursor: pointer;
  transition: all 150ms;
}

.checkbox-option:hover {
  border-color: hsl(var(--primary) / 0.5);
}

.checkbox-option input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  accent-color: hsl(var(--primary));
}

.checkbox-option:has(input[type="checkbox"]:checked) {
  border-color: hsl(var(--primary));
  background-color: hsl(var(--primary) / 0.1);
}

/* Counter buttons */
.counter-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.counter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid hsl(var(--border));
  background-color: transparent;
  color: hsl(var(--foreground));
  cursor: pointer;
  transition: all 150ms;
}

.counter-btn:hover {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

.counter-input {
  width: 5rem;
  text-align: center;
}

/* Estilos adicionales para formularios */
.form-error {
  color: hsl(var(--destructive));
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

.form-error.hidden {
  display: none;
}

/* Radio buttons en checkbox-option (para menú) */
.checkbox-option input[type="radio"] {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  accent-color: hsl(var(--primary));
}

.checkbox-option:has(input[type="radio"]:checked) {
  border-color: hsl(var(--primary));
  background-color: hsl(var(--primary) / 0.1);
}

/* Estilos para opciones deshabilitadas */
.checkbox-option.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background-color: hsl(var(--muted) / 0.3);
  border-color: hsl(var(--muted) / 0.5);
}

.checkbox-option.disabled:hover {
  background-color: hsl(var(--muted) / 0.3);
}

.checkbox-option.disabled input[type="radio"],
.checkbox-option.disabled input[type="checkbox"] {
  cursor: not-allowed;
  opacity: 0.5;
}

/* Imágenes de logotipos de actividades */
.activity-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid hsl(var(--border));
  flex-shrink: 0;
}

.checkbox-option:has(input[type="radio"]:checked) .activity-logo {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 10px hsl(var(--primary) / 0.5);
}

/* Imágenes de complementos */
.complement-image {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid hsl(var(--border));
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.complement-image:hover {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 10px hsl(var(--primary) / 0.5);
  transform: scale(1.1);
}

/* Modal para ampliar imágenes */
.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.image-modal.active {
  display: flex;
}

.image-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.image-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  z-index: 10000;
  animation: scaleIn 0.3s ease;
}

.image-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 40px;
  height: 40px;
  background: hsl(var(--primary));
  border: none;
  border-radius: 50%;
  color: hsl(var(--primary-foreground));
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
}

.image-modal-close:hover {
  background: hsl(var(--primary-hover));
  transform: rotate(90deg);
}

.image-modal-close svg {
  width: 24px;
  height: 24px;
}

.image-modal-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.flex-1 {
  flex: 1;
}

/* Ajustes para z-index negativo en hero */
.-mt-16 {
  margin-top: -4rem;
}

.relative.z-20 {
  position: relative;
  z-index: 20;
}

/* ============================================
   LANDING THEME OVERRIDES
   ============================================ */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--darker-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--primary-color);
  color: var(--dark-bg);
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--dark-bg);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 8, 0.9);
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.navbar-content {
  padding: 0.5rem 0;
}

.navbar-logo {
  height: 70px;
  filter: drop-shadow(0 0 20px var(--glow-color));
}

.navbar-links {
  gap: 1.5rem;
}

.navbar-link {
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 4px;
}

.navbar-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--glow-color);
}

.navbar-link:hover {
  color: var(--text-primary);
}

.navbar-link:hover::after {
  width: 100%;
}

.mobile-menu {
  background: rgba(5, 5, 8, 0.95);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.mobile-menu-btn {
  color: var(--primary-color);
}

.hero {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 50%, #1a1a2e 100%);
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  padding: 20px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
  z-index: 2;
  animation: pulse 4s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
}

.hero-content.compact {
  max-width: 720px;
}

.logo-container {
  margin-bottom: -20px;
  animation: fadeInDown 1s ease-out;
}

.logo {
  max-width: 320px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 20px var(--glow-color));
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--glow-color);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--text-secondary);
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  font-weight: 600;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--dark-bg);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
  border-color: var(--primary-color);
}

.btn-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--dark-bg);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
  border-color: var(--primary-color);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  color: var(--dark-bg);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
}

.btn-cta {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: var(--text-primary);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 40px rgba(255, 0, 255, 0.9);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--dark-bg);
}

.glitch {
  position: relative;
  display: inline-block;
  color: var(--text-primary);
  text-shadow:
    0 0 15px rgba(0, 240, 255, 0.5),
    0 0 30px rgba(0, 240, 255, 0.3);
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.6;
  filter: blur(5px);
}

.glitch::before {
  color: var(--primary-color);
  animation: glow-shift 6s ease-in-out infinite;
}

.glitch::after {
  color: var(--secondary-color);
  opacity: 0.4;
  animation: glow-drift 5s ease-in-out infinite;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}

.title-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  box-shadow: 0 0 10px var(--glow-color);
}

.title-text {
  color: var(--primary-color);
  text-shadow: 0 0 20px var(--glow-color);
  white-space: nowrap;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 60px;
}

.activities {
  padding: 120px 0;
  background: var(--darker-bg);
  position: relative;
}

.activities::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  box-shadow: 0 0 10px var(--glow-color);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.activity-card {
  position: relative;
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.activity-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(0, 240, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s;
  opacity: 0;
}

.activity-card:hover::before {
  animation: shine 0.6s ease-in-out;
}

.card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow-color), transparent);
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  z-index: 0;
  opacity: 0;
}

.activity-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow:
    0 20px 60px rgba(0, 240, 255, 0.3),
    0 0 40px rgba(0, 240, 255, 0.2),
    inset 0 0 30px rgba(0, 240, 255, 0.1);
}

.activity-card:hover .card-glow {
  width: 400px;
  height: 400px;
  opacity: 0.6;
}

.card-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.activity-card:hover .card-image img {
  transform: scale(1.2) rotate(2deg);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(10, 10, 15, 0.8));
  transition: all 0.4s;
}

.activity-card:hover .card-overlay {
  background: linear-gradient(to bottom, transparent, rgba(0, 240, 255, 0.2));
}

.card-content {
  position: relative;
  padding: 30px;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-badge {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--dark-bg);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.card-title {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--glow-color);
  transition: all 0.3s;
}

.activity-card:hover .card-title {
  color: var(--accent-color);
  text-shadow: 0 0 20px var(--accent-color);
}

.card-description {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 1rem;
}

.card-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.info-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  color: var(--primary-color);
  transition: all 0.3s;
}

.activity-card:hover .info-icon {
  color: var(--accent-color);
  transform: scale(1.2);
}

.card-button {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.card-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.3), transparent);
  transition: left 0.5s;
}

.card-button:hover::before {
  left: 100%;
}

.card-button:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 240, 255, 0.5);
}

.features {
  padding: 120px 0;
  background: var(--dark-bg);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  text-align: center;
  padding: 50px 30px;
  background: var(--card-bg);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(0, 255, 136, 0.1));
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(0, 240, 255, 0.2);
}

/* Feature card como enlace */
a.feature-card-link {
  text-decoration: none;
  display: block;
  color: inherit;
  cursor: pointer;
}

a.feature-card-link:hover {
  text-decoration: none;
}

a.feature-card-link:visited {
  color: inherit;
}

.feature-icon {
  font-size: 4rem;
  margin-bottom: 25px;
  display: block;
  transition: transform 0.4s;
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-icon {
  transform: scale(1.2) rotate(5deg);
}

.feature-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
  position: relative;
  z-index: 1;
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.cta {
  position: relative;
  padding: 120px 20px;
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  text-align: center;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(0, 240, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255, 0, 255, 0.2) 0%, transparent 50%);
  animation: pulse 4s ease-in-out infinite;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: url('../assets/actuales/hero-bg.webp') center/cover;
  opacity: 0.1;
  filter: blur(6px);
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 0 0 30px var(--glow-color);
  position: relative;
  z-index: 2;
}

.cta-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.cta .btn-cta {
  position: relative;
  z-index: 2;
}

.footer {
  padding: 60px 0 30px;
  background: var(--darker-bg);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.6);
}

.footer-content {
  position: relative;
}

.footer-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  text-shadow: 0 0 20px var(--glow-color);
}

.footer-title .secondary {
  color: var(--secondary-color);
}

.footer-link {
  color: var(--text-secondary);
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-bottom-link {
  color: inherit;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-bottom-link:visited {
  color: inherit;
}

.footer-bottom-link:hover {
  color: var(--primary-color);
}

.bg-gradient-card {
  background: var(--gradient-card);
}

.bg-muted,
.bg-primary\/5,
.bg-primary\/10,
.bg-secondary\/5,
.bg-secondary\/10 {
  background: rgba(10, 10, 15, 0.7);
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.input,
.textarea {
  background: rgba(5, 5, 8, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.35);
}

.input:focus,
.textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.3);
}

.breadcrumbs a {
  color: var(--text-secondary);
}

.breadcrumbs a:hover {
  color: var(--primary-color);
}

.breadcrumbs .current {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .hero {
    padding: 20px;
    background-attachment: scroll;
  }

  .hero-content {
    padding: 15px 10px;
  }

  h1.hero-title,
  .hero-title {
    letter-spacing: 1px;
    text-align: center;
  }

  .hero-subtitle {
    text-align: center;
    margin-bottom: 15px;
  }

  .section-title {
    font-size: 2rem;
    flex-direction: column;
    gap: 10px;
  }

  .title-line {
    width: 120px;
  }

  .activities {
    padding: 80px 0;
  }

  .features {
    padding: 80px 0;
  }

  .cta {
    padding: 80px 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 0px 10px 0px;
  }

  .hero-content {
    padding: 10px 5px;
  }

  h1.hero-title,
  .hero-title {
    font-size: 1.5rem !important;
    letter-spacing: 0;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .logo {
    max-width: 200px;
  }

  .hero-tags {
    gap: 8px;
    margin-bottom: 20px;
  }

  .hero-tag {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .hero-buttons {
    gap: 10px;
  }

  .hero-buttons .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .hero {
    padding: 0px 5px 0px;
  }

  .hero-content {
    padding: 8px 0;
  }

  h1.hero-title,
  .hero-title {
    font-size: 1.3rem !important;
    letter-spacing: 0;
    margin-bottom: 8px;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }

  .logo {
    max-width: 180px;
  }

  .hero-tag {
    padding: 5px 10px;
    font-size: 0.7rem;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
    opacity: 0;
  }
}

@keyframes glow-shift {
  0% {
    transform: translate(-2px, -2px) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(3px, 3px) scale(1.04);
    opacity: 0.9;
  }
  100% {
    transform: translate(-2px, -2px) scale(1);
    opacity: 0.4;
  }
}

@keyframes glow-drift {
  0% {
    transform: translate(2px, -2px) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-3px, 3px) scale(1.03);
    opacity: 0.7;
  }
  100% {
    transform: translate(2px, -2px) scale(1);
    opacity: 0.3;
  }
}

/* ============================================
   ACCORDION
   ============================================ */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: rgba(0, 240, 255, 0.05);
}

.accordion-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--glow-color);
  flex: 1;
}

.accordion-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-color);
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid rgba(0, 240, 255, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  margin-right: 12px;
  white-space: nowrap;
}

.accordion-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
  margin-right: 12px;
}

.accordion-chevron {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: auto;
}

.accordion-item.active .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
  max-height: 3000px;
}

.accordion-body {
  padding: 20px 24px 24px 24px;
  border-top: 1px solid var(--border-color);
}

/* Espaciado interno del acordeón */
.accordion-body .prose {
  margin-bottom: 1.5rem;
}

/* Párrafos de resumen de cumpleaños (editables) */
.cumples-resumen-parrafo {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

.cumples-resumen-parrafo p {
  margin: 0;
}

.cumples-resumen-parrafo ul {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0 0;
}

.cumples-resumen-parrafo ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  padding-left: 0;
}

.cumples-resumen-parrafo ul li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.cumples-resumen-parrafo ul li:last-child {
  margin-bottom: 0;
}

/* Hover en modo edición */
.admin-mode .cumples-resumen-parrafo:hover {
  background: rgba(14, 165, 233, 0.05);
  border-radius: 8px;
  padding: 0.5rem;
  margin: -0.5rem;
  margin-bottom: calc(1rem - 0.5rem);
}

/* Características de cumpleaños - siempre en fila */
.cumples-features {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 3rem;
  flex-wrap: nowrap;
}

.cumples-feature-item {
  flex: 1;
  max-width: 140px;
  min-width: 0;
  background: rgba(14, 165, 233, 0.1);
  padding: 16px 8px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.cumples-feature-item:nth-child(2) {
  background: rgba(236, 72, 153, 0.1);
  border-color: rgba(236, 72, 153, 0.2);
}

.cumples-feature-item:nth-child(3) {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
}

.cumples-feature-item:nth-child(4) {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.2);
}

.cumples-feature-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 8px;
}

.cumples-feature-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.2;
}

@media (max-width: 480px) {
  .cumples-features {
    gap: 8px;
  }

  .cumples-feature-item {
    padding: 10px 4px;
    border-radius: 8px;
  }

  .cumples-feature-icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
  }

  .cumples-feature-text {
    font-size: 0.65rem;
  }
}

@media (max-width: 360px) {
  .cumples-features {
    gap: 4px;
  }

  .cumples-feature-item {
    padding: 8px 2px;
  }

  .cumples-feature-icon {
    font-size: 1.2rem;
    margin-bottom: 2px;
  }

  .cumples-feature-text {
    font-size: 0.6rem;
  }
}

/* ===========================================
   EMPRESAS QUE CONFÍAN - TEAMBUILDING
   =========================================== */

.empresas-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .empresas-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 768px) {
  .empresas-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.empresa-card {
  background-color: hsl(var(--muted));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, filter 0.3s ease;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
}

.empresa-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  background-color: rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.3);
}

.empresa-card.has-logo:hover {
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.4));
}

.empresa-nombre {
  font-weight: 700;
  font-size: 0.85rem;
  color: hsl(var(--foreground));
  text-align: center;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.empresa-card:hover .empresa-nombre {
  opacity: 1;
  color: hsl(var(--primary));
}

/* Cajas de información dentro del acordeón */
.info-section-box {
  padding: 20px 24px 20px 24px !important;
  margin-bottom: 16px;
  border-radius: 0 8px 8px 0;
  border-left-width: 4px;
  border-left-style: solid;
}

.info-section-box h4 {
  font-weight: 700;
  margin-bottom: 12px;
  padding: 0;
}

.info-section-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-section-box ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  padding-left: 0;
}

.info-section-box ul li:last-child {
  margin-bottom: 0;
}

.info-section-box ul li span:first-child {
  flex-shrink: 0;
  margin-right: 10px;
  margin-top: 2px;
}

.info-section-box p {
  margin: 0;
  line-height: 1.6;
}

/* Sección de precios dentro del acordeón */
.prices-section-box {
  background: var(--muted-bg);
  padding: 24px !important;
  border-radius: 12px;
  margin-bottom: 24px;
}

.prices-section-box h4 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
  padding: 0;
}

.prices-grid {
  display: grid;
  gap: 16px;
}

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

@media (max-width: 640px) {
  .prices-grid-2,
  .prices-grid-3 {
    grid-template-columns: 1fr;
  }
}

.price-card {
  background: var(--card-bg);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.price-card-destacado {
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.price-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.price-unit {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.price-description {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 8px;
  margin-bottom: 0;
}

/* ============================================
   Banner de Cookies - RGPD/LSSI
   ============================================ */

/* Base común */
.cookie-banner {
  position: fixed;
  z-index: 9999;
  background: #252525;
  backdrop-filter: blur(20px);
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}

/* Variante: barra inferior (estilo actual) */
.cookie-banner--bottom {
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid var(--border-color);
  padding: 2rem 1.5rem;
  min-height: 120px;
  transform: translateY(100%);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-banner--bottom.active {
  transform: translateY(0);
}

/* Variante: cuadro flotante centrado */
.cookie-banner--floating {
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  width: 90vw;
  max-width: 520px;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  transform: translate(-50%, -50%) scale(0.95);
  opacity: 0;
  visibility: hidden;
}

.cookie-banner--floating.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}

.cookie-banner--floating .cookie-banner-content {
  max-width: none;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  gap: 1.25rem;
}

.cookie-banner--floating .cookie-banner-buttons {
  justify-content: center;
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.cookie-banner-text {
  flex: 1;
  min-width: 280px;
}

.cookie-banner-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.cookie-banner-text a {
  color: var(--primary-color);
  text-decoration: underline;
}

.cookie-banner-text a:hover {
  color: var(--secondary-color);
}

.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.cookie-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}

.cookie-btn-primary {
  background: var(--primary-color);
  color: #0a0a0f;
  padding: 0.94rem 1.875rem;
  font-size: 1.31rem;
  border-radius: 8px;
}

.cookie-btn-primary:hover {
  background: var(--secondary-color);
  color: #0a0a0f;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(14, 165, 233, 0.4);
}

.cookie-btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.cookie-btn-secondary:hover {
  color: var(--text-primary);
  border-color: var(--text-secondary);
}

.cookie-btn-link {
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  color: var(--text-secondary);
  padding: 0;
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
}

.cookie-btn-link:hover {
  color: var(--primary-color);
}

/* Panel de configuración */
.cookie-settings {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-settings.active {
  opacity: 1;
  visibility: visible;
}

.cookie-settings-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.cookie-settings-panel {
  position: relative;
  background: var(--darker-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.cookie-settings.active .cookie-settings-panel {
  transform: scale(1);
}

.cookie-settings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.cookie-settings-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.cookie-settings-close {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.cookie-settings-close:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
}

.cookie-settings-close svg {
  width: 24px;
  height: 24px;
}

.cookie-settings-body {
  padding: 1.5rem;
}

.cookie-settings-intro {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cookie-category {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.cookie-category:last-child {
  margin-bottom: 0;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-category-info {
  flex: 1;
}

.cookie-category-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.25rem 0;
}

.cookie-category-info p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* Toggle switch */
.cookie-toggle {
  position: relative;
  flex-shrink: 0;
}

.cookie-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  display: block;
  width: 48px;
  height: 26px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
}

.cookie-toggle-slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--primary-color);
}

.cookie-toggle input:checked + .cookie-toggle-slider::after {
  transform: translateX(22px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-toggle input:disabled + .cookie-toggle-slider::after {
  background: var(--primary-color);
}

.cookie-required {
  font-size: 0.75rem;
  color: var(--primary-color);
  margin-top: 0.25rem;
}

.cookie-settings-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-color);
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 768px) {
  .cookie-banner--bottom {
    padding: 2rem 1rem;
    min-height: 140px;
  }
  
  .cookie-banner--floating {
    width: 90vw;
    padding: 2rem 1rem;
  }
  
  .cookie-banner--bottom .cookie-banner-content,
  .cookie-banner--floating .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    justify-content: center;
  }
  
  .cookie-btn {
    flex: none;
    min-width: 100px;
    max-width: 50vw;
  }
  
  .cookie-settings-panel {
    margin: 0.5rem;
    max-height: calc(100vh - 1rem);
  }
  
  .cookie-settings-footer {
    flex-direction: column;
  }
  
  .cookie-settings-footer .cookie-btn {
    width: 100%;
  }
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only.focus\:not-sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--primary-color);
  color: white;
}

/* ============================================
   Colores adicionales (confirmaciones, alertas)
   ============================================ */

/* Verde - Éxito */
.bg-green-500\/20 {
  background-color: rgba(34, 197, 94, 0.2);
}

.text-green-400 {
  color: rgb(74, 222, 128);
}

.border-green-500\/30 {
  border-color: rgba(34, 197, 94, 0.3);
}

/* Rojo - Error */
.bg-red-500\/20 {
  background-color: rgba(239, 68, 68, 0.2);
}

.text-red-400 {
  color: rgb(248, 113, 113);
}

.bg-red-500\/10 {
  background-color: rgba(239, 68, 68, 0.1);
}

.border-red-500\/30 {
  border-color: rgba(239, 68, 68, 0.3);
}

/* Amarillo - Advertencia */
.bg-yellow-500\/20 {
  background-color: rgba(234, 179, 8, 0.2);
}

.text-yellow-400 {
  color: rgb(250, 204, 21);
}

/* Background semitransparente */
.bg-background\/50 {
  background-color: rgba(10, 10, 15, 0.5);
}

