.cookie-banner {
/* Posicionamiento */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;

  /* Modelo de caja */
  display: none;

  /* Relleno */
  padding: 20px;

  /* Fondos */
  background: linear-gradient(135deg, #001943 0%, #2267D8 100%);

  /* Tipografía */
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Colores y efectos */
  color: white;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);

  /* Transiciones y animaciones */
  transition: transform 0.3s ease-in-out;

  /* Otras propiedades */
  transform: translateY(100%);}

.cookie-banner.show {
/* Otras propiedades */
  transform: translateY(0);}

.cookie-banner-content {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;

  /* Dimensiones */
  max-width: 1200px;

  /* Márgenes */
  margin: 0 auto;}

.cookie-icon {
/* Flexbox y Grid */
  flex-shrink: 0;

  /* Tipografía */
  font-size: 2rem;}

.cookie-text {
/* Flexbox y Grid */
  flex: 1;

  /* Dimensiones */
  min-width: 300px;}

.cookie-text h3 {
/* Márgenes */
  margin: 0 0 8px 0;

  /* Tipografía */
  font-size: 1.2rem;
  font-weight: 600;}

.cookie-text p {
/* Márgenes */
  margin: 0;

  /* Tipografía */
  font-size: 0.9rem;
  line-height: 1.4;

  /* Colores y efectos */
  opacity: 0.95;}

