a article {
  cursor: pointer;
  transition: transform 0.1s ease;
}

a article:hover {
  transform: translateY(-1px);
}

a {
  text-decoration: none;
  color: inherit;
}

/* Ocultar todos los breakpoints por defecto */
.bp-xs, .bp-sm, .bp-md, .bp-lg { display: none; }
      
/* Mostrar solo el breakpoint actual */
@media (max-width: 47.9375em) { .bp-xs { display: inline; } }
@media (min-width: 48em) and (max-width: 63.9375em) { .bp-sm { display: inline; } }
@media (min-width: 64em) and (max-width: 74.9375em) { .bp-md { display: inline; } }
@media (min-width: 75em) { .bp-lg { display: inline; } }
/* app/assets/stylesheets/floating_footer.css */

/* Footer flotante en esquina inferior derecha */
.floating-footer {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 1000;
  
  /* Estilos base de PicoCSS */
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  
  /* Tamaño y espaciado */
  padding: 0.5rem 1rem;
  min-width: 400px;
  max-width: 600px;
  
  /* Transiciones suaves */
  transition: all 0.3s ease;
  opacity: 0.9;
}

.floating-footer:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Contenido del footer */
.floating-footer-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
  text-align: center;
}

.floating-footer-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.floating-footer-links a {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.75rem;
  padding: 0.2rem 0.4rem;
  border-radius: var(--border-radius);
  transition: background-color 0.2s ease;
}

.floating-footer-links a:hover {
  background-color: var(--primary-hover);
  color: var(--primary-inverse);
}

/* Versión compacta del footer */
.floating-footer.compact {
  padding: 0.4rem;
  min-width: auto;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.floating-footer.compact .floating-footer-content {
  display: none;
}

.floating-footer.compact .footer-toggle {
  display: block;
  font-size: 1.2rem;
}

.footer-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
}

/* Responsive: en móviles hacer más pequeño */
@media (max-width: 768px) {
  .floating-footer {
    bottom: 4rem; /* Espacio para navegación móvil */
    right: 0.5rem;
    min-width: 150px;
    font-size: 0.7rem;
  }
  
  .floating-footer-links a {
    font-size: 0.65rem;
    padding: 0.15rem 0.3rem;
  }
}

/* Tema oscuro */
@media (prefers-color-scheme: dark) {
  .floating-footer {
    background: var(--card-background-color);
    border-color: var(--card-border-color);
  }
}

/* Variante para Hotwire Native */
.native-app .floating-footer {
  bottom: 5rem; /* Más espacio en apps nativas */
}

/* Animación de entrada */
@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 0.9;
  }
}

.floating-footer {
  animation: slideInFromRight 0.5s ease-out;
}
/* ============================================
   BahBah Landing Page — Organic/Warm Aesthetic
   ============================================ */

/* --- Palette --- */
:root {
  --landing-cream: #FFF8F0;
  --landing-peach: #FFCBA4;
  --landing-peach-light: #FFE8D6;
  --landing-sage: #A8C5A0;
  --landing-sage-light: #E8F0E6;
  --landing-coral: #FF6B6B;
  --landing-coral-hover: #FF5252;
  --landing-lavender: #C4B5E0;
  --landing-text: #2D2D2D;
  --landing-muted: #6B7280;
  --landing-card-bg: #FFFFFF;
  --landing-card-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --landing-card-shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.1);
  --landing-radius: 20px;
  --landing-radius-sm: 14px;
  --font-display: "Nunito", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --landing-cream: #1a1a2e;
    --landing-peach: #4a3628;
    --landing-peach-light: #2a2030;
    --landing-sage: #2d4a2d;
    --landing-sage-light: #1e2e1e;
    --landing-coral: #FF6B6B;
    --landing-coral-hover: #FF8585;
    --landing-lavender: #5a4a7a;
    --landing-text: #E8E0D8;
    --landing-muted: #9CA3AF;
    --landing-card-bg: #222238;
    --landing-card-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --landing-card-shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.4);
  }
}

/* --- Landing page scope --- */
.landing-page {
  font-family: var(--font-body);
  color: var(--landing-text);
  /* Break out of PicoCSS .container */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow-x: hidden;
}

.landing-section {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.landing-section-alt {
  max-width: none;
}

.landing-section-alt .landing-section {
  padding-left: 0;
  padding-right: 0;
}

.landing-cta {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
}

/* ===== FLOATING NAV PILL ===== */
.landing-nav-pill {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(-120%);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.25rem;
  background: var(--landing-card-bg);
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

.landing-nav-pill.visible {
  transform: translateX(-50%) translateY(0);
}

.landing-nav-pill-brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  color: var(--landing-text);
  text-decoration: none;
}

.landing-nav-pill-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.landing-nav-pill-links a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--landing-muted);
  text-decoration: none;
  padding: 0.3rem 0.65rem;
  border-radius: 50px;
  transition: all 0.2s ease;
}

