/* Variables - Yoga & Wellness Theme */
:root {
  /* Primary Colors - Deep Forest Green (nature & growth) */
  --color-primario: #065f46;
  --color-primario-claro: #10b981;
  --color-primario-oscuro: #047857;

  /* Secondary Colors - Warm Sage (calm & balance) */
  --color-secundario: #84cc16;
  --color-secundario-claro: #a3e635;
  --color-secundario-oscuro: #65a30d;

  /* Accent Colors - Soft Lavender (spirituality & peace) */
  --color-acento: #8b5cf6;
  --color-acento-claro: #a78bfa;
  --color-acento-oscuro: #7c3aed;

  /* Text Colors - Natural & calming */
  --color-texto: #1f2937;
  --color-texto-claro: #6b7280;
  --color-texto-blanco: #ffffff;
  --color-texto-secundario: #4b5563;

  /* Background Colors - Soft & zen */
  --color-fondo: #fefefe;
  --color-fondo-claro: #f8fafc;
  --color-fondo-oscuro: #0f172a;
  --color-fondo-secundario: #f0fdf4;

  /* Border & UI Colors */
  --color-borde: #e2e8f0;
  --color-borde-claro: #f1f5f9;
  --color-borde-oscuro: #cbd5e1;

  /* Status Colors */
  --color-exito: #059669;
  --color-exito-claro: #10b981;
  --color-error: #dc2626;
  --color-error-claro: #ef4444;
  --color-advertencia: #d97706;
  --color-info: #2563eb;

  /* Yoga & Wellness Accents */
  --color-negro: #000000;
  --color-rojo: #dc2626;
  --color-amarillo: #fbbf24;

  /* Yoga-specific colors */
  --color-lotus: #f3e8ff;
  --color-sage: #d1fae5;
  --color-sunset: #fed7aa;
  --color-ocean: #e0f2fe;

  /* Typography */
  --fuente-principal: "Outfit", sans-serif;
  --fuente-secundaria: "Playfair Display", serif;

  /* Shadows - Professional depth */
  --sombra-sm: 0 2px 4px rgba(30, 58, 138, 0.05);
  --sombra-md: 0 4px 6px rgba(30, 58, 138, 0.1);
  --sombra-lg: 0 10px 15px rgba(30, 58, 138, 0.1);
  --sombra-xl: 0 15px 25px rgba(30, 58, 138, 0.15);
  --sombra-xxl: 0 20px 40px rgba(30, 58, 138, 0.2);

  /* Border Radius */
  --radio-sm: 4px;
  --radio-md: 8px;
  --radio-lg: 16px;
  --radio-xl: 24px;
  --radio-full: 9999px;

  /* Transitions */
  --transicion: all 0.3s ease;
  --transicion-lenta: all 0.5s ease;
  --transicion-rapida: all 0.15s ease;

  /* Z-Index */
  --z-index-bajo: 10;
  --z-index-medio: 50;
  --z-index-alto: 100;
  --z-index-maximo: 9999;

  /* Gradients */
  --gradiente-primario: linear-gradient(
    135deg,
    var(--color-primario) 0%,
    var(--color-primario-claro) 100%
  );
  --gradiente-secundario: linear-gradient(
    135deg,
    var(--color-secundario) 0%,
    var(--color-secundario-claro) 100%
  );
  --gradiente-acento: linear-gradient(
    135deg,
    var(--color-acento) 0%,
    var(--color-acento-claro) 100%
  );
  --gradiente-hero: linear-gradient(
    135deg,
    var(--color-primario) 0%,
    var(--color-acento) 100%
  );
  --gradiente-fondo: linear-gradient(
    135deg,
    var(--color-fondo-claro) 0%,
    var(--color-fondo-secundario) 100%
  );
}

/* Reset y estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--fuente-principal);
  color: var(--color-texto);
  line-height: 1.6;
  background-color: var(--color-fondo);
  overflow-x: hidden;
  padding-top: 80px; /* Отступ для фиксированного хедера */
}

a {
  text-decoration: none;
  color: var(--color-primario);
  transition: var(--transicion);
}

a:hover {
  /* color: var(--color-primario-oscuro); */
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Tipografía */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--color-texto);
}

h1 {
  font-size: 3rem;
  font-family: var(--fuente-secundaria);
}

h2 {
  font-size: 2.5rem;
  font-family: var(--fuente-secundaria);
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

/* Contenedor */

/* Botones */
.boton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-primario) 0%,
    var(--color-primario-claro) 100%
  );
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radio-md);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transicion);
  border: none;
  font-size: 1rem;
  box-shadow: var(--sombra-md);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.boton::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--color-primario-claro) 0%,
    var(--color-primario) 100%
  );
  z-index: -1;
  transition: var(--transicion);
  opacity: 0;
}

.boton:hover {
  transform: translateY(-3px);
  box-shadow: var(--sombra-lg);
  color: white;
}

.boton:hover::before {
  opacity: 1;
}

.boton:active {
  transform: translateY(0);
  box-shadow: var(--sombra-sm);
}

.boton-secundario {
  background: transparent;
  color: var(--color-primario);
  border: 2px solid var(--color-primario);
  box-shadow: none;
}

.boton-secundario::before {
  background: var(--color-primario);
}

.boton-secundario:hover {
  color: white;
}

.boton-outline {
  background: transparent;
  color: var(--color-primario);
  border: 2px solid var(--color-primario);
  box-shadow: none;
}

.boton-outline::before {
  background: var(--color-primario);
}

.boton-outline:hover {
  color: white;
}

.boton-grande {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.boton-block {
  display: block;
  width: 100%;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-borde);
  position: sticky;
  top: 0;
  z-index: var(--z-index-alto);
  transition: var(--transicion);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--sombra-md);
}

.contenedor {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

@media (max-width: 480px) {
  .header-content {
    justify-content: center;
  }
}

/* Logo */
.logo {
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: baseline;
  text-decoration: none;
  color: var(--color-texto);
  transition: var(--transicion);
}

.logo-link:hover {
  color: var(--color-primario);
}

.logo-text {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
}

.logo-subtitle {
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-primario);
  margin-left: 0.25rem;
}

/* Navigation */
.navigation {
  position: relative;
}

/* Mobile menu removed */

.nav-menu {
  display: flex;
  align-items: center;
}

/* Hide mobile menu on desktop */
@media (min-width: 769px) {
  .nav-menu {
    display: flex !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    flex-direction: row !important;
    align-items: center !important;
    padding: 0 !important;
    transform: none !important;
    right: auto !important;
  }

  .nav-menu-header {
    display: none !important;
  }
}

.nav-menu-header {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--color-texto);
  text-decoration: none;
  border-radius: var(--radio-md);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transicion);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-primario-claro)
  );
  opacity: 0;
  transition: var(--transicion);
  z-index: -1;
}

.nav-link:hover {
  color: white;
  transform: translateY(-1px);
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link.active {
  color: var(--color-primario);
  background-color: rgba(37, 99, 235, 0.1);
}

.nav-link.active::before {
  opacity: 0;
}

.nav-icon {
  font-size: 1rem;
  line-height: 1;
}

.nav-text {
  font-weight: 500;
}

/* Header Actions */
.header-actions {
  flex-shrink: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradiente-primario);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radio-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transicion);
  box-shadow: var(--sombra-sm);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-primario-oscuro);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradiente-hero);
  opacity: 0;
  transition: var(--transicion);
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--sombra-lg);
  color: var(--color-texto-blanco);
  border-color: var(--color-acento);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-text {
  position: relative;
  z-index: 1;
}

.btn-icon {
  position: relative;
  z-index: 1;
  transition: var(--transicion);
}

.btn-primary:hover .btn-icon {
  transform: translateX(2px);
}

/* Additional Button Styles */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradiente-secundario);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radio-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transicion);
  box-shadow: var(--sombra-sm);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-secundario-oscuro);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--sombra-lg);
  color: var(--color-texto-blanco);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradiente-acento);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radio-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transicion);
  box-shadow: var(--sombra-sm);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-acento-oscuro);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: var(--sombra-lg);
  color: var(--color-texto-blanco);
}

/* Mobile Menu */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .header-actions {
    display: none;
  }
}

@media (max-width: 480px) {
  .contenedor {
    padding: 0 1rem;
  }

  .header-content {
    height: 60px;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  .logo-subtitle {
    font-size: 0.875rem;
  }
}

/* Mobile menu completely removed */

/* Sección encabezado */
.seccion-encabezado {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.seccion-subtitulo {
  display: inline-block;
  background-color: rgba(30, 64, 175, 0.1);
  color: var(--color-primario);
  padding: 0.5rem 1rem;
  border-radius: var(--radio-full);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.seccion-encabezado h2 {
  margin-bottom: 1rem;
}

.seccion-descripcion {
  font-size: 1.125rem;
  color: var(--color-texto-claro);
}

/* Beneficios */
.beneficios {
  padding: 6rem 0;
  background-color: var(--color-fondo);
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.beneficio {
  background-color: var(--color-fondo);
  border-radius: var(--radio-lg);
  padding: 2rem;
  box-shadow: var(--sombra-md);
  transition: var(--transicion);
  border: 1px solid var(--color-borde);
  text-align: center;
}

.beneficio:hover {
  transform: translateY(-10px);
  box-shadow: var(--sombra-xl);
  border-color: var(--color-primario-claro);
}

.icono {
  margin-bottom: 1.5rem;
  width: 80px;
  height: 80px;
  background-color: rgba(30, 64, 175, 0.1);
  border-radius: var(--radio-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.icono img {
  width: 40px;
  height: 40px;
}

.beneficio h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.beneficio p {
  color: var(--color-texto-claro);
  margin-bottom: 0;
}

/* Cursos */
.cursos-destacados {
  padding: 6rem 0;
  background-color: var(--color-fondo-claro);
}

.cursos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.curso {
  background-color: var(--color-fondo);
  border-radius: var(--radio-lg);
  overflow: hidden;
  box-shadow: var(--sombra-md);
  position: relative;
  transition: var(--transicion);
  border: 1px solid var(--color-borde);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.curso:hover {
  transform: translateY(-10px);
  box-shadow: var(--sombra-xl);
  border-color: var(--color-primario-claro);
}

.curso.destacado {
  border: 2px solid var(--color-primario);
  transform: scale(1.05);
  box-shadow: var(--sombra-xl);
  z-index: 1;
}

.curso.destacado:hover {
  transform: scale(1.05) translateY(-10px);
}

.etiqueta {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(
    135deg,
    var(--color-secundario) 0%,
    var(--color-acento) 100%
  );
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radio-full);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 2;
}

.curso-imagen {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.curso-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transicion);
}

.curso:hover .curso-imagen img {
  transform: scale(1.1);
}

.curso-nivel {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radio-full);
  font-size: 0.875rem;
  font-weight: 600;
}

.curso-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.curso-info h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.curso-info p {
  color: var(--color-texto-claro);
  margin-bottom: 1.5rem;
}

.curso-features {
  margin-bottom: 1.5rem;
  padding-left: 0.5rem;
}

.curso-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-texto-claro);
  font-size: 0.875rem;
}

.curso-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primario);
  font-weight: bold;
}

.curso-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.curso-precio {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-texto);
}

.precio-actual {
  color: var(--color-primario);
}

.precio-original {
  font-size: 1rem;
  color: var(--color-texto-claro);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

/* Formulario inicio */
.formulario-inicio {
  padding: 6rem 0;
  background-color: var(--color-fondo);
  position: relative;
}

.formulario-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.formulario-texto h2 {
  margin-bottom: 1.5rem;
}

.formulario-texto p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.lista-ventajas {
  margin-bottom: 2.5rem;
}

.lista-ventajas li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: var(--color-texto);
}

.check-icon {
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: rgba(30, 64, 175, 0.1);
  border-radius: var(--radio-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-icon::before {
  content: "✓";
  color: var(--color-primario);
  font-weight: bold;
  font-size: 0.75rem;
}

.formulario-imagen {
  margin-top: 2.5rem;
  border-radius: var(--radio-lg);
  overflow: hidden;
  box-shadow: var(--sombra-lg);
}

.formulario-card {
  background-color: var(--color-fondo);
  border-radius: var(--radio-lg);
  padding: 2.5rem;
  box-shadow: var(--sombra-xl);
  border: 1px solid var(--color-borde);
}

.campo-formulario {
  margin-bottom: 1.5rem;
}

.campo-formulario label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-texto);
}

.campo-formulario input,
.campo-formulario select,
.campo-formulario textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 1px solid var(--color-borde);
  border-radius: var(--radio-md);
  font-family: var(--fuente-principal);
  font-size: 1rem;
  transition: var(--transicion);
  background-color: var(--color-fondo);
  color: var(--color-texto);
}

.campo-formulario input:focus,
.campo-formulario select:focus,
.campo-formulario textarea:focus {
  outline: none;
  border-color: var(--color-primario);
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.campo-formulario.checkbox {
  display: flex;
  align-items: flex-start;
}

.campo-formulario.checkbox input {
  width: auto;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.campo-formulario.checkbox label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.875rem;
}

.error-mensaje {
  color: var(--color-error);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: block;
}

.mensaje-exito {
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--color-exito);
  color: var(--color-texto);
  padding: 2rem;
  border-radius: var(--radio-lg);
  text-align: center;
}

.mensaje-exito h3 {
  margin-bottom: 1rem;
  color: var(--color-exito);
}

.exito-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: var(--radio-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
}

.exito-icon::before {
  content: "✓";
  color: var(--color-exito);
  font-size: 2rem;
  font-weight: bold;
}

.oculto {
  display: none;
}

/* Testimonios */
.testimonios {
  padding: 6rem 0;
  background-color: var(--color-fondo-claro);
  position: relative;
}

.testimonios-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonio {
  background-color: var(--color-fondo);
  border-radius: var(--radio-lg);
  padding: 2.5rem;
  box-shadow: var(--sombra-md);
  margin-bottom: 2rem;
  border: 1px solid var(--color-borde);
  transition: var(--transicion);
}

.testimonio:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-lg);
  border-color: var(--color-primario-claro);
}

.testimonio-rating {
  margin-bottom: 1.5rem;
  display: flex;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%234361ee' stroke='%234361ee' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'%3E%3C/polygon%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.testimonio-contenido {
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--color-texto);
  position: relative;
}

.testimonio-contenido::before {
  content: "\201C";
  font-size: 4rem;
  color: rgba(37, 99, 235, 0.1);
  position: absolute;
  top: -2rem;
  left: -1rem;
  font-family: var(--fuente-secundaria);
}

.testimonio-autor {
  display: flex;
  align-items: center;
}

.testimonio-autor img {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: var(--radio-full);
  margin-right: 1rem;
  object-fit: cover;
  border: 3px solid var(--color-primario-claro);
}

.testimonio-autor h4 {
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}

.testimonio-autor p {
  color: var(--color-texto-claro);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.controles-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.anterior,
.siguiente {
  background: none;
  border: none;
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radio-full);
  background-color: var(--color-fondo);
  box-shadow: var(--sombra-md);
  position: relative;
  transition: var(--transicion);
  margin: 0 0.5rem;
}

.anterior:hover,
.siguiente:hover {
  background-color: var(--color-primario);
  transform: translateY(-3px);
  box-shadow: var(--sombra-lg);
}

.anterior::before,
.siguiente::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 0.75rem;
  border-top: 2px solid var(--color-texto);
  border-right: 2px solid var(--color-texto);
  transition: var(--transicion);
}

.anterior:hover::before,
.siguiente:hover::before {
  border-color: white;
}

.anterior::before {
  transform: translate(-30%, -50%) rotate(-135deg);
}

.siguiente::before {
  transform: translate(-70%, -50%) rotate(45deg);
}

.indicadores {
  display: flex;
  margin: 0 1.25rem;
}

.indicadores span {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: var(--radio-full);
  background-color: var(--color-borde);
  margin: 0 0.3125rem;
  cursor: pointer;
  transition: var(--transicion);
}

.indicadores span:hover {
  background-color: var(--color-primario-claro);
}

.indicadores span.activo {
  background-color: var(--color-primario);
  width: 2rem;
}

/* Comparativa */
.comparativa {
  padding: 6rem 0;
  background-color: var(--color-fondo);
}

.tabla-responsive {
  overflow-x: auto;
  border-radius: var(--radio-lg);
  box-shadow: var(--sombra-lg);
}

.tabla-comparativa {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radio-lg);
  overflow: hidden;
  background-color: var(--color-fondo);
}

.tabla-comparativa th,
.tabla-comparativa td {
  padding: 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--color-borde);
}

.tabla-comparativa th {
  background: linear-gradient(
    135deg,
    var(--color-primario) 0%,
    var(--color-primario-claro) 100%
  );
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.tabla-comparativa th:first-child {
  text-align: left;
}

.tabla-comparativa td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--color-texto);
}

.tabla-comparativa tr:nth-child(even) {
  background-color: var(--color-fondo-claro);
}

.tabla-comparativa tr:last-child td {
  border-bottom: none;
}

.tabla-comparativa tr:hover {
  background-color: rgba(37, 99, 235, 0.05);
}

.icon-si,
.icon-no {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: var(--radio-full);
  position: relative;
}

.icon-si {
  background-color: rgba(16, 185, 129, 0.1);
}

.icon-no {
  background-color: rgba(220, 38, 38, 0.1);
}

.icon-si::before,
.icon-no::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.75rem;
  font-weight: bold;
}

.icon-si::before {
  content: "✓";
  color: var(--color-exito);
}

.icon-no::before {
  content: "✕";
  color: var(--color-error);
}

