/* Landing Efeasy – estilos específicos; tokens/base/componentes en shared */
@import url('shared/breakpoints.css');
@import url('shared/base.css');
@import url('shared/components.css');
/* Media queries: 640 / 768 / 767 / 960 / 1024 px – ver shared/breakpoints.css */

body.nav-open { overflow: hidden; }

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.875rem 0;
  background: linear-gradient(180deg, var(--white) 0%, rgba(255,255,255,0) 100%);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 0.25rem 0;
  min-height: 44px;
}
.logo-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 4px; }
.logo-link img { height: 44px; width: auto; display: block; }

/* Hamburger: solo móvil */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover { background: var(--surface); color: var(--accent); }
.nav-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (min-width: 768px) { .nav-toggle { display: none; } }

.nav-toggle-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 20px;
  height: 14px;
}
.nav-toggle-inner span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
header.nav-open .nav-toggle-inner span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
header.nav-open .nav-toggle-inner span:nth-child(2) {
  opacity: 0;
}
header.nav-open .nav-toggle-inner span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav: móvil = panel lateral, escritorio = inline */
nav {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 0.25rem; align-items: center; }
nav li { margin: 0; }
nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
nav a:hover { color: var(--accent); background: var(--accent-soft); }
nav a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: var(--radius-sm); }

@media (max-width: 767px) {
  .header-inner { flex-wrap: wrap; }
  .nav-panel-label { display: none; }
  nav {
    position: fixed;
    inset: 0;
    margin: 0;
    padding: 0;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-end;
    pointer-events: none;
    z-index: 99;
    visibility: hidden;
  }
  header.nav-open nav { pointer-events: auto; visibility: visible; }

  /* Backdrop: cierre al tocar fuera */
  .nav-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
    cursor: pointer;
  }
  header.nav-open .nav-backdrop { opacity: 1; }

  /* Panel a pantalla completa */
  .nav-panel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    box-shadow: none;
  }
  header.nav-open .nav-panel { transform: translateX(0); }

  /* Cabecera del menú: logo + botón cerrar */
  .nav-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    padding: 1rem 1.25rem;
    padding-top: max(1rem, env(safe-area-inset-top));
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
    border-bottom: 1px solid var(--border);
  }
  .nav-panel-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
  }
  .nav-panel-logo img { height: 40px; width: auto; display: block; }
  .nav-panel-logo:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 4px; }
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background 0.2s, color 0.2s;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-close:hover { background: var(--accent-soft); color: var(--accent); }
  .nav-close:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
  .nav-close-icon {
    position: relative;
    width: 20px;
    height: 20px;
    display: block;
  }
  .nav-close-icon span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
  }
  .nav-close-icon span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
  .nav-close-icon span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

  /* Cuerpo del menú */
  .nav-panel-body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1;
    padding: 1.5rem 1.25rem 2rem;
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
  }
  .nav-panel-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 0.5rem 0.25rem;
  }
  .nav-panel-label:not(:first-child) { margin-top: 1.75rem; }

  .nav-panel ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .nav-panel .nav-links li,
  .nav-panel .nav-actions li { border: none; }
  .nav-panel .nav-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.5rem; }

  .nav-panel a {
    padding: 1rem 1.25rem;
    font-size: 1.0625rem;
    min-height: 52px;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s, transform 0.15s;
  }
  .nav-panel a:active { transform: scale(0.98); }
  .nav-panel .nav-links a { color: var(--text); font-weight: 500; }
  .nav-panel .nav-links a:hover { background: var(--surface); color: var(--accent); }
  .nav-panel .btn { justify-content: center; min-height: 52px; font-size: 1rem; }
  .nav-panel .nav-actions .btn-ghost,
  .nav-panel .nav-actions .btn-primary { min-width: 100%; width: 100%; }
  .nav-panel .nav-actions .btn-ghost { background: var(--surface); color: var(--text); }
  .nav-panel .nav-actions .btn-ghost:hover { background: var(--accent-soft); color: var(--accent); }

  /* Entrada escalonada de ítems */
  .nav-panel-body .nav-links li,
  .nav-panel-body .nav-actions li {
    opacity: 0;
    transform: translateY(8px);
    animation: navItemIn 0.35s var(--ease) forwards;
  }
  header.nav-open .nav-panel-body .nav-links li:nth-child(1) { animation-delay: 0.06s; }
  header.nav-open .nav-panel-body .nav-links li:nth-child(2) { animation-delay: 0.12s; }
  header.nav-open .nav-panel-body .nav-actions li:nth-child(1) { animation-delay: 0.2s; }
  header.nav-open .nav-panel-body .nav-actions li:nth-child(2) { animation-delay: 0.26s; }
}
@keyframes navItemIn {
  to { opacity: 1; transform: translateX(0); }
}