.landing-nav-pill-links a:hover {
  color: var(--landing-text);
  background: var(--landing-peach-light);
}

.landing-nav-pill-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 1rem !important;
  background: var(--landing-coral) !important;
  color: #fff !important;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700 !important;
  text-decoration: none;
  transition: all 0.2s ease;
}

.landing-nav-pill-cta:hover {
  background: var(--landing-coral-hover) !important;
  color: #fff !important;
}

/* ===== HERO ===== */
.landing-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--landing-cream) 0%, var(--landing-peach-light) 50%, var(--landing-cream) 100%);
  padding: 4rem 1.5rem 5rem;
  text-align: center;
  margin: -1rem -1rem 0;
}

.landing-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: var(--landing-peach);
  opacity: 0.2;
  border-radius: 62% 38% 70% 30% / 45% 55% 45% 55%;
  animation: blobFloat 12s ease-in-out infinite;
  pointer-events: none;
}

.landing-hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 350px;
  height: 350px;
  background: var(--landing-sage);
  opacity: 0.15;
  border-radius: 38% 62% 30% 70% / 55% 45% 55% 45%;
  animation: blobFloat 15s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(20px, -15px) rotate(5deg); }
  66% { transform: translate(-15px, 10px) rotate(-3deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.hero-logo {
  width: 120px;
  margin-bottom: 1.5rem;
  animation: fadeInBounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 900;
  color: var(--landing-text);
  margin-bottom: 0.25rem;
  animation: fadeInUp 0.6s ease both 0.2s;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--landing-muted);
  font-weight: 400;
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.6s ease both 0.35s;
}

.hero-sparkle {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--landing-coral);
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease both 0.45s;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s ease both 0.55s;
}

.btn-primary-landing {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--landing-coral);
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(255, 107, 107, 0.35);
}

.btn-primary-landing:hover {
  background: var(--landing-coral-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 107, 107, 0.45);
}

.btn-outline-landing {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--landing-text) !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  border: 2px solid var(--landing-text);
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-outline-landing:hover {
  background: var(--landing-text);
  color: var(--landing-cream) !important;
  transform: translateY(-2px);
}

.hero-badges {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease both 0.65s;
}

.hero-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--landing-card-bg);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--landing-muted);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Wave separator */
.landing-wave {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -2px;
}

.landing-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ===== SECTIONS ===== */
.landing-section {
  padding: 4rem 0;
}

.landing-section-alt {
  background: var(--landing-sage-light);
  padding: 4rem 1.5rem;
  margin: 0 -1rem;
  border-radius: 0;
}

.landing-section-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  text-align: center;
  margin-bottom: 0.5rem;
}

.landing-section-subtitle {
  font-family: var(--font-body);
  text-align: center;
  color: var(--landing-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CARDS ===== */
.landing-card {
  background: var(--landing-card-bg);
  border-radius: var(--landing-radius);
  padding: 2rem;
  box-shadow: var(--landing-card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.landing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--landing-card-shadow-hover);
}

.landing-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.landing-card-icon.peach { background: var(--landing-peach-light); color: #d97706; }
.landing-card-icon.sage { background: var(--landing-sage-light); color: #2d7a2d; }
.landing-card-icon.coral { background: #FFE5E5; color: var(--landing-coral); }
.landing-card-icon.lavender { background: #EDE8F5; color: #6B5B95; }

.landing-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.landing-card p {
  color: var(--landing-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Grid layouts */
.landing-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

@media (max-width: 768px) {
  .landing-grid-2 { grid-template-columns: 1fr; }
  .landing-grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .landing-grid-4 { grid-template-columns: 1fr; }
}

/* ===== INFO CARD (large) ===== */
.landing-info-card {
  background: var(--landing-card-bg);
  border-radius: var(--landing-radius);
  padding: 2.5rem;
  box-shadow: var(--landing-card-shadow);
  max-width: 720px;
  margin: 0 auto;
}

.landing-info-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.landing-info-card blockquote {
  border-left: 4px solid var(--landing-sage);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--landing-sage-light);
  border-radius: 0 var(--landing-radius-sm) var(--landing-radius-sm) 0;
  font-size: 1.05rem;
}

.landing-info-card blockquote mark {
  background: var(--landing-peach);
  padding: 0.1em 0.4em;
  border-radius: 4px;
}

.landing-orgs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.landing-org-tag {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background: var(--landing-peach-light);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--landing-text);
}

/* ===== RULES CARDS ===== */
.landing-rule-card {
  background: var(--landing-card-bg);
  border-radius: var(--landing-radius);
  padding: 2rem;
  box-shadow: var(--landing-card-shadow);
  border-left: 4px solid var(--landing-sage);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.landing-rule-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--landing-card-shadow-hover);
}

.landing-rule-card.warning {
  border-left-color: var(--landing-coral);
}

.landing-rule-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.landing-rule-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.landing-rule-card ul li {
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--landing-muted);
  line-height: 1.55;
}

.landing-rule-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--landing-sage);
}

.landing-rule-card.warning ul li::before {
  background: var(--landing-coral);
}

.landing-rule-card details summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--landing-text);
  margin-top: 0.75rem;
}