/* CTA */
.cta {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--color-primario) 0%,
    var(--color-primario-oscuro) 100%
  );
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.cta-contenido {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta .seccion-subtitulo {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.cta h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.cta .boton {
  background: white;
  color: var(--color-primario);
}

.cta .boton::before {
  background: rgba(255, 255, 255, 0.9);
}

.cta .boton:hover {
  color: var(--color-primario-oscuro);
}

/* Preguntas frecuentes */
.preguntas-frecuentes {
  padding: 6rem 0;
  background-color: var(--color-fondo-claro);
}

.acordeon {
  max-width: 800px;
  margin: 0 auto;
}

.acordeon-item {
  margin-bottom: 1rem;
  border-radius: var(--radio-lg);
  overflow: hidden;
  box-shadow: var(--sombra-md);
  background-color: var(--color-fondo);
  border: 1px solid var(--color-borde);
  transition: var(--transicion);
}

.acordeon-item:hover {
  box-shadow: var(--sombra-lg);
  border-color: var(--color-primario-claro);
}

.acordeon-titulo {
  width: 100%;
  background-color: var(--color-fondo);
  padding: 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transicion);
  color: var(--color-texto);
}

.acordeon-item.activo .acordeon-titulo {
  background-color: rgba(37, 99, 235, 0.05);
  color: var(--color-primario);
}

.icono-acordeon {
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
  border-radius: var(--radio-full);
  background-color: rgba(30, 64, 175, 0.1);
  transition: var(--transicion);
}

.icono-acordeon::before,
.icono-acordeon::after {
  content: "";
  position: absolute;
  background-color: var(--color-primario);
  top: 50%;
  left: 50%;
  transition: var(--transicion);
}

.icono-acordeon::before {
  width: 2px;
  height: 0.625rem;
  transform: translate(-50%, -50%);
}

.icono-acordeon::after {
  width: 0.625rem;
  height: 2px;
  transform: translate(-50%, -50%);
}

.acordeon-item.activo .icono-acordeon {
  background-color: var(--color-primario);
}

.acordeon-item.activo .icono-acordeon::before,
.acordeon-item.activo .icono-acordeon::after {
  background-color: white;
}

.acordeon-item.activo .icono-acordeon::before {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.acordeon-contenido {
  background-color: var(--color-fondo);
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.acordeon-item.activo .acordeon-contenido {
  padding: 0 1.5rem 1.5rem;
  max-height: 1000px;
}

/* Footer */
footer {
  background-color: var(--color-fondo-oscuro);
  color: white;
}

.footer-top {
  padding: 5rem 0 3rem;
}

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

.logo-footer {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.logo-footer img {
  height: 40px;
  margin-right: 0.75rem;
}

.logo-footer span {
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
}

.footer-info p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.redes-sociales {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radio-full);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: var(--transicion);
}

.social-icon:hover {
  background-color: var(--color-primario);
  transform: translateY(-5px);
}

.facebook::before,
.instagram::before,
.twitter::before,
.linkedin::before {
  font-family: "Font Awesome 5 Brands";
  font-size: 1.125rem;
}

.facebook::before {
  content: "\f39e";
}

.instagram::before {
  content: "\f16d";
}

.twitter::before {
  content: "\f099";
}

.linkedin::before {
  content: "\f0e1";
}

.footer-enlaces h3,
.footer-legal h3,
.footer-contacto h3 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  color: white;
}

.footer-enlaces ul li,
.footer-legal ul li {
  margin-bottom: 0.75rem;
}

.footer-enlaces a,
.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transicion);
}

.footer-enlaces a:hover,
.footer-legal a:hover {
  color: white;
  padding-left: 0.5rem;
}

.footer-contacto ul li {
  display: flex;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contacto ul li span {
  margin-right: 1rem;
  color: var(--color-primario-claro);
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .contenedor {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.footer-payments {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.footer-payments span {
  margin-right: 1rem;
}

.footer-payments img {
  height: 1.5rem;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: var(--z-index-alto);
  opacity: 0;
  visibility: hidden;
  transition: var(--transicion);
}

.modal.activo {
  opacity: 1;
  visibility: visible;
}

.modal-contenido {
  background-color: var(--color-fondo);
  border-radius: var(--radio-lg);
  padding: 0;
  max-width: 500px;
  width: 90%;
  box-shadow: var(--sombra-xl);
  position: relative;
  transform: translateY(20px);
  transition: var(--transicion);
}

.modal.activo .modal-contenido {
  transform: translateY(0);
}

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

.modal-header h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.modal-cerrar {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-texto-claro);
  transition: var(--transicion);
}

.modal-cerrar:hover {
  color: var(--color-error);
}

.modal-body {
  padding: 1.5rem;
}

.modal-botones {
  padding: 1.5rem;
  border-top: 1px solid var(--color-borde);
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-primario);
  color: white;
  border-radius: var(--radio-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sombra-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transicion);
  z-index: var(--z-index-medio);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  border-top: 2px solid white;
  border-left: 2px solid white;
  transform: rotate(45deg) translate(2px, 2px);
}

.back-to-top:hover {
  background-color: var(--color-primario-oscuro);
  transform: translateY(-5px);
}

/* Cabecera de página */
.cabecera-pagina {
  background-color: var(--color-fondo-claro);
  padding: 6rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cabecera-shape {
  position: absolute;
  bottom: -5rem;
  left: 0;
  width: 100%;
  height: 10rem;
  background-color: var(--color-fondo);
  clip-path: polygon(0 0, 100% 100%, 100% 100%, 0% 100%);
  z-index: 1;
}

.cabecera-pagina .contenedor {
  position: relative;
  z-index: 2;
}

.cabecera-pagina h1 {
  margin-bottom: 1.5rem;
}

.cabecera-pagina p {
  font-size: 1.25rem;
  color: var(--color-texto-claro);
  max-width: 700px;
  margin: 0 auto;
}

/* Cursos detalle */
.cursos-completos {
  padding: 6rem 0;
  background-color: var(--color-fondo);
}

.curso-detalle {
  margin-bottom: 5rem;
}

.curso-detalle:last-child {
  margin-bottom: 0;
}

.curso-detalle-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.curso-detalle .curso-imagen {
  height: auto;
  border-radius: var(--radio-lg);
  overflow: hidden;
  box-shadow: var(--sombra-xl);
  position: relative;
}

.curso-nivel-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--color-primario);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radio-full);
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 1;
}

.etiqueta-curso {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(
    135deg,
    var(--color-secundario) 0%,
    var(--color-acento) 100%
  );
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radio-full);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 1;
}

.curso-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.curso-header h2 {
  margin-bottom: 0;
}

.curso-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: var(--color-fondo-claro);
  border-radius: var(--radio-lg);
}

.curso-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.curso-stat .stat-numero {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primario);
  margin-bottom: 0.25rem;
}

.curso-stat .stat-texto {
  font-size: 0.875rem;
  color: var(--color-texto-claro);
}

.curso-incluye {
  margin-bottom: 2rem;
}

.curso-incluye li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-texto-claro);
}

/* Metodología */
.metodologia {
  padding: 6rem 0;
  background-color: var(--color-fondo-claro);
}

.metodologia-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.metodologia-item {
  background-color: var(--color-fondo);
  border-radius: var(--radio-lg);
  padding: 2rem;
  box-shadow: var(--sombra-md);
  transition: var(--transicion);
  border: 1px solid var(--color-borde);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.metodologia-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--sombra-xl);
  border-color: var(--color-primario-claro);
}

.metodologia-numero {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(
    135deg,
    var(--color-primario) 0%,
    var(--color-primario-claro) 100%
  );
  color: white;
  border-radius: var(--radio-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.metodologia-contenido h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.metodologia-contenido p {
  color: var(--color-texto-claro);
  margin-bottom: 0;
}

/* Contacto */
.contacto-info {
  padding: 6rem 0;
  background-color: var(--color-fondo);
}

.contacto-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
}

.contacto-card {
  background-color: var(--color-fondo);
  border-radius: var(--radio-lg);
  padding: 2.5rem;
  box-shadow: var(--sombra-xl);
  border: 1px solid var(--color-borde);
  height: 100%;
}

.contacto-card h2 {
  margin-bottom: 2rem;
}

.contacto-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.contacto-icono {
  margin-right: 1rem;
  width: 3rem;
  height: 3rem;
  background-color: rgba(67, 97, 238, 0.1);
  border-radius: var(--radio-full);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-primario);
}

.contacto-texto h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.contacto-texto p {
  color: var(--color-texto-claro);
  margin-bottom: 0;
}

.contacto-card .redes-sociales {
  margin-top: 2rem;
}

.contacto-card .redes-sociales h3 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.iconos-redes {
  display: flex;
  gap: 1rem;
}

.iconos-redes a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(67, 97, 238, 0.1);
  border-radius: var(--radio-full);
  color: var(--color-primario);
  transition: var(--transicion);
}

.iconos-redes a:hover {
  background-color: var(--color-primario);
  color: white;
  transform: translateY(-5px);
}

/* Mapa */
.mapa-ubicacion {
  padding: 0 0 6rem;
  background-color: var(--color-fondo);
}

.mapa-card {
  border-radius: var(--radio-lg);
  overflow: hidden;
  box-shadow: var(--sombra-xl);
  border: 1px solid var(--color-borde);
}

/* Documento legal */
.contenido-legal {
  padding: 6rem 0;
  background-color: var(--color-fondo);
}

.documento-legal {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--color-fondo);
  border-radius: var(--radio-lg);
  padding: 3rem;
  box-shadow: var(--sombra-xl);
  border: 1px solid var(--color-borde);
}

.documento-legal h2 {
  font-family: var(--fuente-secundaria);
  font-size: 1.75rem;
  margin: 2.5rem 0 1.25rem;
}

.documento-legal h2:first-child {
  margin-top: 0;
}

.documento-legal h3 {
  font-size: 1.375rem;
  margin: 2rem 0 1rem;
}

.documento-legal p {
  margin-bottom: 1rem;
  color: var(--color-texto-claro);
}

.documento-legal ul {
  list-style: disc;
  margin: 0 0 1.25rem 1.25rem;
}

.documento-legal ul li {
  margin-bottom: 0.625rem;
  color: var(--color-texto-claro);
}

/* Iconos */
.icono-ubicacion,
.icono-telefono,
.icono-email,
.icono-horario {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icono-ubicacion {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234361ee' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
}

.icono-telefono {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234361ee' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
}

.icono-email {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234361ee' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E");
}

.icono-horario {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234361ee' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 16 14'%3E%3C/polyline%3E%3C/svg%3E");
}

/* ===== NEUE SEKTIONEN FÜR INDEX.HTML ===== */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Section spacing */
section {
  scroll-margin-top: 80px;
}

/* Bewertungen Section */

/* FAQ Section */
.faq {
  padding: 6rem 0;
  background: var(--color-fondo);
}

.faq-accordion {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-borde);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-texto);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transicion);
}

.faq-question:hover {
  color: var(--color-primario);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: var(--transicion);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 0 1.5rem 0;
  color: var(--color-texto-claro);
  line-height: 1.6;
  margin: 0;
}

.kontakt-address {
  font-size: 0.875rem;
  color: var(--color-texto-secundario);
  margin-top: 0.25rem;
  display: block;
}

/* Kontakt Page Styles */
.kontakt-hero {
  background: linear-gradient(
    135deg,
    var(--color-primario) 0%,
    var(--color-secundario) 100%
  );
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.kontakt-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.kontakt-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.kontakt-hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.kontakt-hero-text p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
  color: var(--color-texto-blanco);
}

.kontakt-hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.kontakt-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radio-lg);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.kontakt-card-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

.kontakt-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.kontakt-info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  font-size: 1.25rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.kontakt-info-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.kontakt-info-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.4;
}

.kontakt-info-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: var(--transicion);
}

.kontakt-info-item a:hover {
  color: white;
  text-decoration: underline;
}

/* Contact Form Section */
.kontakt-form-section {
  padding: 6rem 0;
  background: var(--color-fondo);
}

.kontakt-form-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.kontakt-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: var(--radio-lg);
  box-shadow: var(--sombra-lg);
  border: 1px solid var(--color-borde);
}

.form-header {
  margin-bottom: 2rem;
  text-align: center;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 0.75rem;
}

.form-header p {
  color: var(--color-texto-secundario);
  font-size: 1.125rem;
  margin: 0;
}

.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.campo-formulario {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.campo-formulario label {
  font-weight: 600;
  color: var(--color-texto);
  font-size: 0.95rem;
}

.campo-formulario input,
.campo-formulario select,
.campo-formulario textarea {
  padding: 0.875rem 1rem;
  border: 2px solid var(--color-borde);
  border-radius: var(--radio-sm);
  font-size: 1rem;
  transition: var(--transicion);
  background: white;
}

.campo-formulario input:focus,
.campo-formulario select:focus,
.campo-formulario textarea:focus {
  outline: none;
  border-color: var(--color-primario);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.campo-formulario input::placeholder,
.campo-formulario textarea::placeholder {
  color: var(--color-texto-secundario);
}

.campo-formulario.checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.campo-formulario.checkbox input[type="checkbox"] {
  margin: 0;
  width: auto;
}

.campo-formulario.checkbox label {
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.4;
}

.campo-formulario.checkbox label a {
  color: var(--color-primario);
  text-decoration: none;
}

.campo-formulario.checkbox label a:hover {
  text-decoration: underline;
}

.form-submit {
  margin-top: 1rem;
}

.error-mensaje {
  color: var(--color-error);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.mensaje-exito {
  background: var(--color-exito);
  color: white;
  padding: 1.5rem;
  border-radius: var(--radio-sm);
  text-align: center;
  margin-top: 1rem;
}

.mensaje-exito h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.mensaje-exito p {
  margin: 0;
  opacity: 0.9;
  color: var(--color-texto);
}

.oculto {
  display: none !important;
}

/* Contact Info Sidebar */
.kontakt-info-sidebar {
  position: sticky;
  top: 2rem;
}

.kontakt-info-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radio-lg);
  box-shadow: var(--sombra-md);
  border: 1px solid var(--color-borde);
}

.kontakt-info-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-texto);
  margin-bottom: 1.5rem;
  text-align: center;
}

.kontakt-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-borde);
}

.kontakt-info-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.kontakt-info-icon {
  font-size: 1.5rem;
  width: 32px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.kontakt-info-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-texto);
  margin-bottom: 0.5rem;
}

.kontakt-info-content p {
  margin: 0;
  color: var(--color-texto-secundario);
  font-size: 0.95rem;
  line-height: 1.4;
}

.kontakt-info-content a {
  color: var(--color-primario);
  text-decoration: none;
  transition: var(--transicion);
}

.kontakt-info-content a:hover {
  color: var(--color-secundario);
  text-decoration: underline;
}

/* Map Section */
.kontakt-map-section {
  padding: 4rem 0;
  background: var(--color-fondo-claro);
}

.map-header {
  text-align: center;
  margin-bottom: 3rem;
}

.map-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 1rem;
}

.map-header p {
  font-size: 1.125rem;
  color: var(--color-texto-secundario);
  margin: 0;
}

.map-container {
  border-radius: var(--radio-lg);
  overflow: hidden;
  box-shadow: var(--sombra-lg);
  border: 1px solid var(--color-borde);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: none;
}

/* Modern Privacy Page Styles */
.datenschutz-hero {
  background: linear-gradient(
    135deg,
    var(--color-primario) 0%,
    var(--color-secundario) 100%
  );
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.datenschutz-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.datenschutz-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.datenschutz-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.datenschutz-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.datenschutz-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
  color: var(--color-fondo-claro);
}

.datenschutz-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.last-updated,
.version {
  font-size: 0.95rem;
  opacity: 0.8;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
}

/* Datenschutz Content */
.datenschutz-content {
  padding: 6rem 0;
  background: var(--color-fondo);
}

.datenschutz-document {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: var(--radio-lg);
  box-shadow: var(--sombra-lg);
  border: 1px solid var(--color-borde);
}

.datenschutz-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-borde);
}

.datenschutz-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.datenschutz-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--color-primario);
  display: inline-block;
}

.datenschutz-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-texto);
  margin: 2rem 0 1rem 0;
}

.datenschutz-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-texto);
  margin: 1.5rem 0 0.75rem 0;
}

.datenschutz-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-texto-secundario);
  margin-bottom: 1rem;
}

.datenschutz-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.datenschutz-section li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-texto-secundario);
  margin-bottom: 0.5rem;
}

.datenschutz-section strong {
  color: var(--color-texto);
  font-weight: 600;
}

.datenschutz-info-box {
  background: var(--color-fondo-claro);
  padding: 1.5rem;
  border-radius: var(--radio-sm);
  border-left: 4px solid var(--color-primario);
  margin: 1.5rem 0;
}

.datenschutz-info-box p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.datenschutz-info-box a {
  color: var(--color-primario);
  text-decoration: none;
  transition: var(--transicion);
}

.datenschutz-info-box a:hover {
  color: var(--color-secundario);
  text-decoration: underline;
}

.datenschutz-list {
  background: var(--color-fondo-claro);
  padding: 1.5rem;
  border-radius: var(--radio-sm);
  margin: 1.5rem 0;
}

.datenschutz-list h4 {
  margin-top: 0;
  color: var(--color-texto);
  font-weight: 600;
}

.datenschutz-contact {
  background: linear-gradient(
    135deg,
    var(--color-primario-claro) 0%,
    rgba(37, 99, 235, 0.05) 100%
  );
  padding: 2rem;
  border-radius: var(--radio-lg);
  margin-top: 2rem;
}

.datenschutz-contact h2 {
  color: var(--color-primario);
  border-bottom-color: var(--color-primario);
}

/* Cookie Bar Styles */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-texto);
  color: var(--color-texto-blanco);
  padding: 1.5rem 0;
  z-index: 1000;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  border-top: 1px solid var(--color-borde);
}

.cookie-bar.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-bar-text {
  flex: 1;
  min-width: 0;
}

.cookie-bar-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-bar-actions {
  flex-shrink: 0;
}

.cookie-accept-btn {
  background: var(--color-primario);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radio-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transicion);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 120px;
  justify-content: center;
}

.cookie-accept-btn:hover {
  background: var(--color-secundario);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cookie-accept-btn:active {
  transform: translateY(0);
}

.cookie-accept-btn .btn-text {
  font-weight: 600;
  letter-spacing: 0.025em;
}

/* AGB Page Styles */
.agb-hero {
  background: linear-gradient(
    135deg,
    var(--color-primario) 0%,
    var(--color-secundario) 100%
  );
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.agb-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.agb-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.agb-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.agb-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.agb-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
  color: var(--color-fondo-claro);
}

.agb-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.last-updated,
.version {
  font-size: 0.95rem;
  opacity: 0.8;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
}

/* AGB Content */
.agb-content {
  padding: 6rem 0;
  background: var(--color-fondo);
}

.agb-document {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: var(--radio-lg);
  box-shadow: var(--sombra-lg);
  border: 1px solid var(--color-borde);
}

.agb-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-borde);
}