@media (min-width: 768px) {
  nav {
    position: static;
    padding: 0;
    background: transparent;
    overflow: visible;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-backdrop { display: none; }
  .nav-panel-header { display: none; }
  .nav-panel {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: static;
    width: auto;
    max-width: none;
    padding: 0;
    gap: 0.5rem;
    box-shadow: none;
    transform: none;
    overflow: visible;
    inset: auto;
    height: auto;
    background: transparent;
  }
  .nav-panel-body {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 0.5rem;
    flex: none;
  }
  .nav-panel-label { display: none; }
  .nav-panel .nav-links,
  .nav-panel .nav-actions { display: flex; flex-direction: row; gap: 0.25rem; }
  .nav-panel .nav-actions { margin-top: 0; margin-left: 0.25rem; }
}

/* Landing: overrides de botones (shared/components.css base) */
.btn { padding: 0.7rem 1.5rem; min-height: 44px; font-size: 0.9375rem; font-weight: 600; }
.btn-primary:hover, .btn-primary:focus { transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
nav .btn-primary:hover, nav .btn-primary:focus, nav .btn-primary:active { color: var(--white); }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5.5rem 0 4rem;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 70%;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--color-secundario-light) 0%, rgba(31, 111, 229, 0.08) 50%, transparent 70%);
  pointer-events: none;
  opacity: 0.9;
}
.hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .hero-inner { flex-wrap: nowrap; gap: 3.5rem; }
}
.hero-media {
  flex-shrink: 0;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  animation: fadeUp 0.7s var(--ease-out) both;
}
@media (min-width: 768px) {
  .hero-media { max-width: 320px; box-shadow: var(--shadow-lg); }
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-content { position: relative; flex: 1; min-width: 0; max-width: 42rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s var(--ease-out) both;
}
.hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
  animation: fadeUp 0.7s var(--ease-out) 0.08s both;
}
.hero h1 .highlight { color: var(--color-secundario); }
.hero-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0 0 2rem;
  line-height: 1.65;
  animation: fadeUp 0.7s var(--ease-out) 0.16s both;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; animation: fadeUp 0.7s var(--ease-out) 0.24s both; }
.hero-cta .btn { min-width: 160px; }
.hero-cta .btn-primary { flex: 1; min-width: 200px; }
.scroll-hint {
  margin-top: 2.25rem;
  animation: fadeUp 0.7s var(--ease-out) 0.32s both;
}
.scroll-hint a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.scroll-hint a:hover { color: var(--accent); background: var(--accent-soft); }
.scroll-hint .arrow { display: inline-block; animation: bounce 2s var(--ease) infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

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

section { padding: var(--space-section) 0; scroll-margin-top: 5.5rem; }
section .section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
section h2 {
  font-size: clamp(1.875rem, 4.5vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
}
section .section-desc {
  color: var(--text-muted);
  max-width: 38rem;
  margin: 0 0 2.5rem;
  line-height: 1.7;
  font-size: 1.0625rem;
}
.value-section .section-desc { margin-bottom: 2.75rem; }
.features .section-desc { margin-bottom: 2.75rem; }

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .value-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 960px) { .value-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s var(--ease), transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease);
}
.value-card:hover {
  border-color: var(--color-secundario-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-accent);
}
.value-card:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.value-card.reveal { animation: fadeUp 0.6s var(--ease-out) both; }
.value-card.reveal:nth-child(1) { animation-delay: 0s; }
.value-card.reveal:nth-child(2) { animation-delay: 0.06s; }
.value-card.reveal:nth-child(3) { animation-delay: 0.12s; }
.value-card.reveal:nth-child(4) { animation-delay: 0.18s; }
.value-card .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  background: var(--accent-soft);
  color: var(--accent);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.value-card:hover .icon { background: rgba(31, 111, 229, 0.22); color: var(--blue); transform: scale(1.05); }