.landing-rule-card details ul li {
  font-size: 0.85rem;
}

.landing-rule-card footer {
  margin-top: 1rem;
}

.landing-rule-card footer small {
  font-size: 0.78rem;
  color: var(--landing-muted);
}

/* ===== AVOID GRID ===== */
.landing-avoid-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.landing-avoid-item {
  background: var(--landing-card-bg);
  border-radius: var(--landing-radius-sm);
  padding: 1.5rem;
  box-shadow: var(--landing-card-shadow);
  border-top: 3px solid var(--landing-coral);
  transition: transform 0.3s ease;
}

.landing-avoid-item:hover {
  transform: translateY(-3px);
}

.landing-avoid-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.landing-avoid-item h4 i {
  color: var(--landing-coral);
  margin-right: 0.4rem;
}

.landing-avoid-item p {
  font-size: 0.85rem;
  color: var(--landing-muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 600px) {
  .landing-avoid-grid { grid-template-columns: 1fr; }
}

/* ===== STEPS ===== */
.landing-steps {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  padding-left: 3.5rem;
}

.landing-steps::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--landing-peach), var(--landing-sage));
  border-radius: 2px;
}

.landing-step {
  position: relative;
  padding-bottom: 2rem;
}

.landing-step:last-child {
  padding-bottom: 0;
}

.landing-step-number {
  position: absolute;
  left: -3.5rem;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--landing-peach);
  color: var(--landing-text);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.landing-step h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.landing-step h4 i {
  color: var(--landing-sage);
  margin-right: 0.4rem;
}

.landing-step p {
  font-size: 0.9rem;
  color: var(--landing-muted);
  margin: 0;
  line-height: 1.5;
}

/* ===== CTA FINAL ===== */
.landing-cta {
  background: linear-gradient(135deg, var(--landing-sage-light) 0%, var(--landing-peach-light) 100%);
  border-radius: var(--landing-radius);
  padding: 3.5rem 2rem;
  text-align: center;
  margin: 3rem 0 2rem;
}

.landing-cta h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 0.5rem;
}

.landing-cta p {
  color: var(--landing-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* ===== TIPS ===== */
.landing-tips {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.landing-tips li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: var(--landing-muted);
  line-height: 1.5;
}

.landing-tips li i {
  color: var(--landing-sage);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.landing-tips-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--landing-muted);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInBounce {
  0% { opacity: 0; transform: scale(0.8) translateY(20px); }
  60% { transform: scale(1.05) translateY(-4px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.3s; }

.reveal-stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .landing-hero {
    padding: 3rem 1rem 4rem;
  }

  .landing-hero::before {
    width: 250px;
    height: 250px;
    top: -80px;
    right: -60px;
  }

  .landing-hero::after {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -40px;
  }

  .landing-section {
    padding: 2.5rem 0;
  }

  .landing-section-alt {
    padding: 2.5rem 1rem;
  }

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

  .landing-cta {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-landing,
  .btn-outline-landing {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }

  .hero-badges {
    gap: 0.4rem;
  }

  .hero-badge {
    font-size: 0.68rem;
    padding: 0.25rem 0.6rem;
  }

  .landing-steps {
    padding-left: 3rem;
  }

  .landing-step-number {
    left: -3rem;
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */


details ul {
  list-style: none !important;
  padding-left: 0 !important;
}

details ul li {
  list-style: none !important;
  margin-left: 0;
}


.fa-square-check {
  animation: checkAnimation 0.3s ease-in-out;
}

@keyframes checkAnimation {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Alertas flotantes */
.alerts-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  max-width: 400px;
  pointer-events: none;
}

.floating-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  pointer-events: auto;
  transform: translateX(100%);
  opacity: 0;
  animation: slideInAlert 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.floating-alert.alert-dismissing {
  animation: slideOutAlert 0.3s ease-in forwards;
}

.alert-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  font-weight: 500;
}

.alert-content i {
  font-size: 18px;
  flex-shrink: 0;
}

.alert-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 12px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
  color: inherit;
  opacity: 0.7;
}

.alert-close:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.2);
}

/* Tipos de alerta */
.alert-success {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border-left: 4px solid #34d399;
}

.alert-error {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  border-left: 4px solid #f87171;
}

.alert-warning {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  border-left: 4px solid #fbbf24;
}

.alert-info {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border-left: 4px solid #60a5fa;
}

/* Animaciones */
@keyframes slideInAlert {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutAlert {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 480px) {
  .alerts-container {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }

  .floating-alert {
    padding: 14px 16px;
    font-size: 14px;
  }

  .alert-content i {
    font-size: 16px;
  }
}