.agb-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.agb-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--color-primario);
  display: inline-block;
}

.agb-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-texto);
  margin: 2rem 0 1rem 0;
}

.agb-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-texto-secundario);
  margin-bottom: 1rem;
}

.agb-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.agb-section li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-texto-secundario);
  margin-bottom: 0.5rem;
}

.agb-section strong {
  color: var(--color-texto);
  font-weight: 600;
}

.agb-info-box {
  background: var(--color-fondo-claro);
  padding: 1.5rem;
  border-radius: var(--radio-sm);
  border-left: 4px solid var(--color-primario);
  margin: 1.5rem 0;
}

.agb-info-box p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.agb-info-box a {
  color: var(--color-primario);
  text-decoration: none;
  transition: var(--transicion);
}

.agb-info-box a:hover {
  color: var(--color-secundario);
  text-decoration: underline;
}

.agb-contact {
  background: linear-gradient(
    135deg,
    var(--color-primario-claro) 0%,
    rgba(37, 99, 235, 0.05) 100%
  );
  padding: 2rem;
  border-radius: var(--radio-lg);
  margin-top: 2rem;
}

.agb-contact h2 {
  color: var(--color-primario);
  border-bottom-color: var(--color-primario);
}

/* Cookie Richtlinie Page Styles */
.cookie-hero {
  background: linear-gradient(
    135deg,
    var(--color-primario) 0%,
    var(--color-secundario) 100%
  );
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cookie-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.cookie-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cookie-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.cookie-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cookie-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
  color: var(--color-fondo-claro);
}

.cookie-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.last-updated,
.version {
  font-size: 0.95rem;
  opacity: 0.8;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
}

/* Cookie Content */
.cookie-content {
  padding: 6rem 0;
  background: var(--color-fondo);
}

.cookie-document {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: var(--radio-lg);
  box-shadow: var(--sombra-lg);
  border: 1px solid var(--color-borde);
}

.cookie-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-borde);
}

.cookie-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.cookie-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--color-primario);
  display: inline-block;
}

.cookie-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-texto);
  margin: 2rem 0 1rem 0;
}

.cookie-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-texto-secundario);
  margin-bottom: 1rem;
}

.cookie-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.cookie-section li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-texto-secundario);
  margin-bottom: 0.5rem;
}

.cookie-section strong {
  color: var(--color-texto);
  font-weight: 600;
}

.cookie-info-box {
  background: var(--color-fondo-claro);
  padding: 1.5rem;
  border-radius: var(--radio-sm);
  border-left: 4px solid var(--color-primario);
  margin: 1.5rem 0;
}

.cookie-info-box p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-info-box a {
  color: var(--color-primario);
  text-decoration: none;
  transition: var(--transicion);
}

.cookie-info-box a:hover {
  color: var(--color-secundario);
  text-decoration: underline;
}

.cookie-contact {
  background: linear-gradient(
    135deg,
    var(--color-primario-claro) 0%,
    rgba(37, 99, 235, 0.05) 100%
  );
  padding: 2rem;
  border-radius: var(--radio-lg);
  margin-top: 2rem;
}

.cookie-contact h2 {
  color: var(--color-primario);
  border-bottom-color: var(--color-primario);
}

/* Mobile Styles */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .contenedor {
    padding: 0 1rem;
    max-width: 100%;
  }

  .kurs-card.popular {
    transform: none;
  }

  .kurs-card-inner {
    padding: 1.5rem;
  }

  .kurs-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .kurs-features-grid .feature-item {
    padding: 0.75rem 0.25rem;
  }

  .feature-number {
    font-size: 1.2rem;
  }

  .feature-text {
    font-size: 0.75rem;
  }

  .faq {
    padding: 3rem 0;
    width: 100%;
  }

  /* Kontakt Page Mobile */
  .kontakt-hero {
    padding: 4rem 0;
  }

  .kontakt-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .kontakt-hero-text h1 {
    font-size: 2.5rem;
  }

  .kontakt-form-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .kontakt-info-sidebar {
    position: static;
  }

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

  .kontakt-form-wrapper {
    padding: 2rem;
  }

  .map-header h2 {
    font-size: 2rem;
  }

  /* Datenschutz Page Mobile */
  .datenschutz-hero {
    padding: 4rem 0;
  }

  .datenschutz-hero h1 {
    font-size: 2.5rem;
  }

  .datenschutz-subtitle {
    font-size: 1.125rem;
  }

  .datenschutz-meta {
    gap: 1rem;
  }

  .datenschutz-document {
    padding: 2rem;
  }

  .datenschutz-section h2 {
    font-size: 1.5rem;
  }

  /* Cookie Bar Mobile */
  .cookie-bar-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .cookie-bar-text p {
    font-size: 0.9rem;
  }

  .cookie-accept-btn {
    width: 100%;
    max-width: 200px;
  }

  /* AGB Page Mobile */
  .agb-hero {
    padding: 4rem 0;
  }

  .agb-hero h1 {
    font-size: 2.5rem;
  }

  .agb-subtitle {
    font-size: 1.125rem;
  }

  .agb-meta {
    gap: 1rem;
  }

  .agb-document {
    padding: 2rem;
  }

  .agb-section h2 {
    font-size: 1.5rem;
  }

  /* Cookie Richtlinie Page Mobile */
  .cookie-hero {
    padding: 4rem 0;
  }

  .cookie-hero h1 {
    font-size: 2.5rem;
  }

  .cookie-subtitle {
    font-size: 1.125rem;
  }

  .cookie-meta {
    gap: 1rem;
  }

  .cookie-document {
    padding: 2rem;
  }

  .cookie-section h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  body {
    overflow-x: hidden;
  }

  .kurs-card-inner {
    padding: 1.25rem;
  }

  .kurs-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .kurs-features-grid .feature-item {
    padding: 0.5rem 0.25rem;
  }

  .feature-number {
    font-size: 1rem;
  }

  .feature-text {
    font-size: 0.7rem;
  }

  .kurs-btn {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .faq {
    padding: 2rem 0;
    width: 100%;
  }

  /* Kontakt Page Mobile Small */
  .kontakt-hero {
    padding: 3rem 0;
  }

  .kontakt-hero-text h1 {
    font-size: 2rem;
  }

  .kontakt-hero-text p {
    font-size: 1rem;
  }

  .kontakt-form-wrapper {
    padding: 1.5rem;
  }

  .form-header h2 {
    font-size: 1.75rem;
  }

  .kontakt-info-card {
    padding: 1.5rem;
  }

  .map-header h2 {
    font-size: 1.75rem;
  }

  .map-container iframe {
    height: 300px;
  }

  /* Datenschutz Page Mobile Small */
  .datenschutz-hero {
    padding: 3rem 0;
  }

  .datenschutz-hero h1 {
    font-size: 2rem;
  }

  .datenschutz-subtitle {
    font-size: 1rem;
  }

  .datenschutz-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .datenschutz-document {
    padding: 1.5rem;
  }

  .datenschutz-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .datenschutz-section h2 {
    font-size: 1.375rem;
  }

  .datenschutz-section h3 {
    font-size: 1.125rem;
  }

  .datenschutz-info-box {
    padding: 1rem;
  }

  .datenschutz-list {
    padding: 1rem;
  }

  /* Cookie Bar Mobile Small */
  .cookie-bar {
    padding: 1rem 0;
  }

  .cookie-bar-content {
    gap: 1rem;
  }

  .cookie-bar-text p {
    font-size: 0.85rem;
  }

  .cookie-accept-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
    min-width: 100px;
  }

  /* AGB Page Mobile Small */
  .agb-hero {
    padding: 3rem 0;
  }

  .agb-hero h1 {
    font-size: 2rem;
  }

  .agb-subtitle {
    font-size: 1rem;
  }

  .agb-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .agb-document {
    padding: 1.5rem;
  }

  .agb-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .agb-section h2 {
    font-size: 1.375rem;
  }

  .agb-section h3 {
    font-size: 1.125rem;
  }

  .agb-info-box {
    padding: 1rem;
  }

  /* Cookie Richtlinie Page Mobile Small */
  .cookie-hero {
    padding: 3rem 0;
  }

  .cookie-hero h1 {
    font-size: 2rem;
  }

  .cookie-subtitle {
    font-size: 1rem;
  }

  .cookie-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cookie-document {
    padding: 1.5rem;
  }

  .cookie-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .cookie-section h2 {
    font-size: 1.375rem;
  }

  .cookie-section h3 {
    font-size: 1.125rem;
  }

  .cookie-info-box {
    padding: 1rem;
  }
}

.hero-new {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-background-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-gradient-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.05) 0%,
    rgba(59, 130, 246, 0.1) 50%,
    rgba(16, 185, 129, 0.05) 100%
  );
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.1),
    rgba(59, 130, 246, 0.1)
  );
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  right: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-container-new {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content-new {
  max-width: 600px;
}

.hero-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(30, 58, 138, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.1);
}

.badge-icon-new {
  font-size: 1.25rem;
}

.badge-text-new {
  font-weight: 600;
  color: var(--color-primario);
  font-size: 0.9rem;
}

.hero-title-new {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: var(--fuente-secundaria);
}

.title-line-1 {
  display: block;
  color: var(--color-texto);
}

.title-line-2 {
  display: block;
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-acento)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-line-3 {
  display: block;
  color: var(--color-texto-claro);
  font-weight: 600;
}

.hero-description-new {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-texto-claro);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-stats-new {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat-item-new {
  text-align: center;
}

.stat-number-new {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primario);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label-new {
  font-size: 0.9rem;
  color: var(--color-texto-claro);
  font-weight: 500;
}

.hero-actions-new {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-new {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-primary-new {
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-primario-claro)
  );
  color: white;
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
}

.btn-primary-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(30, 58, 138, 0.4);
}

.btn-secondary-new {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primario);
  border: 2px solid var(--color-primario);
  backdrop-filter: blur(10px);
}

.btn-secondary-new:hover {
  background: var(--color-primario);
  color: white;
  transform: translateY(-2px);
}

.btn-icon-new {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.btn-new:hover .btn-icon-new {
  transform: translateX(3px);
}

.hero-visual-new {
  display: flex;
  justify-content: center;
  align-items: center;
}

.yoga-card-new {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 400px;
  width: 100%;
  animation: cardFloat 4s ease-in-out infinite;
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.card-header-new {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.instructor-avatar-new {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-primario);
}

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

.instructor-info-new h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 0.25rem;
}

.instructor-info-new p {
  color: var(--color-texto-claro);
  font-size: 0.9rem;
}

.card-content-new {
  margin-bottom: 1.5rem;
}

.live-session-new {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.live-indicator-new {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.live-text-new {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ef4444;
}

.session-info-new h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 0.25rem;
}

.session-info-new p {
  color: var(--color-texto-claro);
  font-size: 0.9rem;
}

.participants-new {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.participant-avatars-new {
  display: flex;
  align-items: center;
  gap: -0.5rem;
}

.avatar-new {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -0.5rem;
}

.avatar-1 {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}
.avatar-2 {
  background: linear-gradient(135deg, #10b981, #059669);
}
.avatar-3 {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.avatar-count-new {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primario);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: -0.5rem;
}

.participants-text-new {
  font-size: 0.9rem;
  color: var(--color-texto-claro);
}

.card-footer-new {
  text-align: center;
}

.join-btn-new {
  background: linear-gradient(
    135deg,
    var(--color-acento),
    var(--color-acento-claro)
  );
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.join-btn-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.join-icon-new {
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container-new {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-title-new {
    font-size: 3.5rem;
  }

  .hero-stats-new {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-new {
    min-height: 90vh;
    padding: 2rem 0;
  }

  .hero-container-new {
    padding: 0 1rem;
    gap: 2rem;
  }

  .hero-title-new {
    font-size: 2.5rem;
  }

  .hero-description-new {
    font-size: 1.1rem;
  }

  .hero-stats-new {
    flex-direction: column;
    gap: 1rem;
  }

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

  .btn-new {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .yoga-card-new {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title-new {
    font-size: 2rem;
  }

  .hero-description-new {
    font-size: 1rem;
  }

  .hero-badge-new {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .stat-number-new {
    font-size: 1.5rem;
  }

  .yoga-card-new {
    padding: 1rem;
  }
}

/* ========================================
   NEW YOGA COURSES SECTION STYLES
   ======================================== */

.yoga-courses-new {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  overflow: hidden;
}

.courses-background-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.courses-gradient-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.03) 0%,
    rgba(59, 130, 246, 0.05) 50%,
    rgba(16, 185, 129, 0.03) 100%
  );
}

.courses-shapes-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.course-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.08),
    rgba(59, 130, 246, 0.1)
  );
  animation: courseFloat 8s ease-in-out infinite;
}

.course-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.course-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 10%;
  animation-delay: 3s;
}

.course-shape-3 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 20%;
  animation-delay: 6s;
}

@keyframes courseFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

.courses-container-new {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.courses-header-new {
  text-align: center;
  margin-bottom: 4rem;
}

.courses-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(30, 58, 138, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.1);
}

.badge-icon-new {
  font-size: 1.25rem;
}

.badge-text-new {
  font-weight: 600;
  color: var(--color-primario);
  font-size: 0.9rem;
}

.courses-title-new {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: var(--fuente-secundaria);
  color: var(--color-texto);
}

.courses-description-new {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-texto-claro);
  max-width: 800px;
  margin: 0 auto;
}

.courses-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.course-card-new {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(30, 58, 138, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.course-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(30, 58, 138, 0.15);
}

.popular-plan {
  border: 2px solid var(--color-acento);
  transform: scale(1.05);
}

.popular-plan:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-badge-new {
  position: absolute;
  top: -1px;
  right: 2rem;
  background: linear-gradient(
    135deg,
    var(--color-acento),
    var(--color-acento-claro)
  );
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0 0 12px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.card-header-new {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.plan-badge-new {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.basic-badge {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-acento);
}

.premium-badge {
  background: rgba(30, 58, 138, 0.1);
  color: var(--color-primario);
}

.master-badge {
  background: rgba(168, 85, 247, 0.1);
  color: #8b5cf6;
}

.plan-icon-new {
  font-size: 2rem;
}

.card-content-new {
  margin-bottom: 2rem;
}

.plan-title-new {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 0.5rem;
}

.plan-subtitle-new {
  color: var(--color-texto-claro);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.price-section-new {
  margin-bottom: 1.5rem;
}

.price-amount-new {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primario);
  line-height: 1;
}

.price-period-new {
  color: var(--color-texto-claro);
  font-size: 1rem;
  margin-left: 0.5rem;
}

.plan-description-new {
  color: var(--color-texto-claro);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.features-list-new {
  space-y: 0.75rem;
}

.feature-item-new {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.feature-icon-new {
  width: 20px;
  height: 20px;
  background: var(--color-acento);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  flex-shrink: 0;
}

.feature-text-new {
  color: var(--color-texto);
  font-weight: 500;
}

.card-footer-new {
  text-align: center;
}

.plan-button-new {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  width: 100%;
  justify-content: center;
}

.basic-button {
  background: linear-gradient(
    135deg,
    var(--color-acento),
    var(--color-acento-claro)
  );
  color: white;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.basic-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

.premium-button {
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-primario-claro)
  );
  color: white;
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
}

.premium-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(30, 58, 138, 0.4);
}

.master-button {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: white;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.master-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.button-icon-new {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.plan-button-new:hover .button-icon-new {
  transform: translateX(3px);
}

.courses-footer-new {
  text-align: center;
}

.guarantee-card-new {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(30, 58, 138, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 58, 138, 0.1);
}

.guarantee-icon-new {
  font-size: 2rem;
}

.guarantee-content-new h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 0.25rem;
}

.guarantee-content-new p {
  color: var(--color-texto-claro);
  font-size: 0.9rem;
}

.courses-cta-new {
  text-align: center;
  margin-top: 2rem;
}

.courses-cta-new .cta-button-new {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(
    135deg,
    var(--color-acento),
    var(--color-acento-claro)
  );
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
}

.courses-cta-new .cta-button-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.3);
  background: linear-gradient(
    135deg,
    var(--color-acento-claro),
    var(--color-acento)
  );
}

.courses-cta-new .cta-icon-new {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.courses-cta-new .cta-button-new:hover .cta-icon-new {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .courses-grid-new {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .popular-plan {
    transform: none;
  }

  .popular-plan:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .yoga-courses-new {
    padding: 4rem 0;
  }

  .courses-container-new {
    padding: 0 1rem;
  }

  .courses-title-new {
    font-size: 2.5rem;
  }

  .courses-description-new {
    font-size: 1.1rem;
  }

  .courses-grid-new {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .course-card-new {
    padding: 1.5rem;
  }

  .guarantee-card-new {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .courses-title-new {
    font-size: 2rem;
  }

  .courses-description-new {
    font-size: 1rem;
  }

  .course-card-new {
    padding: 1rem;
  }

  .plan-title-new {
    font-size: 1.5rem;
  }

  .price-amount-new {
    font-size: 2.5rem;
  }

  .plan-button-new {
    padding: 0.875rem 1.5rem;
  }
}

/* ========================================
   NEW YOGA BENEFITS SECTION STYLES
   ======================================== */

.yoga-benefits-new {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.benefits-background-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.benefits-gradient-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.03) 0%,
    rgba(30, 58, 138, 0.05) 50%,
    rgba(139, 92, 246, 0.03) 100%
  );
}

.benefits-shapes-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.benefit-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.08),
    rgba(30, 58, 138, 0.1)
  );
  animation: benefitFloat 10s ease-in-out infinite;
}

.benefit-shape-1 {
  width: 250px;
  height: 250px;
  top: 15%;
  right: 8%;
  animation-delay: 0s;
}

.benefit-shape-2 {
  width: 180px;
  height: 180px;
  bottom: 25%;
  left: 5%;
  animation-delay: 4s;
}

.benefit-shape-3 {
  width: 120px;
  height: 120px;
  top: 70%;
  right: 15%;
  animation-delay: 8s;
}

@keyframes benefitFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(180deg);
  }
}

.benefits-container-new {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.benefits-header-new {
  text-align: center;
  margin-bottom: 4rem;
}

.benefits-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
}