.cookie-text a {
/* Tipografía */
  text-decoration: underline;
  font-weight: 500;

  /* Colores y efectos */
  color: #E879F9;}

.cookie-text a:hover {
/* Colores y efectos */
  color: #F3E8FF;}

.cookie-buttons {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;}

.cookie-buttons button {
/* Dimensiones */
  min-width: 100px;

  /* Relleno */
  padding: 12px 24px;

  /* Bordes */
  border: none;
  border-radius: 25px;

  /* Tipografía */
  font-weight: 600;
  font-size: 0.9rem;

  /* Transiciones y animaciones */
  transition: all 0.2s ease;

  /* Interactividad */
  cursor: pointer;}

.btn-reject {
/* Bordes */
  border: 2px solid rgba(255, 255, 255, 0.3);

  /* Fondos */
  background: transparent;

  /* Colores y efectos */
  color: white;}

.btn-reject:hover {
/* Bordes */
  border-color: rgba(255, 255, 255, 0.5);

  /* Fondos */
  background: rgba(255, 255, 255, 0.1);}

.btn-configure {
/* Bordes */
  border: 2px solid rgba(255, 255, 255, 0.3);

  /* Fondos */
  background: rgba(255, 255, 255, 0.2);

  /* Colores y efectos */
  color: white;}

.btn-configure:hover {
/* Bordes */
  border-color: rgba(255, 255, 255, 0.5);

  /* Fondos */
  background: rgba(255, 255, 255, 0.3);}

.btn-accept {
/* Bordes */
  border: 2px solid transparent;

  /* Fondos */
  background: linear-gradient(135deg, #EC4899 0%, #F97316 100%);

  /* Colores y efectos */
  color: white;}

.btn-accept:hover {
/* Fondos */
  background: linear-gradient(135deg, #DB2777 0%, #EA580C 100%);

  /* Colores y efectos */
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);

  /* Otras propiedades */
  transform: translateY(-1px);}

.cookie-modal {
/* Posicionamiento */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;

  /* Modelo de caja */
  display: none;

  /* Dimensiones */
  width: 100%;
  height: 100%;

  /* Tipografía */
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;}

.cookie-modal-overlay {
/* Posicionamiento */
  position: absolute;
  top: 0;
  left: 0;

  /* Dimensiones */
  width: 100%;
  height: 100%;

  /* Fondos */
  background: rgba(0, 0, 0, 0.7);

  /* Otras propiedades */
  backdrop-filter: blur(4px);}

.cookie-modal-content {
/* Posicionamiento */
  position: relative;

  /* Modelo de caja */
  overflow: hidden;

  /* Dimensiones */
  width: 90%;
  max-width: 600px;
  max-height: 80vh;

  /* Márgenes */
  margin: 5% auto;

  /* Relleno */
  padding: 0;

  /* Bordes */
  border-radius: 16px;

  /* Fondos */
  background: white;

  /* Colores y efectos */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);

  /* Transiciones y animaciones */
  animation: modalSlideIn 0.3s ease-out;}

.cookie-modal-header {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  justify-content: space-between;
  align-items: center;

  /* Relleno */
  padding: 24px;

  /* Fondos */
  background: linear-gradient(135deg, #001943 0%, #2267D8 100%);

  /* Colores y efectos */
  color: white;}

.cookie-modal-header h2 {
/* Márgenes */
  margin: 0;

  /* Tipografía */
  font-size: 1.5rem;
  font-weight: 600;

  /* Colores y efectos */
  color: white;}

.close-modal {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  justify-content: center;

  /* Dimensiones */
  width: 32px;
  height: 32px;

  /* Relleno */
  padding: 0;

  /* Bordes */
  border: none;
  border-radius: 50%;

  /* Fondos */
  background: none;

  /* Tipografía */
  font-size: 2rem;

  /* Colores y efectos */
  color: white;

  /* Transiciones y animaciones */
  transition: background-color 0.2s ease;

  /* Interactividad */
  cursor: pointer;}

.close-modal:hover {
/* Fondos */
  background: rgba(255, 255, 255, 0.2);}

.cookie-modal-body {
/* Modelo de caja */
  overflow-y: auto;

  /* Dimensiones */
  max-height: 50vh;

  /* Relleno */
  padding: 24px;}

.cookie-modal-body p {
/* Márgenes */
  margin: 0 0 16px 0;

  /* Tipografía */
  line-height: 1.6;

  /* Colores y efectos */
  color: #374151;}

.cookie-modal-body a {
/* Tipografía */
  text-decoration: none;
  font-weight: 500;

  /* Colores y efectos */
  color: #7C3AED;}

.cookie-modal-body a:hover {
/* Tipografía */
  text-decoration: underline;}

.cookie-categories {
/* Márgenes */
  margin: 24px 0;}

.cookie-category {
/* Márgenes */
  margin-bottom: 16px;

  /* Relleno */
  padding: 16px;

  /* Bordes */
  border-radius: 12px;
  border: 1px solid #E5E7EB;

  /* Fondos */
  background: #F9FAFB;}

.category-header {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  gap: 12px;}

.category-title {
/* Flexbox y Grid */
  flex: 1;

  /* Tipografía */
  font-weight: 600;

  /* Colores y efectos */
  color: #1F2937;}

.info-icon {
/* Tipografía */
  font-size: 1.1rem;

  /* Colores y efectos */
  opacity: 0.7;

  /* Transiciones y animaciones */
  transition: opacity 0.2s ease;

  /* Interactividad */
  cursor: help;}

.info-icon:hover {
/* Colores y efectos */
  opacity: 1;}

.cookie-switch {
/* Posicionamiento */
  position: relative;

  /* Modelo de caja */
  display: inline-block;

  /* Dimensiones */
  width: 50px;
  height: 24px;}

.cookie-switch input {
/* Dimensiones */
  width: 0;
  height: 0;

  /* Colores y efectos */
  opacity: 0;}

.slider {
/* Posicionamiento */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  /* Bordes */
  border-radius: 24px;

  /* Fondos */
  background-color: #CBD5E1;

  /* Transiciones y animaciones */
  transition: 0.3s;

  /* Interactividad */
  cursor: pointer;}

.slider:before {
/* Posicionamiento */
  position: absolute;
  left: 3px;
  bottom: 3px;

  /* Dimensiones */
  height: 18px;
  width: 18px;

  /* Bordes */
  border-radius: 50%;

  /* Fondos */
  background-color: white;

  /* Colores y efectos */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);

  /* Transiciones y animaciones */
  transition: 0.3s;

  /* Otras propiedades */
  content: "";}

input:checked + .slider {
/* Fondos */
  background: linear-gradient(135deg, #EC4899 0%, #F97316 100%);}

input:checked + .slider:before {
/* Otras propiedades */
  transform: translateX(26px);}

input:disabled + .slider {
/* Fondos */
  background: linear-gradient(135deg, #001943 0%, #2267D8 100%);

  /* Interactividad */
  cursor: not-allowed;}

input:disabled + .slider:before {
/* Otras propiedades */
  transform: translateX(26px);}

.cookie-modal-footer {
/* Relleno */
  padding: 24px;

  /* Bordes */
  border-top: 1px solid #E5E7EB;

  /* Fondos */
  background: #F9FAFB;

  /* Tipografía */
  text-align: center;}

.btn-save {
/* Dimensiones */
  min-width: 200px;

  /* Relleno */
  padding: 14px 32px;

  /* Bordes */
  border: none;
  border-radius: 25px;

  /* Fondos */
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);

  /* Tipografía */
  font-weight: 600;
  font-size: 1rem;

  /* Colores y efectos */
  color: white;

  /* Transiciones y animaciones */
  transition: all 0.2s ease;

  /* Interactividad */
  cursor: pointer;}

.btn-save:hover {
/* Fondos */
  background: linear-gradient(135deg, var(--color-dark-variant) 0%, #1E40AF 100%);

  /* Colores y efectos */
  box-shadow: 0 4px 12px rgba(34, 103, 216, 0.3);

  /* Otras propiedades */
  transform: translateY(-1px);}

.cookie-banner {
/* Transiciones y animaciones */
  animation: fadeIn 0.5s ease-in-out;}

.cookie-banner:focus-within, .cookie-modal:focus-within {
/* Otras propiedades */
  outline: 2px solid #7C3AED;
  outline-offset: 2px;}

button:focus {
/* Otras propiedades */
  outline: 2px solid #7C3AED;
  outline-offset: 2px;}

.floating-cookie-btn {
/* Posicionamiento */
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;

  /* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  justify-content: center;

  /* Dimensiones */
  width: 60px;
  height: 60px;

  /* Bordes */
  border: none;
  border-radius: 50%;

  /* Fondos */
  background: linear-gradient(135deg, #2267D8 0%, #001943 100%);

  /* Colores y efectos */
  box-shadow: 0 4px 20px rgba(34, 103, 216, 0.4);

  /* Transiciones y animaciones */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: cookiePulse 3s infinite;

  /* Interactividad */
  cursor: pointer;}

.floating-cookie-btn:hover {
/* Colores y efectos */
  box-shadow: 0 8px 30px rgba(34, 103, 216, 0.6);

  /* Transiciones y animaciones */
  animation: cookieBounce 0.6s ease-in-out;

  /* Otras propiedades */
  transform: translateY(-3px) scale(1.1);}

.floating-cookie-btn:active {
/* Otras propiedades */
  transform: translateY(-1px) scale(1.05);}

.cookie-icon {
/* Dimensiones */
  width: 48px;
  height: 48px;

  /* Transiciones y animaciones */
  animation: cookieBites 6s ease-in-out infinite, cookieJump 2s ease-in-out infinite;

  /* Otras propiedades */
  fill: #FFFFFF;}

.floating-cookie-btn:hover .cookie-icon {
/* Transiciones y animaciones */
  animation: cookieWiggle 0.5s ease-in-out;}