.value-card h3 { font-size: 1.125rem; font-weight: 600; margin: 0 0 0.5rem; color: var(--text); letter-spacing: -0.01em; }
.value-card p { font-size: 0.9375rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

.features { background: var(--surface); }
.feature-list { margin-top: 2.5rem; }
.feature-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.25s var(--ease);
}
.feature-item:hover { background: rgba(255, 255, 255, 0.6); }
.feature-item:last-child { border-bottom: 0; }
@media (min-width: 768px) {
  .feature-item { grid-template-columns: 1fr 1fr; gap: 3rem; padding: 2.75rem 0; }
  .feature-item:nth-child(even) .feature-text { order: 2; }
  .feature-item:nth-child(even) .feature-visual { order: 1; }
}
.feature-item.reveal .feature-text { animation: fadeUp 0.6s var(--ease-out) both; }
.feature-item.reveal .feature-visual { animation: fadeUp 0.6s var(--ease-out) 0.08s both; }
.feature-item h3 { font-size: 1.3125rem; font-weight: 600; margin: 0 0 0.5rem; color: var(--text); letter-spacing: -0.02em; }
.feature-item p { color: var(--text-muted); margin: 0; line-height: 1.65; font-size: 1rem; }
.feature-visual {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.feature-item:hover .feature-visual {
  border-color: var(--color-secundario-light);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}
.feature-visual .num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
}
@media (min-width: 768px) { .feature-visual .num { font-size: 3rem; } }

/* Ventajas */
.benefits-section { background: var(--surface); }
.benefits-section .section-desc { margin-bottom: 2.75rem; }
.benefits-list { list-style: none; padding: 0; margin: 0; }
.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.benefit-item:last-child { border-bottom: 0; }
.benefit-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}
.benefit-item div { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.6; }
.benefit-item strong { color: var(--text); }
.benefit-item.reveal { animation: fadeUp 0.6s var(--ease-out) both; }

/* FAQ */
.faq-section .section-desc { margin-bottom: 2.75rem; }
.faq-list { margin: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 0; }
.faq-item.reveal { animation: fadeUp 0.5s var(--ease-out) both; }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  margin: 0;
  border: none;
  background: none;
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-question:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.faq-question::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.25s var(--ease);
}
.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-answer {
  margin: 0;
  padding: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.faq-answer[hidden] { display: none; }
.faq-answer a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.faq-answer a:hover { color: var(--color-secundario); }

.cta-block {
  text-align: center;
  padding: var(--space-section-lg) 0;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-card) 40%, var(--white) 100%);
  position: relative;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, var(--accent-soft) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0.6;
}
.cta-block .wrap { position: relative; z-index: 1; }
.cta-block h2 { margin-bottom: 1rem; }
.cta-block .section-desc { margin-left: auto; margin-right: auto; margin-bottom: 2rem; max-width: 30rem; }
.cta-block .btn { padding: 0.9rem 2.25rem; font-size: 1rem; min-height: 50px; border-radius: var(--radius-sm); }
.cta-block .btn:hover { transform: translateY(-2px); }

footer {
  padding: var(--space-section) 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; } }
.footer-brand .logo-link { display: inline-flex; }
.footer-brand .logo-link img { height: 40px; opacity: 0.9; transition: opacity 0.2s; }
.footer-brand .logo-link:hover img { opacity: 1; }
.footer-brand p { color: var(--text-muted); font-size: 0.9375rem; margin: 0.75rem 0 0; max-width: 300px; line-height: 1.65; }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 0 0 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
}
.footer-col a:hover { color: var(--accent); border-bottom-color: var(--color-secundario-light); }
.footer-col a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.footer-col li { margin-bottom: 0.25rem; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
  transition: transform 0.3s var(--ease);
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.cookie-banner-text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.5;
}
.cookie-banner-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-text a:hover { color: var(--color-secundario); }
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.cookie-banner-btn { font-size: 0.875rem; padding: 0.5rem 1.25rem; white-space: nowrap; }
@media (min-width: 768px) {
  .cookie-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .cookie-banner-text { flex: 1; margin-right: 1rem; }
  .cookie-banner-actions { flex-shrink: 0; }
}