.benefits-title-new {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: var(--fuente-secundaria);
  color: var(--color-texto);
}

.benefits-description-new {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-texto-claro);
  max-width: 800px;
  margin: 0 auto;
}

.benefits-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.benefit-card-new {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(30, 58, 138, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(30, 58, 138, 0.12);
}

.benefit-card-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--color-acento),
    var(--color-primario)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card-new:hover::before {
  opacity: 1;
}

.benefit-icon-new {
  margin-bottom: 1.5rem;
}

.icon-wrapper-new {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--color-acento),
    var(--color-acento-claro)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
}

.benefit-card-new:hover .icon-wrapper-new {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.3);
}

.icon-new {
  font-size: 2rem;
  color: white;
}

.benefit-content-new {
  margin-bottom: 1.5rem;
}

.benefit-title-new {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.benefit-description-new {
  color: var(--color-texto-claro);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.benefit-stats-new {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat-item-new {
  text-align: center;
  flex: 1;
  min-width: 80px;
}

.stat-number-new {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primario);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label-new {
  font-size: 0.8rem;
  color: var(--color-texto-claro);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.benefits-cta-new {
  text-align: center;
  background: var(--color-exito-claro);
  border-radius: 24px;
  padding: 3rem 2rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.benefits-cta-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  pointer-events: none;
}

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

.cta-title-new {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  font-family: var(--fuente-secundaria);
}

.cta-description-new {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button-new {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primario);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cta-button-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  background: white;
}

.cta-icon-new {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cta-button-new:hover .cta-icon-new {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .benefits-grid-new {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
  }

  .benefit-card-new {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .yoga-benefits-new {
    padding: 4rem 0;
  }

  .benefits-container-new {
    padding: 0 1rem;
  }

  .benefits-title-new {
    font-size: 2.5rem;
  }

  .benefits-description-new {
    font-size: 1.1rem;
  }

  .benefits-grid-new {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit-card-new {
    padding: 1.5rem;
  }

  .benefit-stats-new {
    gap: 1rem;
  }

  .cta-title-new {
    font-size: 2rem;
  }

  .cta-description-new {
    font-size: 1.1rem;
  }

  .benefits-cta-new {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .benefits-title-new {
    font-size: 2rem;
  }

  .benefits-description-new {
    font-size: 1rem;
  }

  .benefit-card-new {
    padding: 1.25rem;
  }

  .icon-wrapper-new {
    width: 60px;
    height: 60px;
  }

  .icon-new {
    font-size: 1.5rem;
  }

  .benefit-title-new {
    font-size: 1.25rem;
  }

  .stat-number-new {
    font-size: 1.25rem;
  }

  .cta-title-new {
    font-size: 1.75rem;
  }

  .cta-description-new {
    font-size: 1rem;
  }

  .cta-button-new {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* ========================================
   NEW YOGA METHODS SECTION STYLES
   ======================================== */

.yoga-methods-new {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  overflow: hidden;
}

.methods-background-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.methods-gradient-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.03) 0%,
    rgba(30, 58, 138, 0.05) 50%,
    rgba(16, 185, 129, 0.03) 100%
  );
}

.methods-shapes-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.method-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.08),
    rgba(30, 58, 138, 0.1)
  );
  animation: methodFloat 12s ease-in-out infinite;
}

.method-shape-1 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.method-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 30%;
  left: 8%;
  animation-delay: 6s;
}

.method-shape-3 {
  width: 100px;
  height: 100px;
  top: 60%;
  right: 25%;
  animation-delay: 12s;
}

@keyframes methodFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.methods-container-new {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.methods-header-new {
  text-align: center;
  margin-bottom: 4rem;
}

.methods-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
}

.methods-title-new {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: var(--fuente-secundaria);
  color: var(--color-texto);
}

.methods-description-new {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-texto-claro);
  max-width: 800px;
  margin: 0 auto;
}

.methods-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.method-card-new {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(30, 58, 138, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.method-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(30, 58, 138, 0.12);
}

.method-visual-new {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.method-icon-new {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-primario-claro)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.2);
  transition: all 0.3s ease;
}

.method-card-new:hover .method-icon-new {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(30, 58, 138, 0.3);
}

.icon-new {
  font-size: 2rem;
  color: white;
}

.method-number-new {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-texto-claro);
  opacity: 0.3;
  line-height: 1;
}

.method-content-new {
  margin-bottom: 1.5rem;
}

.method-title-new {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.method-description-new {
  color: var(--color-texto-claro);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.method-features-new {
  space-y: 0.75rem;
}

.feature-item-new {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.feature-icon-new {
  width: 20px;
  height: 20px;
  background: var(--color-acento);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  flex-shrink: 0;
}

.feature-text-new {
  color: var(--color-texto);
  font-weight: 500;
  font-size: 0.9rem;
}

.methods-cta-new {
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-primario-claro)
  );
  border-radius: 24px;
  padding: 3rem 2rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.methods-cta-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  pointer-events: none;
}

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

.cta-title-new {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  font-family: var(--fuente-secundaria);
}

.cta-description-new {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons-new {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button-new {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.primary-new {
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primario);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.primary-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  background: white;
}

.secondary-new {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.secondary-new:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.button-icon-new {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cta-button-new:hover .button-icon-new {
  transform: translateX(5px);
}

/* Responsive Design for Methods */
@media (max-width: 1024px) {
  .methods-grid-new {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
  }

  .method-card-new {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .yoga-methods-new {
    padding: 4rem 0;
  }

  .methods-container-new {
    padding: 0 1rem;
  }

  .methods-title-new {
    font-size: 2.5rem;
  }

  .methods-description-new {
    font-size: 1.1rem;
  }

  .methods-grid-new {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .method-card-new {
    padding: 1.5rem;
  }

  .cta-title-new {
    font-size: 2rem;
  }

  .cta-description-new {
    font-size: 1.1rem;
  }

  .methods-cta-new {
    padding: 2rem 1.5rem;
  }

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

  .cta-button-new {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .methods-title-new {
    font-size: 2rem;
  }

  .methods-description-new {
    font-size: 1rem;
  }

  .method-card-new {
    padding: 1.25rem;
  }

  .method-icon-new {
    width: 60px;
    height: 60px;
  }

  .icon-new {
    font-size: 1.5rem;
  }

  .method-title-new {
    font-size: 1.25rem;
  }

  .cta-title-new {
    font-size: 1.75rem;
  }

  .cta-description-new {
    font-size: 1rem;
  }

  .cta-button-new {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* ========================================
   NEW YOGA TESTIMONIALS SECTION STYLES
   ======================================== */

.yoga-testimonials-new {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.testimonials-background-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.testimonials-gradient-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.03) 0%,
    rgba(30, 58, 138, 0.05) 50%,
    rgba(139, 92, 246, 0.03) 100%
  );
}

.testimonials-shapes-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.testimonial-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.08),
    rgba(30, 58, 138, 0.1)
  );
  animation: testimonialFloat 15s ease-in-out infinite;
}

.testimonial-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.testimonial-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 10%;
  animation-delay: 7s;
}

.testimonial-shape-3 {
  width: 150px;
  height: 150px;
  top: 70%;
  right: 20%;
  animation-delay: 14s;
}

@keyframes testimonialFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

.testimonials-container-new {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonials-header-new {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
}

.testimonials-title-new {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: var(--fuente-secundaria);
  color: var(--color-texto);
}

.testimonials-description-new {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-texto-claro);
  max-width: 800px;
  margin: 0 auto;
}

.testimonials-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonial-card-new {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(30, 58, 138, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(30, 58, 138, 0.12);
}

.testimonial-rating-new {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.stars-new {
  display: flex;
  gap: 0.25rem;
}

.star-new {
  color: #fbbf24;
  font-size: 1.25rem;
}

.rating-text-new {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-texto);
}

.testimonial-content-new {
  margin-bottom: 2rem;
}

.testimonial-text-new {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-texto);
  font-style: italic;
  position: relative;
}

/* .testimonial-text-new::before {
  content: """;
  font-size: 4rem;
  color: var(--color-acento);
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  opacity: 0.3;
  font-family: serif;
} */

.testimonial-author-new {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar-new {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--color-acento),
    var(--color-acento-claro)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-text-new {
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.author-info-new h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 0.25rem;
}

.author-title-new {
  color: var(--color-texto-claro);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.author-location-new {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-texto-claro);
  font-size: 0.8rem;
}

.location-icon-new {
  font-size: 0.8rem;
}

.testimonials-stats-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stats-card-new {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(30, 58, 138, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stats-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(30, 58, 138, 0.15);
}

.stat-number-new {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--color-primario);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-new {
  font-size: 0.9rem;
  color: var(--color-texto-claro);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design for Testimonials */
@media (max-width: 1024px) {
  .testimonials-grid-new {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
  }

  .testimonial-card-new {
    padding: 2rem;
  }

  .testimonials-stats-new {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .yoga-testimonials-new {
    padding: 4rem 0;
  }

  .testimonials-container-new {
    padding: 0 1rem;
  }

  .testimonials-title-new {
    font-size: 2.5rem;
  }

  .testimonials-description-new {
    font-size: 1.1rem;
  }

  .testimonials-grid-new {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card-new {
    padding: 1.5rem;
  }

  .testimonials-stats-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stats-card-new {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .testimonials-title-new {
    font-size: 2rem;
  }

  .testimonials-description-new {
    font-size: 1rem;
  }

  .testimonial-card-new {
    padding: 1.25rem;
  }

  .author-avatar-new {
    width: 50px;
    height: 50px;
  }

  .avatar-text-new {
    font-size: 1rem;
  }

  .testimonials-stats-new {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stats-card-new {
    padding: 1rem;
  }

  .stat-number-new {
    font-size: 2rem;
  }
}

/* ========================================
   TARIFE PAGE STYLES
   ======================================== */

.tarife-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #10b981 100%);
  overflow: hidden;
}

.tarife-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.tarife-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.9) 0%,
    rgba(59, 130, 246, 0.8) 50%,
    rgba(16, 185, 129, 0.9) 100%
  );
}

.tarife-hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.tarife-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: tarifeFloat 20s ease-in-out infinite;
}

.tarife-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.tarife-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 15%;
  animation-delay: 7s;
}

.tarife-shape-3 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 30%;
  animation-delay: 14s;
}

@keyframes tarifeFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

.tarife-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.tarife-hero-content {
  color: white;
}

.tarife-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
}

.tarife-hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: var(--fuente-secundaria);
}

.title-line-1,
.title-line-2 {
  display: block;
}

.tarife-hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

.detailed-tarife {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  overflow: hidden;
}

.tarife-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.tarife-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.03) 0%,
    rgba(30, 58, 138, 0.05) 50%,
    rgba(139, 92, 246, 0.03) 100%
  );
}

.tarife-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.tarife-header {
  text-align: center;
  margin-bottom: 4rem;
}

.tarife-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: var(--fuente-secundaria);
  color: var(--color-texto);
}

.tarife-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-texto-claro);
  max-width: 800px;
  margin: 0 auto;
}

.tarife-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.tarife-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(30, 58, 138, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.tarife-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(30, 58, 138, 0.12);
}

.popular-plan {
  border: 2px solid var(--color-acento);
  transform: scale(1.05);
}

.popular-plan:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -1px;
  right: 2rem;
  background: linear-gradient(
    135deg,
    var(--color-acento),
    var(--color-acento-claro)
  );
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0 0 12px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.plan-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.plan-badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.basic-badge {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-acento);
}

.premium-badge {
  background: rgba(30, 58, 138, 0.1);
  color: var(--color-primario);
}

.master-badge {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.plan-icon {
  font-size: 2.5rem;
}

.plan-content {
  margin-bottom: 2rem;
}

.plan-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-texto);
  margin-bottom: 0.5rem;
}

.plan-subtitle {
  color: var(--color-texto-claro);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.price-section {
  margin-bottom: 2rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primario);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.price-period {
  color: var(--color-texto-claro);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.price-savings {
  color: var(--color-acento);
  font-size: 0.9rem;
  font-weight: 600;
}

.plan-description {
  color: var(--color-texto-claro);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.features-section {
  margin-bottom: 2rem;
}

.features-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 1rem;
}

.features-list {
  space-y: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.feature-icon {
  width: 20px;
  height: 20px;
  background: var(--color-acento);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  flex-shrink: 0;
}

.feature-text {
  color: var(--color-texto);
  font-weight: 500;
  font-size: 0.9rem;
}

.plan-details {
  background: rgba(248, 250, 252, 0.8);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.detail-item:last-child {
  margin-bottom: 0;
}

.detail-label {
  color: var(--color-texto-claro);
  font-weight: 500;
}

.detail-value {
  color: var(--color-texto);
  font-weight: 600;
}

.plan-footer {
  text-align: center;
}

.plan-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  justify-content: center;
  margin-bottom: 1rem;
}

.basic-button {
  background: linear-gradient(
    135deg,
    var(--color-acento),
    var(--color-acento-claro)
  );
  color: white;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
}

.basic-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.3);
}

.premium-button {
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-primario-claro)
  );
  color: white;
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.2);
}

.premium-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(30, 58, 138, 0.3);
}

.master-button {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  color: white;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

.master-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.3);
}

.button-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.plan-button:hover .button-icon {
  transform: translateX(5px);
}

.plan-note {
  color: var(--color-texto-claro);
  font-size: 0.8rem;
  font-style: italic;
}

.comparison-section {
  margin-bottom: 4rem;
}

.comparison-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--color-texto);
}

.comparison-table {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(30, 58, 138, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-primario-claro)
  );
  color: white;
  font-weight: 700;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row:nth-child(even) {
  background: rgba(248, 250, 252, 0.5);
}

.comparison-feature,
.comparison-plan,
.comparison-value {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.comparison-feature {
  font-weight: 600;
  color: var(--color-texto);
  justify-content: flex-start;
}

.comparison-value {
  color: var(--color-texto-claro);
}

.faq-section {
  margin-bottom: 2rem;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--color-texto);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(30, 58, 138, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--color-texto-claro);
  line-height: 1.6;
}

/* Responsive Design for Tarife Page */
@media (max-width: 1024px) {
  .tarife-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
  }

  .tarife-card {
    padding: 2rem;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .tarife-hero {
    min-height: 60vh;
  }

  .tarife-hero-container {
    padding: 0 1rem;
  }

  .tarife-hero-title {
    font-size: 2.5rem;
  }

  .tarife-hero-description {
    font-size: 1.1rem;
  }

  .tarife-container {
    padding: 0 1rem;
  }

  .tarife-title {
    font-size: 2.5rem;
  }

  .tarife-description {
    font-size: 1.1rem;
  }

  .tarife-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tarife-card {
    padding: 1.5rem;
  }

  .popular-plan {
    transform: none;
  }

  .popular-plan:hover {
    transform: translateY(-8px);
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .comparison-feature {
    font-weight: 700;
    background: var(--color-primario);
    color: white;
    margin-bottom: 0.5rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .faq-item {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .tarife-hero-title {
    font-size: 2rem;
  }

  .tarife-hero-description {
    font-size: 1rem;
  }

  .tarife-title {
    font-size: 2rem;
  }

  .tarife-description {
    font-size: 1rem;
  }

  .tarife-card {
    padding: 1.25rem;
  }

  .plan-title {
    font-size: 1.5rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .plan-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .comparison-title,
  .faq-title {
    font-size: 2rem;
  }
}

/* ========================================
   NEW YOGA CONTACT SECTION STYLES
   ======================================== */

.yoga-contact-new {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  overflow: hidden;
}

.contact-background-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.contact-gradient-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.03) 0%,
    rgba(30, 58, 138, 0.05) 50%,
    rgba(139, 92, 246, 0.03) 100%
  );
}

.contact-shapes-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.contact-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.08),
    rgba(30, 58, 138, 0.1)
  );
  animation: contactFloat 18s ease-in-out infinite;
}

.contact-shape-1 {
  width: 250px;
  height: 250px;
  top: 10%;
  right: 8%;
  animation-delay: 0s;
}

.contact-shape-2 {
  width: 180px;
  height: 180px;
  bottom: 20%;
  left: 10%;
  animation-delay: 6s;
}

.contact-shape-3 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 20%;
  animation-delay: 12s;
}

@keyframes contactFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(180deg);
  }
}

.contact-container-new {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-header-new {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
}

.contact-title-new {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: var(--fuente-secundaria);
  color: var(--color-texto);
}

.contact-description-new {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-texto-claro);
  max-width: 800px;
  margin: 0 auto;
}

.contact-content-new {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.contact-info-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-card-new {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(30, 58, 138, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(30, 58, 138, 0.12);
}

.card-icon-new {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--color-acento),
    var(--color-acento-claro)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
}

.contact-card-new:hover .card-icon-new {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.3);
}

.icon-new {
  font-size: 2rem;
  color: white;
}

.card-content-new {
  margin-bottom: 1.5rem;
}

.card-title-new {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.card-description-new {
  color: var(--color-texto-claro);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.contact-details-new {
  space-y: 0.75rem;
}

.detail-item-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.detail-item-new:last-child {
  margin-bottom: 0;
}

.detail-label-new {
  color: var(--color-texto-claro);
  font-weight: 500;
  font-size: 0.9rem;
  min-width: 100px;
}

.detail-value-new {
  color: var(--color-texto);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: right;
}

.phone-link-new,
.email-link-new {
  color: var(--color-primario);
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-link-new:hover,
.email-link-new:hover {
  color: var(--color-acento);
}

.contact-actions-new {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.action-buttons-new {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.action-button-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.primary-new {
  background: linear-gradient(
    135deg,
    var(--color-acento),
    var(--color-acento-claro)
  );
  color: white;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
}

.primary-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.3);
}

.secondary-new {
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-primario-claro)
  );
  color: white;
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.2);
}

.secondary-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(30, 58, 138, 0.3);
}

.whatsapp-new {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.2);
}

.whatsapp-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.3);
}

.button-icon-new {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.action-button-new:hover .button-icon-new {
  transform: translateX(5px);
}

.contact-features-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.feature-item-new {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon-new {
  font-size: 1.2rem;
  color: var(--color-acento);
}

.feature-text-new {
  color: var(--color-texto);
  font-weight: 500;
  font-size: 0.9rem;
}

.contact-form-new {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(30, 58, 138, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 4rem;
}

.form-container-new {
  max-width: 800px;
  margin: 0 auto;
}

.form-title-new {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-texto);
  font-family: var(--fuente-secundaria);
}

.form-description-new {
  text-align: center;
  color: var(--color-texto-claro);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-form-new {
  display: grid;
  gap: 1.5rem;
}

.form-row-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group-new {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label-new {
  font-weight: 600;
  color: var(--color-texto);
  font-size: 0.9rem;
}

.form-input-new,
.form-select-new,
.form-textarea-new {
  padding: 1rem 1.25rem;
  border: 2px solid rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.form-input-new:focus,
.form-select-new:focus,
.form-textarea-new:focus {
  outline: none;
  border-color: var(--color-acento);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
  background: white;
}

.form-textarea-new {
  resize: vertical;
  min-height: 120px;
}

.checkbox-label-new {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.5;
}

.checkbox-label-new input[type="checkbox"] {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--color-acento);
}

.checkbox-text-new {
  color: var(--color-texto-claro);
}

.privacy-link-new {
  color: var(--color-primario);
  text-decoration: none;
  font-weight: 600;
}

.privacy-link-new:hover {
  color: var(--color-acento);
  text-decoration: underline;
}

.form-submit-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(
    135deg,
    var(--color-acento),
    var(--color-acento-claro)
  );
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
  margin: 0 auto;
}

.form-submit-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.3);
}

.submit-icon-new {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.form-submit-new:hover .submit-icon-new {
  transform: translateX(5px);
}

.contact-map-new {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(30, 58, 138, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-container-new {
  position: relative;
  width: 100%;
  height: 400px;
}

.map-container-new iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-info-new {
  padding: 2rem;
}

.map-title-new {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 1rem;
}

.map-description-new {
  color: var(--color-texto-claro);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.map-features-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.map-feature-new {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(248, 250, 252, 0.8);
  border-radius: 8px;
}

.map-feature-icon-new {
  font-size: 1.2rem;
}

.map-feature-text-new {
  color: var(--color-texto);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsive Design for Contact */
@media (max-width: 1024px) {
  .contact-content-new {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info-new {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .contact-card-new {
    padding: 2rem;
  }

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

@media (max-width: 768px) {
  .yoga-contact-new {
    padding: 4rem 0;
  }

  .contact-container-new {
    padding: 0 1rem;
  }

  .contact-title-new {
    font-size: 2.5rem;
  }

  .contact-description-new {
    font-size: 1.1rem;
  }

  .contact-info-new {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-card-new {
    padding: 1.5rem;
  }

  .contact-form-new {
    padding: 2rem;
  }

  .form-title-new {
    font-size: 2rem;
  }

  .form-description-new {
    font-size: 1rem;
  }

  .action-buttons-new {
    gap: 0.75rem;
  }

  .action-button-new {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .map-features-new {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .contact-title-new {
    font-size: 2rem;
  }

  .contact-description-new {
    font-size: 1rem;
  }

  .contact-card-new {
    padding: 1.25rem;
  }

  .card-icon-new {
    width: 60px;
    height: 60px;
  }

  .icon-new {
    font-size: 1.5rem;
  }

  .card-title-new {
    font-size: 1.25rem;
  }

  .contact-form-new {
    padding: 1.5rem;
  }

  .form-title-new {
    font-size: 1.75rem;
  }

  .form-description-new {
    font-size: 0.9rem;
  }

  .form-input-new,
  .form-select-new,
  .form-textarea-new {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }

  .form-submit-new {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .map-info-new {
    padding: 1.5rem;
  }

  .map-title-new {
    font-size: 1.25rem;
  }

  .map-description-new {
    font-size: 0.9rem;
  }
}

/* ========================================
   NEW FOOTER STYLES
   ======================================== */

.footer-new {
  position: relative;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #10b981 100%);
  color: white;
  overflow: hidden;
  margin-top: 6rem;
}

.footer-background-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.footer-gradient-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.95) 0%,
    rgba(59, 130, 246, 0.9) 50%,
    rgba(16, 185, 129, 0.95) 100%
  );
}

.footer-shapes-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.footer-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: footerFloat 20s ease-in-out infinite;
}

.footer-shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.footer-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 15%;
  animation-delay: 7s;
}

.footer-shape-3 {
  width: 100px;
  height: 100px;
  top: 60%;
  right: 25%;
  animation-delay: 14s;
}

@keyframes footerFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.footer-container-new {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

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

.footer-brand-new {
  max-width: 400px;
}

.footer-logo-new {
  margin-bottom: 1.5rem;
}

.footer-logo-link-new {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.footer-logo-link-new:hover {
  transform: translateY(-2px);
}

.logo-icon-new {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.footer-logo-link-new:hover .logo-icon-new {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.logo-text-new {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name-new {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  font-family: var(--fuente-secundaria);
}

.logo-domain-new {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.footer-description-new {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.footer-navigation-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column-new {
  display: flex;
  flex-direction: column;
}

.footer-title-new {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  font-family: var(--fuente-secundaria);
  position: relative;
}

.footer-title-new::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 1px;
}

.footer-list-new {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link-new {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-link-new:hover {
  color: white;
  padding-left: 0.5rem;
}

.footer-link-new::before {
  content: "→";
  position: absolute;
  left: -1rem;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--color-acento);
}

.footer-link-new:hover::before {
  opacity: 1;
  left: -0.5rem;
}

.footer-divider-new {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 20%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.2) 80%,
    transparent 100%
  );
  margin: 2rem 0;
}

.footer-bottom-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-contact-new {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-item-new {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.contact-icon-new {
  font-size: 1rem;
  opacity: 0.8;
}

.contact-link-new {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link-new:hover {
  color: white;
}

.contact-text-new {
  color: rgba(255, 255, 255, 0.9);
}

.footer-copyright-new {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.copyright-text-new {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-weight: 500;
}

.copyright-subtext-new {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-style: italic;
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
  .footer-main-new {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-navigation-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-bottom-new {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-copyright-new {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .footer-container-new {
    padding: 3rem 1.5rem 2rem;
  }

  .footer-navigation-new {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-contact-new {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-item-new {
    font-size: 0.85rem;
  }

  .footer-logo-link-new {
    gap: 0.75rem;
  }

  .logo-icon-new {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .logo-name-new {
    font-size: 1.25rem;
  }

  .logo-domain-new {
    font-size: 0.9rem;
  }

  .footer-description-new {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .footer-container-new {
    padding: 2rem 1rem 1.5rem;
  }

  .footer-main-new {
    gap: 2rem;
  }

  .footer-navigation-new {
    gap: 1.5rem;
  }

  .footer-title-new {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer-link-new {
    font-size: 0.9rem;
  }

  .footer-contact-new {
    gap: 0.75rem;
  }

  .contact-item-new {
    font-size: 0.8rem;
  }

  .copyright-text-new {
    font-size: 0.8rem;
  }

  .copyright-subtext-new {
    font-size: 0.75rem;
  }

  .footer-logo-link-new {
    gap: 0.5rem;
  }

  .logo-icon-new {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .logo-name-new {
    font-size: 1.1rem;
  }

  .logo-domain-new {
    font-size: 0.8rem;
  }
}

/* ========================================
   POLICY PAGES STYLES
   ======================================== */

.policy-hero-new {
  position: relative;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #10b981 100%);
  color: white;
  overflow: hidden;
  padding: 6rem 0 4rem;
}

.policy-background-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.policy-gradient-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.95) 0%,
    rgba(59, 130, 246, 0.9) 50%,
    rgba(16, 185, 129, 0.95) 100%
  );
}

.policy-shapes-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.policy-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: policyFloat 25s ease-in-out infinite;
}

.policy-shape-1 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  animation-delay: 0s;
}

.policy-shape-2 {
  width: 100px;
  height: 100px;
  bottom: 30%;
  left: 20%;
  animation-delay: 12s;
}

@keyframes policyFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

.policy-container-new {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.policy-header-new {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.policy-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
}

.badge-icon-new {
  font-size: 1.25rem;
}

.badge-text-new {
  font-size: 0.9rem;
  font-weight: 600;
}

.policy-title-new {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  font-family: var(--fuente-secundaria);
  line-height: 1.1;
}

.policy-description-new {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.policy-meta-new {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.meta-text-new {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.policy-content-new {
  padding: 4rem 0;
  background: #f8fafc;
}

.policy-document-new {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.policy-section-new {
  padding: 3rem;
  border-bottom: 1px solid #e2e8f0;
}

.policy-section-new:last-child {
  border-bottom: none;
}

.section-header-new {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-number-new {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
}

.section-title-new {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  font-family: var(--fuente-secundaria);
}

.section-content-new {
  color: #475569;
  line-height: 1.7;
}

.section-content-new p {
  margin-bottom: 1rem;
}

.section-content-new p:last-child {
  margin-bottom: 0;
}

.content-list-new {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.content-list-new li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #475569;
}

.content-list-new li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 1.1rem;
}

.contact-info-new {
  background: #f1f5f9;
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1rem 0;
}

.contact-info-new p {
  margin: 0.5rem 0;
  color: #475569;
}

.note-new {
  font-style: italic;
  color: #64748b;
  background: #fef3c7;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #f59e0b;
  margin: 1rem 0;
}

.cookie-category-new {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1rem 0;
  border: 1px solid #e2e8f0;
}

.category-title-new {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 0.5rem 0;
}

.category-desc-new {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0 0 1rem 0;
}

.cookie-controls-new {
  margin: 2rem 0;
}

.control-item-new {
  margin-bottom: 1rem;
}

.control-label-new {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  padding: 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.control-label-new:hover {
  background: #f1f5f9;
}

.control-checkbox-new {
  width: 20px;
  height: 20px;
  accent-color: #3b82f6;
}

.control-text-new {
  font-weight: 500;
  color: #1e293b;
}

.cookie-actions-new {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn-save-new,
.btn-accept-all-new,
.btn-reject-new {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-save-new {
  background: #3b82f6;
  color: white;
}

.btn-save-new:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.btn-accept-all-new {
  background: #10b981;
  color: white;
}

.btn-accept-all-new:hover {
  background: #059669;
  transform: translateY(-2px);
}

.btn-reject-new {
  background: #6b7280;
  color: white;
}

.btn-reject-new:hover {
  background: #4b5563;
  transform: translateY(-2px);
}

.policy-footer-new {
  background: #1e293b;
  color: white;
  padding: 3rem 0;
}

.footer-content-new {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.footer-text-new {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.footer-links-new {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-link-new {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-link-new:hover {
  color: white;
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
  .policy-title-new {
    font-size: 2.25rem;
  }

  .policy-description-new {
    font-size: 1.1rem;
  }

  .policy-section-new {
    padding: 2rem 1.5rem;
  }

  .section-header-new {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .section-number-new {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .section-title-new {
    font-size: 1.5rem;
  }

  .cookie-actions-new {
    flex-direction: column;
  }

  .footer-links-new {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .policy-container-new {
    padding: 0 1rem;
  }

  .policy-title-new {
    font-size: 1.875rem;
  }

  .policy-section-new {
    padding: 1.5rem 1rem;
  }

  .section-number-new {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .section-title-new {
    font-size: 1.25rem;
  }
}

/* ========================================
   NEW COOKIE BANNER STYLES
   ======================================== */

.cookie-banner-new {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.cookie-banner-new.show {
  transform: translateY(0);
}

.cookie-background-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.cookie-gradient-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.98) 0%,
    rgba(59, 130, 246, 0.95) 50%,
    rgba(16, 185, 129, 0.98) 100%
  );
  backdrop-filter: blur(20px);
}

.cookie-shapes-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.cookie-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  animation: cookieFloat 15s ease-in-out infinite;
}

.cookie-shape-1 {
  width: 80px;
  height: 80px;
  top: -20px;
  right: 20px;
  animation-delay: 0s;
}

.cookie-shape-2 {
  width: 60px;
  height: 60px;
  bottom: -10px;
  left: 30px;
  animation-delay: 7s;
}

@keyframes cookieFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(90deg);
  }
}

.cookie-container-new {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
}

.cookie-content-new {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: white;
}

.cookie-icon-new {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.icon-emoji {
  font-size: 1.5rem;
}

.cookie-text-new {
  flex: 1;
  min-width: 0;
}

.cookie-title-new {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.5rem 0;
  font-family: var(--fuente-secundaria);
}

.cookie-description-new {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.cookie-link-new {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cookie-link-new:hover {
  color: white;
}

.cookie-actions-new {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn-new {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-accept-new {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.cookie-accept-new:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cookie-settings-new {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.cookie-settings-new:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-2px);
}

.btn-text-new {
  font-weight: 600;
}

.btn-icon-new {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Responsive Design for Cookie Banner */
@media (max-width: 768px) {
  .cookie-container-new {
    padding: 1.25rem 1.5rem;
  }

  .cookie-content-new {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .cookie-icon-new {
    width: 45px;
    height: 45px;
  }

  .icon-emoji {
    font-size: 1.25rem;
  }

  .cookie-title-new {
    font-size: 1rem;
  }

  .cookie-description-new {
    font-size: 0.85rem;
  }

  .cookie-actions-new {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-btn-new {
    flex: 1;
    justify-content: center;
    padding: 0.875rem 1rem;
  }
}

@media (max-width: 480px) {
  .cookie-container-new {
    padding: 1rem;
  }

  .cookie-content-new {
    gap: 1rem;
  }

  .cookie-icon-new {
    width: 40px;
    height: 40px;
  }

  .icon-emoji {
    font-size: 1.1rem;
  }

  .cookie-title-new {
    font-size: 0.95rem;
  }

  .cookie-description-new {
    font-size: 0.8rem;
  }

  .cookie-btn-new {
    padding: 0.75rem 0.875rem;
    font-size: 0.85rem;
  }

  .btn-icon-new {
    font-size: 0.75rem;
  }
}

/* ========================================
   SUCCESS NOTIFICATION STYLES
   ======================================== */

.success-notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(16, 185, 129, 0.2);
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 400px;
}

.success-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  position: relative;
}

.notification-icon {
  font-size: 2rem;
  color: var(--color-acento);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.notification-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.notification-text p {
  font-size: 0.9rem;
  color: var(--color-texto-claro);
  line-height: 1.4;
  margin: 0;
}

.notification-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-texto-claro);
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.notification-close:hover {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-acento);
}

/* Responsive Design for Notification */
@media (max-width: 768px) {
  .success-notification {
    top: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
    transform: translateY(-100px);
  }

  .success-notification.show {
    transform: translateY(0);
  }

  .notification-content {
    padding: 1.25rem;
  }

  .notification-icon {
    font-size: 1.75rem;
  }

  .notification-text h4 {
    font-size: 1rem;
  }

  .notification-text p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .success-notification {
    top: 0.5rem;
    right: 0.5rem;
    left: 0.5rem;
  }

  .notification-content {
    padding: 1rem;
    gap: 0.75rem;
  }

  .notification-icon {
    font-size: 1.5rem;
  }

  .notification-close {
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.25rem;
    width: 20px;
    height: 20px;
  }
}

/* ========================================
   MODERN HERO SECTION STYLES
   ======================================== */

.hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradiente-hero);
  color: white;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(30, 58, 138, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(5, 150, 105, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(217, 119, 6, 0.2) 0%,
      transparent 50%
    );
  animation: gradientShift 8s ease-in-out infinite;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      2px 2px at 20px 30px,
      rgba(255, 255, 255, 0.3),
      transparent
    ),
    radial-gradient(2px 2px at 40px 70px, rgba(59, 130, 246, 0.4), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(147, 51, 234, 0.3), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(236, 72, 153, 0.2), transparent);
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: particleFloat 20s linear infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(0px) translateX(0px);
  }
  100% {
    transform: translateY(-200px) translateX(200px);
  }
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.hero-badge-modern:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.badge-icon-modern {
  font-size: 1.25rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.badge-text-modern {
  font-weight: 500;
}

.hero-title-modern {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: var(--fuente-secundaria);
}

.title-primary {
  display: block;
  color: white;
  margin-bottom: 0.5rem;
}

.title-accent {
  display: block;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  margin-bottom: 0.5rem;
}

.title-accent::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
  border-radius: 2px;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.6;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.05);
  }
}

.title-secondary {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.hero-description-modern {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.hero-features-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.feature-modern {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.875rem 1.25rem;
  border-radius: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.feature-modern:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.feature-icon-modern {
  font-size: 1.1rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.feature-text-modern {
  font-size: 0.95rem;
}

.hero-actions-modern {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-modern:hover::before {
  left: 100%;
}

.btn-primary-modern {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-primary-modern:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.btn-secondary-modern {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
}

.btn-secondary-modern:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

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

.btn-icon-modern {
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.btn-modern:hover .btn-icon-modern {
  transform: translateX(3px);
}

.hero-visual-modern {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-modern {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  max-width: 350px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

.card-header-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.card-avatar-modern {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.card-info-modern {
  flex: 1;
}

.card-name-modern {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.card-title-modern {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.card-stats-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-modern {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number-modern {
  font-size: 2rem;
  font-weight: 800;

  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label-modern {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ========================================
   RESPONSIVE DESIGN FOR MODERN HERO
   ======================================== */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-title-modern {
    font-size: 3.5rem;
  }

  .hero-visual-modern {
    order: -1;
  }

  .hero-card-modern {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .hero-modern {
    min-height: auto;
    padding: 4rem 0;
  }

  .hero-container {
    padding: 0 1rem;
    gap: 2rem;
  }

  .hero-title-modern {
    font-size: 2.75rem;
  }

  .hero-description-modern {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-features-modern {
    justify-content: center;
    margin-bottom: 2rem;
  }

  .hero-actions-modern {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn-modern {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero-card-modern {
    max-width: 100%;
    padding: 1.5rem;
  }

  .card-stats-modern {
    gap: 1rem;
  }

  .stat-modern {
    padding: 0.75rem;
  }

  .stat-number-modern {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title-modern {
    font-size: 2.25rem;
  }

  .hero-description-modern {
    font-size: 1rem;
  }

  .hero-badge-modern {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }

  .feature-modern {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .btn-modern {
    padding: 1rem 1.75rem;
    font-size: 1rem;
  }

  .hero-card-modern {
    padding: 1.25rem;
  }

  .card-avatar-modern {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .card-name-modern {
    font-size: 1rem;
  }

  .card-title-modern {
    font-size: 0.8rem;
  }
}

/* ========================================
   MODERN COURSES SECTION STYLES
   ======================================== */

.kurse-modern {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  overflow: hidden;
}

.kurse-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.kurse-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(147, 51, 234, 0.1) 0%,
      transparent 50%
    );
  background-size: 400px 400px;
  animation: patternMove 20s linear infinite;
}

.kurse-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.kurse-header {
  text-align: center;
  margin-bottom: 4rem;
}

.kurse-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #3b82f6;
  transition: all 0.3s ease;
}

.kurse-badge:hover {
  background: rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
}

.badge-icon {
  font-size: 1.25rem;
  animation: pulse 2s ease-in-out infinite;
}

.badge-text {
  font-weight: 500;
}

.kurse-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #1e293b;
  font-family: var(--fuente-secundaria);
}

.kurse-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.pricing-card {
  position: relative;
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradiente-hero);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sombra-xxl);
  border-color: var(--color-primario-claro);
}

.pricing-card.popular {
  border-color: var(--color-primario);
  box-shadow: 0 15px 50px rgba(30, 58, 138, 0.2);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -1px;
  right: 2rem;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 0 0 12px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.level-badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
}

.starter-badge {
  background: linear-gradient(135deg, #10b981, #059669);
}

.professional-badge {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.expert-badge {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.plan-icon {
  font-size: 2rem;
  opacity: 0.8;
}

.card-content {
  flex: 1;
}

.plan-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-family: var(--fuente-secundaria);
}

.plan-subtitle {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.price-section {
  margin-bottom: 2rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1;
  font-family: var(--fuente-secundaria);
}

.price-period {
  color: #64748b;
  font-size: 0.9rem;
  margin-left: 0.5rem;
  font-weight: 500;
}

.plan-description {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.features-list {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: #475569;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  color: #3b82f6;
  transform: translateX(4px);
}

.feature-icon {
  font-size: 1rem;
  color: #10b981;
  flex-shrink: 0;
}

.feature-text {
  font-weight: 500;
}

.card-footer {
  margin-top: auto;
}

.plan-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.125rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.plan-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

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

.starter-button {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.starter-button:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.professional-button {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.professional-button:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.expert-button {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  border: none;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.expert-button:hover {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

.button-text {
  position: relative;
  z-index: 2;
}

.button-icon {
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.plan-button:hover .button-icon {
  transform: translateX(3px);
}

.kurse-footer {
  text-align: center;
  margin-top: 3rem;
}

.guarantee-text {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.guarantee-icon {
  font-size: 1.25rem;
}

/* ========================================
   RESPONSIVE DESIGN FOR MODERN COURSES
   ======================================== */

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto 3rem;
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }

  .kurse-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .kurse-modern {
    padding: 6rem 0;
  }

  .kurse-container {
    padding: 0 1rem;
  }

  .kurse-title {
    font-size: 2.5rem;
  }

  .kurse-description {
    font-size: 1.1rem;
  }

  .pricing-card {
    padding: 2rem;
  }

  .plan-title {
    font-size: 1.75rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .guarantee-text {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .kurse-modern {
    padding: 4rem 0;
  }

  .kurse-title {
    font-size: 2rem;
  }

  .kurse-description {
    font-size: 1rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .plan-title {
    font-size: 1.5rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  .plan-button {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }

  .guarantee-text {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }
}

/* ========================================
   MODERN BENEFITS SECTION STYLES
   ======================================== */

.benefits-modern {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  overflow: hidden;
}

.benefits-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.benefits-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 20%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(147, 51, 234, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(16, 185, 129, 0.05) 0%,
      transparent 50%
    );
  background-size: 600px 600px;
  animation: patternMove 25s linear infinite;
}

.benefits-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.benefits-header {
  text-align: center;
  margin-bottom: 4rem;
}

.benefits-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #60a5fa;
  transition: all 0.3s ease;
}

.benefits-badge:hover {
  background: rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
}

.benefits-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
  font-family: var(--fuente-secundaria);
}

.benefits-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #10b981);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.benefit-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  margin-bottom: 2rem;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

.benefit-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.icon {
  font-size: 2rem;
  filter: grayscale(0);
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  font-family: var(--fuente-secundaria);
}

.benefit-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.benefit-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  padding: 0.375rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: rgba(59, 130, 246, 0.3);
  transform: translateY(-1px);
}

/* ========================================
   RESPONSIVE DESIGN FOR MODERN BENEFITS
   ======================================== */

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .benefits-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .benefits-modern {
    padding: 6rem 0;
  }

  .benefits-container {
    padding: 0 1rem;
  }

  .benefits-title {
    font-size: 2.5rem;
  }

  .benefits-description {
    font-size: 1.1rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit-card {
    padding: 2rem;
  }

  .icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .icon {
    font-size: 1.75rem;
  }

  .benefit-title {
    font-size: 1.375rem;
  }
}

@media (max-width: 480px) {
  .benefits-modern {
    padding: 4rem 0;
  }

  .benefits-title {
    font-size: 2rem;
  }

  .benefits-description {
    font-size: 1rem;
  }

  .benefit-card {
    padding: 1.5rem;
  }

  .icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .icon {
    font-size: 1.5rem;
  }

  .benefit-title {
    font-size: 1.25rem;
  }

  .benefit-description {
    font-size: 0.9rem;
  }

  .feature-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
}

/* ========================================
   MODERN LERNMETHODEN SECTION STYLES
   ======================================== */

.lernmethoden-modern {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  overflow: hidden;
}

.lernmethoden-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.lernmethoden-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 30% 30%,
      rgba(16, 185, 129, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 20%,
      rgba(139, 92, 246, 0.05) 0%,
      transparent 50%
    );
  background-size: 500px 500px;
  animation: patternMove 30s linear infinite;
}

.lernmethoden-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.lernmethoden-header {
  text-align: center;
  margin-bottom: 4rem;
}

.lernmethoden-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(16, 185, 129, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #10b981;
  transition: all 0.3s ease;
}

.lernmethoden-badge:hover {
  background: rgba(16, 185, 129, 0.15);
  transform: translateY(-2px);
}

.lernmethoden-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #1e293b;
  font-family: var(--fuente-secundaria);
}

.lernmethoden-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.methoden-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.methode-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.methode-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #3b82f6, #8b5cf6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.methode-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(16, 185, 129, 0.2);
}

.methode-visual {
  position: relative;
  margin-bottom: 2rem;
  text-align: center;
}

.visual-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
}

.methode-card:hover .visual-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.visual-icon .icon {
  font-size: 2rem;
  color: white;
}

.visual-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.methode-content {
  text-align: center;
}

.methode-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  font-family: var(--fuente-secundaria);
}

.methode-description {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.methode-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.methode-features .feature-item {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  padding: 0.375rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
}

.methode-features .feature-item:hover {
  background: rgba(16, 185, 129, 0.2);
  transform: translateY(-1px);
}

.lernmethoden-cta {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.lernmethoden-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(16, 185, 129, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

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

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
  font-family: var(--fuente-secundaria);
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.25rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

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

.cta-button.primary {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.cta-button.primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.button-text {
  position: relative;
  z-index: 2;
}

.button-icon {
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cta-button:hover .button-icon {
  transform: translateX(3px);
}

/* ========================================
   RESPONSIVE DESIGN FOR LERNMETHODEN
   ======================================== */

@media (max-width: 1024px) {
  .methoden-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .lernmethoden-title {
    font-size: 3rem;
  }

  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .lernmethoden-modern {
    padding: 6rem 0;
  }

  .lernmethoden-container {
    padding: 0 1rem;
  }

  .lernmethoden-title {
    font-size: 2.5rem;
  }

  .lernmethoden-description {
    font-size: 1.1rem;
  }

  .methoden-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .methode-card {
    padding: 2rem;
  }

  .visual-icon {
    width: 70px;
    height: 70px;
  }

  .visual-icon .icon {
    font-size: 1.75rem;
  }

  .methode-title {
    font-size: 1.375rem;
  }

  .lernmethoden-cta {
    padding: 3rem 2rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-description {
    font-size: 1.1rem;
  }

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

  .cta-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .lernmethoden-modern {
    padding: 4rem 0;
  }

  .lernmethoden-title {
    font-size: 2rem;
  }

  .lernmethoden-description {
    font-size: 1rem;
  }

  .methode-card {
    padding: 1.5rem;
  }

  .visual-icon {
    width: 60px;
    height: 60px;
  }

  .visual-icon .icon {
    font-size: 1.5rem;
  }

  .methode-title {
    font-size: 1.25rem;
  }

  .methode-description {
    font-size: 0.9rem;
  }

  .lernmethoden-cta {
    padding: 2rem 1.5rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .cta-button {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* ========================================
   MODERN TESTIMONIALS SECTION STYLES
   ======================================== */

.testimonials-modern {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  overflow: hidden;
}

.testimonials-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.testimonials-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(147, 51, 234, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(16, 185, 129, 0.05) 0%,
      transparent 50%
    );
  background-size: 600px 600px;
  animation: patternMove 25s linear infinite;
}

.testimonials-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #3b82f6;
  transition: all 0.3s ease;
}

.testimonials-badge:hover {
  background: rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
}

.testimonials-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #1e293b;
  font-family: var(--fuente-secundaria);
}

.testimonials-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #10b981);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(59, 130, 246, 0.2);
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
}

.star {
  color: #fbbf24;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover .star {
  transform: scale(1.1);
}

.rating-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
}

.testimonial-content {
  margin-bottom: 2rem;
}

.testimonial-text {
  font-style: italic;
  line-height: 1.7;
  color: #475569;
  font-size: 1rem;
  position: relative;
}

.testimonial-text::before {
  content: "\201C";
  font-size: 3rem;
  color: #3b82f6;
  position: absolute;
  top: -10px;
  left: -10px;
  opacity: 0.3;
  font-family: serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.avatar-text {
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.25rem 0;
  font-family: var(--fuente-secundaria);
}

.author-title {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0 0 0.5rem 0;
  font-weight: 500;
}

.author-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #94a3b8;
}

.location-icon {
  font-size: 0.8rem;
}

.testimonials-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 0.5rem;
  line-height: 1;
  font-family: var(--fuente-secundaria);
}

.stat-label {
  font-size: 1rem;
  color: #64748b;
  font-weight: 600;
}

/* ========================================
   RESPONSIVE DESIGN FOR MODERN TESTIMONIALS
   ======================================== */

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonials-title {
    font-size: 3rem;
  }

  .testimonials-stats {
    gap: 2rem;
  }

  .stat-item {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .testimonials-modern {
    padding: 6rem 0;
  }

  .testimonials-container {
    padding: 0 1rem;
  }

  .testimonials-title {
    font-size: 2.5rem;
  }

  .testimonials-description {
    font-size: 1.1rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
  }

  .avatar-text {
    font-size: 1rem;
  }

  .author-name {
    font-size: 1rem;
  }

  .testimonials-stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .stat-item {
    width: 100%;
    max-width: 300px;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .testimonials-modern {
    padding: 4rem 0;
  }

  .testimonials-title {
    font-size: 2rem;
  }

  .testimonials-description {
    font-size: 1rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-rating {
    gap: 0.75rem;
  }

  .star {
    font-size: 1.1rem;
  }

  .rating-text {
    font-size: 1rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .author-avatar {
    width: 45px;
    height: 45px;
  }

  .avatar-text {
    font-size: 0.9rem;
  }

  .author-name {
    font-size: 0.95rem;
  }

  .author-title {
    font-size: 0.85rem;
  }

  .author-location {
    font-size: 0.8rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }
}

/* ========================================
   MODERN CONTACT SECTION STYLES
   ======================================== */

.contact-modern {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  overflow: hidden;
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contact-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 20%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(147, 51, 234, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(16, 185, 129, 0.05) 0%,
      transparent 50%
    );
  background-size: 600px 600px;
  animation: patternMove 25s linear infinite;
}

.contact-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #60a5fa;
  transition: all 0.3s ease;
}

.contact-badge:hover {
  background: rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
}

.contact-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
  font-family: var(--fuente-secundaria);
}

.contact-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

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

.phone-link,
.email-link {
  color: #60a5fa;
  text-decoration: none;
  transition: all 0.3s ease;
}

.phone-link:hover,
.email-link:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.125rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.action-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

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

.action-button.primary {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.action-button.primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.action-button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
}

.action-button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.button-text {
  position: relative;
  z-index: 2;
}

.button-icon {
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.action-button:hover .button-icon {
  transform: translateX(3px);
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.feature-icon {
  font-size: 1.1rem;
  color: #10b981;
}

.feature-text {
  font-size: 0.95rem;
}

.contact-map {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  overflow: hidden;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 16px;
}

.map-info {
  text-align: center;
}

.map-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
  font-family: var(--fuente-secundaria);
}

.map-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 1rem;
}

/* ========================================
   RESPONSIVE DESIGN FOR MODERN CONTACT
   ======================================== */

@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .contact-modern {
    padding: 6rem 0;
  }

  .contact-container {
    padding: 0 1rem;
  }

  .contact-title {
    font-size: 2.5rem;
  }

  .contact-description {
    font-size: 1.1rem;
  }

  .card-title {
    font-size: 1.375rem;
  }

  .action-buttons {
    flex-direction: column;
  }

  .action-button {
    width: 100%;
  }

  .contact-map {
    padding: 1.5rem;
  }

  .map-container iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .contact-modern {
    padding: 4rem 0;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-description {
    font-size: 1rem;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .card-description {
    font-size: 0.9rem;
  }

  .contact-details {
    gap: 0.75rem;
  }

  .detail-label {
    font-size: 0.85rem;
  }

  .detail-value {
    font-size: 0.9rem;
  }

  .action-button {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }

  .feature-item {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .contact-map {
    padding: 1rem;
  }

  .map-container iframe {
    height: 250px;
  }

  .map-title {
    font-size: 1.25rem;
  }

  .map-description {
    font-size: 0.9rem;
  }
}

/* ========================================
   MODERN FOOTER STYLES
   ======================================== */

.footer-modern {
  background: linear-gradient(
    135deg,
    var(--color-primario) 0%,
    var(--color-primario-oscuro) 100%
  );
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.footer-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.5),
    transparent
  );
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-logo-link:hover {
  transform: translateY(-2px);
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--gradiente-hero);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
  transition: all 0.3s ease;
}

.footer-logo-link:hover .logo-icon {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.logo-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  font-family: var(--fuente-secundaria);
}

.logo-domain {
  font-size: 1rem;
  color: #60a5fa;
  font-weight: 500;
}

.footer-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 400px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 1px;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 0.25rem 0;
  position: relative;
}

.footer-link::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: #3b82f6;
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #60a5fa;
  padding-left: 12px;
}

.footer-link:hover::before {
  width: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-info {
  flex: 1;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.contact-icon {
  font-size: 1rem;
  color: #60a5fa;
  width: 20px;
  text-align: center;
}

.contact-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #60a5fa;
  text-decoration: underline;
}

.contact-text {
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   RESPONSIVE DESIGN FOR MODERN FOOTER
   ======================================== */

@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .footer-modern {
    padding: 3rem 0 2rem;
  }

  .footer-container {
    padding: 0 1rem;
  }

  .footer-main {
    gap: 2.5rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-description {
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

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

@media (max-width: 480px) {
  .footer-modern {
    padding: 2.5rem 0 1.5rem;
  }

  .footer-logo-link {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .logo-icon {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }

  .logo-name {
    font-size: 1.25rem;
  }

  .logo-domain {
    font-size: 0.9rem;
  }

  .footer-description {
    font-size: 0.9rem;
  }

  .footer-title {
    font-size: 1rem;
  }

  .footer-link {
    font-size: 0.9rem;
  }

  .contact-item {
    font-size: 0.85rem;
  }
}

/* ========================================
   MODERN PRIVACY PAGE STYLES
   ======================================== */

.privacy-hero {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.privacy-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(147, 51, 234, 0.1) 0%,
      transparent 50%
    );
  z-index: 1;
}

.privacy-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.privacy-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #60a5fa;
  transition: all 0.3s ease;
}

.privacy-badge:hover {
  background: rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
}

.badge-icon {
  font-size: 1.2rem;
}

.privacy-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
  font-family: var(--fuente-secundaria);
}

.privacy-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.privacy-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.meta-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.meta-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.meta-value {
  font-size: 1rem;
  color: white;
  font-weight: 600;
}

.privacy-content {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.privacy-document {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.privacy-section {
  padding: 3rem;
  border-bottom: 1px solid #e2e8f0;
}

.privacy-section:last-child {
  border-bottom: none;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-family: var(--fuente-secundaria);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 2px;
}

.section-intro {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.subsection {
  margin-bottom: 2.5rem;
}

.subsection:last-child {
  margin-bottom: 0;
}

.subsection-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  font-family: var(--fuente-secundaria);
}

.info-card {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  font-size: 2rem;
}

.info-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  font-family: var(--fuente-secundaria);
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info-label {
  font-weight: 600;
  color: #475569;
  min-width: 100px;
}

.info-value {
  color: #1e293b;
  font-weight: 500;
}

.info-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.info-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.legal-basis {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.basis-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.basis-item:hover {
  border-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.basis-icon {
  font-size: 1.5rem;
  color: #10b981;
  margin-top: 0.25rem;
}

.basis-content strong {
  display: block;
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.basis-content p {
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.data-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.data-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.data-item:hover {
  border-color: #3b82f6;
  transform: translateY(-2px);
}

.data-icon {
  font-size: 1.25rem;
  color: #3b82f6;
}

.data-text {
  color: #475569;
  font-weight: 500;
}

.required-data {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.data-category {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
}

.category-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  font-family: var(--fuente-secundaria);
}

.data-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.data-category li {
  padding: 0.5rem 0;
  color: #64748b;
  border-bottom: 1px solid #f1f5f9;
}

.data-category li:last-child {
  border-bottom: none;
}

.purposes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.purpose-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.purpose-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.purpose-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.purpose-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  font-family: var(--fuente-secundaria);
}

.purpose-card p {
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.security-measures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.security-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.security-item:hover {
  border-color: #10b981;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.security-icon {
  font-size: 1.5rem;
  color: #10b981;
  margin-top: 0.25rem;
}

.security-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-family: var(--fuente-secundaria);
}

.security-content p {
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.right-item {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.right-item:hover {
  transform: translateY(-2px);
  border-color: #8b5cf6;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.1);
}

.right-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.right-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-family: var(--fuente-secundaria);
}

.right-item p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.cookie-purposes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.cookie-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.cookie-icon {
  font-size: 1.25rem;
  color: #f59e0b;
}

.cookie-text {
  color: #475569;
  font-weight: 500;
}

.privacy-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.privacy-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-icon {
  font-size: 1rem;
  color: #3b82f6;
  width: 20px;
  text-align: center;
}

.contact-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.update-info {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.update-info p {
  margin: 0.5rem 0;
  color: #475569;
  font-weight: 500;
}

/* ========================================
   RESPONSIVE DESIGN FOR PRIVACY PAGE
   ======================================== */

@media (max-width: 1024px) {
  .privacy-title {
    font-size: 3rem;
  }

  .privacy-meta {
    gap: 1.5rem;
  }

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

@media (max-width: 768px) {
  .privacy-hero {
    padding: 4rem 0;
  }

  .privacy-container {
    padding: 0 1rem;
  }

  .privacy-title {
    font-size: 2.5rem;
  }

  .privacy-description {
    font-size: 1.1rem;
  }

  .privacy-meta {
    flex-direction: column;
    align-items: center;
  }

  .privacy-section {
    padding: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .purposes-grid,
  .rights-grid,
  .security-measures {
    grid-template-columns: 1fr;
  }

  .required-data {
    grid-template-columns: 1fr;
  }
}

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

  .privacy-title {
    font-size: 2rem;
  }

  .privacy-description {
    font-size: 1rem;
  }

  .privacy-section {
    padding: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .subsection-title {
    font-size: 1.25rem;
  }

  .info-card {
    padding: 1.5rem;
  }

  .purpose-card,
  .right-item {
    padding: 1.5rem;
  }
}

/* ========================================
   MODERN TERMS PAGE STYLES
   ======================================== */

.terms-hero {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.terms-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(147, 51, 234, 0.1) 0%,
      transparent 50%
    );
  z-index: 1;
}

.terms-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.terms-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.terms-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #60a5fa;
  transition: all 0.3s ease;
}

.terms-badge:hover {
  background: rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
}

.terms-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
  font-family: var(--fuente-secundaria);
}

.terms-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.terms-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.terms-content {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.terms-document {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.terms-section {
  padding: 3rem;
  border-bottom: 1px solid #e2e8f0;
}

.terms-section:last-child {
  border-bottom: none;
}

.contract-parties {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.party-card {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.party-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.party-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.party-icon {
  font-size: 2rem;
}

.party-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  font-family: var(--fuente-secundaria);
}

.party-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.detail-label {
  font-weight: 600;
  color: #475569;
  min-width: 100px;
}

.detail-value {
  color: #1e293b;
  font-weight: 500;
}

.detail-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.detail-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.service-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  font-family: var(--fuente-secundaria);
}

.service-card p {
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.levels-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.level-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.level-item:hover {
  border-color: #8b5cf6;
  transform: translateY(-2px);
}

.level-badge {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 40px;
  text-align: center;
}

.level-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
  font-family: var(--fuente-secundaria);
}

.level-content p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.step-item:hover {
  border-color: #10b981;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.step-number {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-family: var(--fuente-secundaria);
}

.step-content p {
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.conditions-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.condition-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.condition-item:hover {
  border-color: #3b82f6;
  transform: translateX(4px);
}

.condition-icon {
  font-size: 1.25rem;
  color: #10b981;
}

.condition-item p {
  color: #475569;
  margin: 0;
  font-weight: 500;
}

.pricing-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.pricing-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-family: var(--fuente-secundaria);
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.price-type {
  color: #475569;
  font-weight: 500;
}

.price-amount {
  color: #1e293b;
  font-weight: 700;
  font-size: 1.1rem;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.payment-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.payment-icon {
  font-size: 1.25rem;
  color: #3b82f6;
}

.payment-text {
  color: #475569;
  font-weight: 500;
}

.cancellation-rules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.rule-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
}

.rule-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-family: var(--fuente-secundaria);
}

.rule-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.rule-period {
  color: #475569;
  font-weight: 500;
}

.rule-refund {
  color: #1e293b;
  font-weight: 600;
}

.liability-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.liability-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
}

.liability-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-family: var(--fuente-secundaria);
}

.liability-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.liability-card li {
  padding: 0.75rem 0;
  color: #64748b;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
  padding-left: 1.5rem;
}

.liability-card li:last-child {
  border-bottom: none;
}

.liability-card li::before {
  content: "•";
  color: #3b82f6;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.privacy-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.privacy-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.privacy-icon {
  font-size: 1.25rem;
  color: #10b981;
}

.privacy-text {
  color: #475569;
  font-weight: 500;
}

.terms-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.terms-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.final-provisions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.provision-item {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
}

.provision-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  font-family: var(--fuente-secundaria);
}

.provision-item p {
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.contact-support {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.support-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
}

.support-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-family: var(--fuente-secundaria);
}

.support-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.support-icon {
  font-size: 1rem;
  color: #3b82f6;
  width: 20px;
  text-align: center;
}

.support-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.support-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.support-text {
  color: #475569;
  font-weight: 500;
}

/* ========================================
   MODERN COOKIES PAGE STYLES
   ======================================== */

.cookies-hero {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cookies-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(147, 51, 234, 0.1) 0%,
      transparent 50%
    );
  z-index: 1;
}

.cookies-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cookies-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cookies-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #60a5fa;
  transition: all 0.3s ease;
}

.cookies-badge:hover {
  background: rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
}

.cookies-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
  font-family: var(--fuente-secundaria);
}

.cookies-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.cookies-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookies-content {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.cookies-document {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.cookies-section {
  padding: 3rem;
  border-bottom: 1px solid #e2e8f0;
}

.cookies-section:last-child {
  border-bottom: none;
}

.cookie-explanation {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.explanation-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.explanation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.explanation-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.explanation-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  font-family: var(--fuente-secundaria);
}

.explanation-card p {
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.cookie-purposes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.purpose-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.purpose-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.purpose-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.purpose-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  font-family: var(--fuente-secundaria);
}

.purpose-card p {
  color: #64748b;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.purpose-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.purpose-card li {
  padding: 0.5rem 0;
  color: #64748b;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
  padding-left: 1.5rem;
}

.purpose-card li:last-child {
  border-bottom: none;
}

.purpose-card li::before {
  content: "•";
  color: #3b82f6;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.category-card {
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.category-card.essential {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 1px solid #fecaca;
}

.category-card.functional {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #bae6fd;
}

.category-card.analytics {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #bbf7d0;
}

.category-card.marketing {
  background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
  border: 1px solid #fde68a;
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.category-icon {
  font-size: 1.5rem;
}

.category-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  font-family: var(--fuente-secundaria);
}

.category-badge {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: auto;
}

.category-content p {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.cookie-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-name {
  color: #1e293b;
  font-weight: 500;
}

.cookie-duration {
  color: #64748b;
  font-size: 0.9rem;
}

.third-party-cookies {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.provider-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.provider-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.provider-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.provider-icon {
  font-size: 1.5rem;
  color: #3b82f6;
}

.provider-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  font-family: var(--fuente-secundaria);
}

.provider-details p {
  color: #64748b;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.provider-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.provider-info:last-child {
  border-bottom: none;
}

.info-label {
  color: #475569;
  font-weight: 500;
}

.info-value {
  color: #1e293b;
  font-weight: 500;
}

.privacy-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.privacy-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.cookie-management {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.management-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
}

.management-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  font-family: var(--fuente-secundaria);
}

.management-card p {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.browser-instructions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.browser-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.browser-icon {
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.browser-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-family: var(--fuente-secundaria);
}

.browser-content p {
  color: #64748b;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.banner-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.feature-icon {
  font-size: 1.25rem;
  color: #10b981;
}

.feature-text {
  color: #475569;
  font-weight: 500;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.right-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.right-card:hover {
  transform: translateY(-2px);
  border-color: #8b5cf6;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.1);
}

.right-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.right-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-family: var(--fuente-secundaria);
}

.right-card p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.impact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.impact-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
}

.impact-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-family: var(--fuente-secundaria);
}

.impact-consequences {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.consequence-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.consequence-item.negative {
  background: #fef2f2;
  border-color: #fecaca;
}

.consequence-item.neutral {
  background: #fefce8;
  border-color: #fde68a;
}

.consequence-icon {
  font-size: 1.25rem;
}

.consequence-item.negative .consequence-icon {
  color: #dc2626;
}

.consequence-item.neutral .consequence-icon {
  color: #d97706;
}

.consequence-text {
  color: #475569;
  font-weight: 500;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-icon {
  font-size: 1rem;
  color: #3b82f6;
  width: 20px;
  text-align: center;
}

.contact-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* ========================================
   RESPONSIVE DESIGN FOR TERMS & COOKIES
   ======================================== */

@media (max-width: 1024px) {
  .terms-title,
  .cookies-title {
    font-size: 3rem;
  }

  .terms-meta,
  .cookies-meta {
    gap: 1.5rem;
  }

  .services-grid,
  .levels-list,
  .rights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .terms-hero,
  .cookies-hero {
    padding: 4rem 0;
  }

  .terms-container,
  .cookies-container {
    padding: 0 1rem;
  }

  .terms-title,
  .cookies-title {
    font-size: 2.5rem;
  }

  .terms-description,
  .cookies-description {
    font-size: 1.1rem;
  }

  .terms-meta,
  .cookies-meta {
    flex-direction: column;
    align-items: center;
  }

  .terms-section,
  .cookies-section {
    padding: 2rem;
  }

  .contract-parties,
  .services-grid,
  .levels-list,
  .process-steps,
  .pricing-info,
  .cancellation-rules,
  .liability-info,
  .final-provisions,
  .contact-support,
  .cookie-purposes,
  .third-party-cookies,
  .cookie-management,
  .impact-info,
  .payment-methods {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .terms-hero,
  .cookies-hero {
    padding: 3rem 0;
  }

  .terms-title,
  .cookies-title {
    font-size: 2rem;
  }

  .terms-description,
  .cookies-description {
    font-size: 1rem;
  }

  .terms-section,
  .cookies-section {
    padding: 1.5rem;
  }

  .party-card,
  .service-card,
  .pricing-card,
  .rule-card,
  .liability-card,
  .support-card,
  .explanation-card,
  .purpose-card,
  .provider-card,
  .management-card,
  .impact-card {
    padding: 1.5rem;
  }
}

/* ========================================
   MODERN HEADER STYLES
======================================== */

/* Body padding for fixed header */
body {
  padding-top: 80px;
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
}

/* Modern Header Container */
.navbar-modern {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 80px;
}

.navbar-modern.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-container-modern {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Modern Brand Logo */
.navbar-brand-modern {
  flex-shrink: 0;
}

.brand-link-modern {
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.brand-link-modern:hover {
  transform: scale(1.05);
}

.brand-logo-modern {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon-modern {
  font-size: 2rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

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

.brand-name-modern {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  letter-spacing: -0.025em;
}

.brand-domain-modern {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6366f1;
  margin-top: -2px;
}

/* Modern Navigation */
.navbar-nav-modern {
  display: flex;
  align-items: center;
}

.nav-wrapper-modern {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-item-modern {
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: #4a5568;
}

.nav-item-modern:hover {
  color: #6366f1;
  background: rgba(99, 102, 241, 0.08);
  transform: translateY(-1px);
}

.nav-item-modern.active {
  color: #6366f1;
  background: rgba(99, 102, 241, 0.12);
  font-weight: 600;
}

.nav-item-modern.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  border-radius: 1px;
}

.nav-label-modern {
  position: relative;
  z-index: 1;
}

/* Modern CTA Button */
.navbar-cta-modern {
  display: flex;
  align-items: center;
}

.cta-button-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

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

.cta-button-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.cta-text-modern {
  position: relative;
  z-index: 1;
}

.cta-icon-modern {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.cta-button-modern:hover .cta-icon-modern {
  transform: translateX(3px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle-modern {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.mobile-menu-toggle-modern:hover {
  background: rgba(99, 102, 241, 0.1);
}

.hamburger-line-modern {
  width: 20px;
  height: 2px;
  background: #4a5568;
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.mobile-menu-toggle-modern.active .hamburger-line-modern:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle-modern.active .hamburger-line-modern:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle-modern.active .hamburger-line-modern:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-toggle-modern.active {
  background: rgba(99, 102, 241, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .navbar-container-modern {
    padding: 0 1.5rem;
    justify-content: center;
  }

  .nav-wrapper-modern {
    gap: 1.5rem;
  }

  .nav-item-modern {
    padding: 0.625rem 0.875rem;
    font-size: 0.9rem;
  }

  .cta-button-modern {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .navbar-modern {
    height: 70px;
  }

  .navbar-container-modern {
    padding: 0 1rem;
  }

  .navbar-nav-modern {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: block;
  }

  .navbar-nav-modern.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-wrapper-modern {
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
  }

  .nav-item-modern {
    width: 100%;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
  }

  .navbar-cta-modern {
    display: none;
  }

  .mobile-menu-toggle-modern {
    display: flex;
    display: none;
  }

  .brand-name-modern {
    font-size: 1.25rem;
  }

  .logo-icon-modern {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .navbar-container-modern {
    padding: 0 0.75rem;
  }

  .brand-name-modern {
    font-size: 1.125rem;
  }

  .brand-domain-modern {
    font-size: 0.75rem;
  }
}

/* ========================================
   MODERN YOGA HERO SECTION
======================================== */

.yoga-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--color-sage) 0%,
    var(--color-lotus) 50%,
    var(--color-ocean) 100%
  );
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1) 0%,
    rgba(139, 92, 246, 0.1) 50%,
    rgba(224, 242, 254, 0.1) 100%
  );
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(16, 185, 129, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(132, 204, 22, 0.1) 0%,
      transparent 50%
    );
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-lotus {
  position: absolute;
  font-size: 2rem;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.floating-lotus:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-lotus:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-lotus:nth-child(3) {
  top: 40%;
  left: 5%;
  animation-delay: 4s;
}

.floating-lotus:nth-child(4) {
  top: 80%;
  right: 25%;
  animation-delay: 1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primario);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
  font-size: 1.2rem;
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--color-texto);
}

.title-main {
  display: block;
  color: var(--color-texto);
}

.title-highlight {
  display: block;
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-acento)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-sub {
  display: block;
  color: var(--color-texto-claro);
  font-weight: 600;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-texto-claro);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: var(--color-texto);
}

.feature-icon {
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-acento)
  );
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primario);
  text-decoration: none;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--color-primario);
  backdrop-filter: blur(10px);
}

.cta-secondary:hover {
  background: var(--color-primario);
  color: white;
  transform: translateY(-2px);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.yoga-pose-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 400px;
  width: 100%;
}

.pose-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.pose-silhouette {
  font-size: 4rem;
  z-index: 2;
  position: relative;
}

.energy-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring {
  position: absolute;
  border: 2px solid var(--color-acento);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}

.ring-1 {
  width: 120px;
  height: 120px;
  top: -60px;
  left: -60px;
  animation-delay: 0s;
}

.ring-2 {
  width: 160px;
  height: 160px;
  top: -80px;
  left: -80px;
  animation-delay: 0.5s;
}

.ring-3 {
  width: 200px;
  height: 200px;
  top: -100px;
  left: -100px;
  animation-delay: 1s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.1;
  }
}

.pose-info {
  text-align: center;
}

.pose-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 0.5rem;
}

.pose-time {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--color-acento);
  font-weight: 600;
  margin-bottom: 1rem;
}

.pose-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--color-texto-claro);
}

.join-session {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-acento)
  );
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.join-session:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-title {
    font-size: 3rem;
  }

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

@media (max-width: 768px) {
  .yoga-hero {
    min-height: 90vh;
    padding: 2rem 0;
  }

  .hero-container {
    padding: 0 1rem;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
  }

  .yoga-pose-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  .floating-lotus {
    font-size: 1.5rem;
  }
}

/* ========================================
   MODERN YOGA COURSES SECTION
======================================== */

.yoga-courses {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--color-fondo-secundario) 0%,
    var(--color-lotus) 50%,
    var(--color-ocean) 100%
  );
  overflow: hidden;
}

.courses-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.courses-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.05) 0%,
    rgba(139, 92, 246, 0.05) 50%,
    rgba(224, 242, 254, 0.05) 100%
  );
}

.courses-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 30% 20%,
      rgba(16, 185, 129, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 50%
    );
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-om {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.2;
  animation: float-slow 8s ease-in-out infinite;
}

.floating-om:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.floating-om:nth-child(2) {
  top: 70%;
  right: 15%;
  animation-delay: 3s;
}

.floating-om:nth-child(3) {
  top: 40%;
  left: 5%;
  animation-delay: 6s;
}

@keyframes float-slow {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(180deg);
  }
}

.courses-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.courses-header {
  text-align: center;
  margin-bottom: 4rem;
}

.courses-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primario);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
  font-size: 1.2rem;
}

.courses-title {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-texto);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.courses-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-texto-claro);
  max-width: 600px;
  margin: 0 auto;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.course-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.course-card.popular {
  border: 2px solid var(--color-acento);
  transform: scale(1.05);
}

.course-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-label {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(
    135deg,
    var(--color-acento),
    var(--color-acento-claro)
  );
  color: white;
  border-radius: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
}

.course-image {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.course-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
}

.course-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-acento)
  );
  color: white;
  border-radius: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}

.course-content {
  text-align: center;
  margin-bottom: 2rem;
}

.course-title {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 0.5rem;
}

.course-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: var(--color-texto-claro);
  margin-bottom: 1.5rem;
}

.course-price {
  margin-bottom: 1.5rem;
}

.price-amount {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primario);
  line-height: 1;
}

.price-period {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--color-texto-claro);
  margin-left: 0.5rem;
}

.course-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-texto-claro);
  margin-bottom: 2rem;
}

.course-features {
  text-align: left;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: var(--color-texto);
}

.feature-icon {
  color: var(--color-primario);
  font-weight: 700;
  font-size: 1.1rem;
}

.course-footer {
  text-align: center;
}

.course-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.foundation-btn {
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-primario-claro)
  );
  color: white;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.foundation-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.advanced-btn {
  background: linear-gradient(
    135deg,
    var(--color-acento),
    var(--color-acento-claro)
  );
  color: white;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.advanced-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

.courses-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.guarantee-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.guarantee-icon {
  font-size: 2rem;
  color: var(--color-primario);
}

.guarantee-content {
  flex: 1;
}

.guarantee-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 0.5rem;
}

.guarantee-text {
  font-family: "Inter", sans-serif;
  color: var(--color-texto-claro);
  line-height: 1.5;
}

.courses-cta {
  flex-shrink: 0;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primario);
  text-decoration: none;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--color-primario);
  backdrop-filter: blur(10px);
}

.cta-link:hover {
  background: var(--color-primario);
  color: white;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .courses-grid {
    gap: 2rem;
  }

  .course-card {
    padding: 2rem;
  }

  .courses-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .yoga-courses {
    padding: 4rem 0;
  }

  .courses-container {
    padding: 0 1rem;
  }

  .courses-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .course-card.popular {
    transform: none;
  }

  .course-card.popular:hover {
    transform: translateY(-8px);
  }

  .courses-title {
    font-size: 2rem;
  }

  .courses-description {
    font-size: 1.1rem;
  }

  .courses-footer {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

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

@media (max-width: 480px) {
  .course-card {
    padding: 1.5rem;
  }

  .course-title {
    font-size: 1.5rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .floating-om {
    font-size: 2rem;
  }
}

/* ========================================
   PRICING PAGE STYLES
======================================== */

/* Pricing Hero Section */
.pricing-hero {
  position: relative;
  padding: 8rem 0 6rem;
  background: linear-gradient(
    135deg,
    var(--color-sage) 0%,
    var(--color-lotus) 50%,
    var(--color-ocean) 100%
  );
  overflow: hidden;
}

.pricing-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.pricing-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1) 0%,
    rgba(139, 92, 246, 0.1) 50%,
    rgba(224, 242, 254, 0.1) 100%
  );
}

.pricing-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(16, 185, 129, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 50%
    );
}

.pricing-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.pricing-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.pricing-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primario);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--color-texto);
}

.title-line-1 {
  display: block;
  color: var(--color-texto);
}

.title-line-2 {
  display: block;
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-acento)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-texto-claro);
  max-width: 600px;
  margin: 0 auto;
}

/* Detailed Pricing Section */
.detailed-pricing {
  position: relative;
  padding: 6rem 0;
  background: var(--color-fondo);
  overflow: hidden;
}

.pricing-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.pricing-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.03) 0%,
    rgba(139, 92, 246, 0.03) 50%,
    rgba(224, 242, 254, 0.03) 100%
  );
}

.pricing-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 30% 20%,
      rgba(16, 185, 129, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(139, 92, 246, 0.05) 0%,
      transparent 50%
    );
}

.pricing-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-title {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-texto);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.pricing-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-texto-claro);
  max-width: 600px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular-plan {
  border: 2px solid var(--color-acento);
  transform: scale(1.05);
}

.pricing-card.popular-plan:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-label {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(
    135deg,
    var(--color-acento),
    var(--color-acento-claro)
  );
  color: white;
  border-radius: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
}

.plan-image {
  text-align: center;
  margin-bottom: 2rem;
}

.plan-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
}

.plan-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-acento)
  );
  color: white;
  border-radius: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}

.plan-content {
  margin-bottom: 2rem;
}

.plan-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 0.5rem;
  text-align: center;
}

.plan-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: var(--color-texto-claro);
  margin-bottom: 2rem;
  text-align: center;
}

.price-section {
  text-align: center;
  margin-bottom: 2rem;
}

.price-amount {
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-primario);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.price-period {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  color: var(--color-texto-claro);
  margin-bottom: 0.5rem;
}

.price-savings {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--color-exito);
  font-weight: 600;
}

.plan-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-texto-claro);
  margin-bottom: 2rem;
  text-align: center;
}

.features-section {
  margin-bottom: 2rem;
}

.features-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 1.5rem;
  text-align: center;
}

.features-list {
  display: grid;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: var(--color-texto);
}

.feature-icon {
  color: var(--color-primario);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.plan-details {
  background: var(--color-fondo-secundario);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-family: "Inter", sans-serif;
}

.detail-item:last-child {
  margin-bottom: 0;
}

.detail-label {
  font-weight: 600;
  color: var(--color-texto);
}

.detail-value {
  font-weight: 500;
  color: var(--color-texto-claro);
}

.plan-footer {
  text-align: center;
}

.plan-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
  margin-bottom: 1rem;
}

.foundation-button {
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-primario-claro)
  );
  color: white;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.foundation-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.advanced-button {
  background: linear-gradient(
    135deg,
    var(--color-acento),
    var(--color-acento-claro)
  );
  color: white;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.advanced-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

.plan-note {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--color-texto-claro);
  font-style: italic;
}

/* Comparison Section */
.comparison-section {
  margin-bottom: 4rem;
}

.comparison-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-texto);
  text-align: center;
  margin-bottom: 3rem;
}

.comparison-table {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-acento)
  );
  color: white;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
}

.comparison-header > div {
  padding: 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-header > div:last-child {
  border-right: none;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--color-borde);
  font-family: "Inter", sans-serif;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row > div {
  padding: 1.5rem;
  text-align: center;
  border-right: 1px solid var(--color-borde);
}

.comparison-row > div:last-child {
  border-right: none;
}

.comparison-feature {
  font-weight: 600;
  color: var(--color-texto);
  text-align: left !important;
}

.comparison-value {
  font-weight: 500;
  color: var(--color-texto-claro);
}

/* FAQ Section */
.faq-section {
  margin-bottom: 2rem;
}

.faq-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-texto);
  text-align: center;
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.faq-question {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-texto);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.faq-answer {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-texto-claro);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .pricing-grid {
    gap: 2rem;
  }

  .pricing-card {
    padding: 2.5rem;
  }

  .pricing-title {
    font-size: 2.5rem;
  }

  .pricing-hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .pricing-hero {
    padding: 6rem 0 4rem;
  }

  .pricing-container {
    padding: 0 1rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-card.popular-plan {
    transform: none;
  }

  .pricing-card.popular-plan:hover {
    transform: translateY(-8px);
  }

  .pricing-title {
    font-size: 2rem;
  }

  .pricing-hero-title {
    font-size: 2.5rem;
  }

  .pricing-hero-description {
    font-size: 1.1rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-feature {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .pricing-card {
    padding: 2rem;
  }

  .plan-title {
    font-size: 2rem;
  }

  .price-amount {
    font-size: 3rem;
  }

  .pricing-hero-title {
    font-size: 2rem;
  }

  .comparison-header,
  .comparison-row {
    font-size: 0.8rem;
  }

  .comparison-header > div,
  .comparison-row > div {
    padding: 1rem;
  }
}

/* ========================================
   MODERN YOGA BENEFITS SECTION
======================================== */

.yoga-benefits {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--color-fondo-secundario) 0%,
    var(--color-lotus) 50%,
    var(--color-ocean) 100%
  );
  overflow: hidden;
}

.benefits-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.benefits-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.05) 0%,
    rgba(139, 92, 246, 0.05) 50%,
    rgba(224, 242, 254, 0.05) 100%
  );
}

.benefits-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(16, 185, 129, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 50%
    );
}

.benefits-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.benefits-header {
  text-align: center;
  margin-bottom: 4rem;
}

.benefits-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primario);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefits-title {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-texto);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.benefits-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-texto-claro);
  max-width: 600px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.benefit-image {
  margin-bottom: 2rem;
  position: relative;
}

.benefit-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
}

.benefit-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-acento)
  );
  color: white;
  border-radius: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}

.benefit-content {
  text-align: center;
}

.benefit-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.benefit-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-texto-claro);
  margin-bottom: 2rem;
}

.benefit-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  min-width: 80px;
}

.stat-number {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primario);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-texto-claro);
  line-height: 1.2;
}

.benefits-cta {
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-texto-claro);
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-acento)
  );
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .benefits-grid {
    gap: 2rem;
  }

  .benefit-card {
    padding: 2.5rem;
  }

  .benefits-title {
    font-size: 2.5rem;
  }

  .benefit-stats {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .yoga-benefits {
    padding: 4rem 0;
  }

  .benefits-container {
    padding: 0 1rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefits-title {
    font-size: 2rem;
  }

  .benefits-description {
    font-size: 1.1rem;
  }

  .benefit-card {
    padding: 2rem;
  }

  .benefit-title {
    font-size: 1.5rem;
  }

  .benefit-description {
    font-size: 1rem;
  }

  .benefit-stats {
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-description {
    font-size: 1.1rem;
  }

  .benefits-cta {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .benefit-card {
    padding: 1.5rem;
  }

  .benefit-title {
    font-size: 1.25rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* ========================================
   MODERN YOGA TESTIMONIALS SECTION
======================================== */

.yoga-testimonials {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--color-fondo) 0%,
    var(--color-sage) 50%,
    var(--color-lotus) 100%
  );
  overflow: hidden;
}

.testimonials-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.testimonials-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.05) 0%,
    rgba(139, 92, 246, 0.05) 50%,
    rgba(224, 242, 254, 0.05) 100%
  );
}

.testimonials-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(16, 185, 129, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 50%
    );
}

.testimonials-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primario);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonials-title {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-texto);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.testimonials-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-texto-claro);
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
}

.star {
  color: #fbbf24;
  font-size: 1.25rem;
  line-height: 1;
}

.rating-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-texto);
}

.testimonial-content {
  margin-bottom: 2rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-texto);
  font-style: italic;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: var(--color-primario);
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-acento)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.author-info {
  flex: 1;
}

.author-name {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.author-title {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--color-texto-claro);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.author-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  color: var(--color-texto-claro);
}

.location-icon {
  font-size: 0.9rem;
}

.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.stats-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primario);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-texto-claro);
  line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .testimonials-grid {
    gap: 2rem;
  }

  .testimonial-card {
    padding: 2.5rem;
  }

  .testimonials-title {
    font-size: 2.5rem;
  }

  .testimonials-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .yoga-testimonials {
    padding: 4rem 0;
  }

  .testimonials-container {
    padding: 0 1rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials-title {
    font-size: 2rem;
  }

  .testimonials-description {
    font-size: 1.1rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .testimonial-text::before {
    font-size: 3rem;
    top: -0.5rem;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
  }

  .avatar-text {
    font-size: 1rem;
  }

  .author-name {
    font-size: 1.1rem;
  }

  .testimonials-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stats-card {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-rating {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .testimonial-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .author-avatar {
    width: 45px;
    height: 45px;
  }

  .avatar-text {
    font-size: 0.9rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }
}

/* ========================================
   MODERN YOGA CONTACT SECTION
======================================== */

.yoga-contact {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--color-fondo) 0%,
    var(--color-sage) 50%,
    var(--color-lotus) 100%
  );
  overflow: hidden;
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.contact-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.05) 0%,
    rgba(139, 92, 246, 0.05) 50%,
    rgba(224, 242, 254, 0.05) 100%
  );
}

.contact-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 30% 20%,
      rgba(16, 185, 129, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 50%
    );
}

.contact-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primario);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-title {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-texto);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-texto-claro);
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  margin-bottom: 4rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-acento)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.icon {
  font-size: 2rem;
  color: white;
}

.card-content {
  text-align: center;
}

.card-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.card-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-texto-claro);
  margin-bottom: 1.5rem;
}

.contact-details {
  text-align: left;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-family: "Inter", sans-serif;
}

.detail-item:last-child {
  margin-bottom: 0;
}

.detail-label {
  font-weight: 600;
  color: var(--color-texto);
  font-size: 0.9rem;
  min-width: 100px;
  margin-right: 1rem;
}

.detail-value {
  font-weight: 500;
  color: var(--color-texto-claro);
  font-size: 0.9rem;
  text-align: right;
  flex: 1;
}

.phone-link,
.email-link {
  color: var(--color-primario);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.phone-link:hover,
.email-link:hover {
  color: var(--color-acento);
}

.contact-actions {
  text-align: center;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.action-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  justify-content: center;
}

.action-button.primary {
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-acento)
  );
  color: white;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.action-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.action-button.secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primario);
  border: 2px solid var(--color-primario);
  backdrop-filter: blur(10px);
}

.action-button.secondary:hover {
  background: var(--color-primario);
  color: white;
  transform: translateY(-2px);
}

.action-button.whatsapp {
  background: #25d366;
  color: white;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.action-button.whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.contact-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: var(--color-texto);
  font-size: 0.9rem;
}

.feature-icon {
  color: var(--color-primario);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-map {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 16px;
}

.map-info {
  text-align: center;
}

.map-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.map-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-texto-claro);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.map-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.map-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: var(--color-texto);
  font-size: 0.9rem;
}

.map-feature-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.map-feature-text {
  line-height: 1.3;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-info {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-card {
    padding: 2rem;
  }

  .contact-title {
    font-size: 2.5rem;
  }

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

  .action-button {
    width: 100%;
    max-width: 300px;
  }

  .contact-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .map-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .yoga-contact {
    padding: 4rem 0;
  }

  .contact-container {
    padding: 0 1rem;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-description {
    font-size: 1.1rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .card-description {
    font-size: 0.9rem;
  }

  .detail-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .detail-label {
    min-width: auto;
    margin-right: 0;
  }

  .detail-value {
    text-align: left;
  }

  .contact-features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .map-container iframe {
    height: 300px;
  }

  .map-title {
    font-size: 1.5rem;
  }

  .map-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-card {
    padding: 1.25rem;
  }

  .card-icon {
    width: 60px;
    height: 60px;
  }

  .icon {
    font-size: 1.5rem;
  }

  .action-button {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }

  .map-container iframe {
    height: 250px;
  }
}

/* ========================================
   MODERN YOGA FOOTER
======================================== */

.yoga-footer {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--color-fondo) 0%,
    var(--color-sage) 50%,
    var(--color-lotus) 100%
  );
  overflow: hidden;
  margin-top: 6rem;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.footer-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.05) 0%,
    rgba(139, 92, 246, 0.05) 50%,
    rgba(224, 242, 254, 0.05) 100%
  );
}

.footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(16, 185, 129, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 50%
    );
}

.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

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

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-logo-link:hover {
  transform: translateY(-2px);
}

.logo-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: "Poppins", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-texto);
  line-height: 1;
}

.logo-domain {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primario);
  line-height: 1;
}

.footer-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-texto-claro);
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.social-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.footer-navigation {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.footer-column {
  min-width: 0;
}

.footer-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 0.75rem;
}

.footer-list li:last-child {
  margin-bottom: 0;
}

.footer-link {
  color: var(--color-texto-claro);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  line-height: 1.4;
}

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

.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
  margin: 2rem 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-contact {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.contact-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-link {
  color: var(--color-texto-claro);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--color-primario);
}

.contact-text {
  color: var(--color-texto-claro);
  font-weight: 500;
}

.footer-copyright {
  text-align: right;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.copyright-text {
  font-size: 1rem;
  color: var(--color-texto);
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.copyright-subtext {
  font-size: 0.9rem;
  color: var(--color-texto-claro);
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-navigation {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-copyright {
    text-align: left;
    padding: 1.25rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 3rem 1rem 2rem;
  }

  .footer-navigation {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-contact {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-item {
    font-size: 0.85rem;
  }

  .footer-social {
    gap: 0.75rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .social-icon {
    font-size: 1.1rem;
  }

  .footer-copyright {
    text-align: left;
    padding: 1.25rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 2rem 1rem 1.5rem;
  }

  .footer-main {
    gap: 2rem;
  }

  .logo-name {
    font-size: 1.5rem;
  }

  .logo-domain {
    font-size: 1.1rem;
  }

  .footer-description {
    font-size: 1rem;
  }

  .footer-title {
    font-size: 1.1rem;
  }

  .footer-link {
    font-size: 0.9rem;
  }

  .copyright-text {
    font-size: 0.85rem;
  }

  .copyright-subtext {
    font-size: 0.75rem;
  }

  .footer-copyright {
    padding: 1rem 1.25rem;
  }

  .copyright-text {
    font-size: 0.9rem;
  }

  .copyright-subtext {
    font-size: 0.8rem;
  }
}

/* ========================================
   MODERN YOGA COOKIE BANNER
======================================== */

.yoga-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(
    135deg,
    var(--color-fondo) 0%,
    var(--color-sage) 50%,
    var(--color-lotus) 100%
  );
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.yoga-cookie-banner.show {
  transform: translateY(0);
}

.cookie-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.cookie-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.05) 0%,
    rgba(139, 92, 246, 0.05) 50%,
    rgba(224, 242, 254, 0.05) 100%
  );
}

.cookie-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 20%,
      rgba(16, 185, 129, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 50%
    );
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-cookie {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.3;
  animation: floatCookie 6s ease-in-out infinite;
}

.floating-cookie:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-cookie:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-cookie:nth-child(3) {
  top: 40%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes floatCookie {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

.cookie-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-acento)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.icon-emoji {
  font-size: 2rem;
  line-height: 1;
}

.cookie-text {
  flex: 1;
  min-width: 0;
}

.cookie-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.cookie-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-texto-claro);
  margin: 0;
}

.cookie-actions {
  flex-shrink: 0;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-acento)
  );
  color: white;
  border: none;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

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

.btn-text {
  font-weight: 600;
}

.btn-icon {
  font-size: 1.1rem;
  line-height: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cookie-container {
    padding: 1rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
  }

  .cookie-icon {
    width: 50px;
    height: 50px;
  }

  .icon-emoji {
    font-size: 1.5rem;
  }

  .cookie-title {
    font-size: 1.1rem;
  }

  .cookie-description {
    font-size: 0.9rem;
  }

  .cookie-btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .cookie-container {
    padding: 0.75rem;
  }

  .cookie-content {
    padding: 1rem 1.25rem;
  }

  .cookie-icon {
    width: 45px;
    height: 45px;
  }

  .icon-emoji {
    font-size: 1.25rem;
  }

  .cookie-title {
    font-size: 1rem;
  }

  .cookie-description {
    font-size: 0.85rem;
  }

  .cookie-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}
