/* ---------- Tokens (identidad MapOfLogic Studio) ---------- */
:root {
  --background: #000000;
  --foreground: #F3F4F6;
  --card: #111827;
  --primary: #EF4444;
  --primary-foreground: #ffffff;
  --muted-foreground: #9CA3AF;
  --border: #1F2937;
  --radius: 0.6rem;
  --accent: #EF4444;
  --accent-dark: #DC2626;
  --accent-dim: rgba(239, 68, 68, 0.14);
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.font-display {
  font-family: var(--font-display);
}

.muted {
  color: #d1d5db;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-narrow {
  max-width: 896px;
}

.main {
  padding-top: 5rem;
}

.section {
  padding: 5rem 1rem;
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.section-desc {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 42rem;
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  font-size: 0.875rem;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: var(--radius);
}

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

.btn-primary:hover {
  background: #e5e5e5;
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.12);
}

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

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
}

.btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-arrow .icon-arrow {
  transition: transform 0.2s ease;
}

.btn-arrow:hover .icon-arrow {
  transform: translateX(4px);
}

.link {
  color: #fff;
}

.link:hover {
  text-decoration: underline;
}

/* ---------- Logo ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  display: inline-flex;
  flex-shrink: 0;
}

/* Isotipo real (app icon de marca) — flex-shrink:0 + object-fit evitan la distorsión */
.logo-mark-img {
  width: 2.15rem;
  height: 2.15rem;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
  border-radius: 0.5rem;
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.6);
  transition: filter 0.25s ease, transform 0.25s ease;
}
.logo:hover .logo-mark-img { filter: drop-shadow(0 0 7px rgba(239, 68, 68, 0.4)); }

.logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header.hidden {
  transform: translateX(-50%) translateY(-150%);
  opacity: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  padding: 0.6rem 0.75rem 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 19, 31, 0.7);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.header-inner.scrolled {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(14, 19, 31, 0.82);
  box-shadow: 0 18px 44px -10px rgba(0, 0, 0, 0.7);
}

.header .logo {
  transition: transform 0.2s ease;
}

.header .logo:hover {
  transform: scale(1.05);
}

.nav {
  display: none;
  align-items: center;
  gap: 0.35rem;
}

.nav-link {
  position: relative;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.15rem;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.22s ease;
}

.nav-link:hover {
  color: var(--foreground);
  background: rgba(255, 255, 255, 0.04);
}

.nav-link:hover::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Conmutador de idioma (ES/EN) — siempre visible, también en móvil */
.lang-switch {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--muted-foreground);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.lang-switch:hover { color: var(--foreground); border-color: var(--accent); }

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

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* contenido abajo -> la animación domina la mitad superior */
  padding: 6rem 1rem 4.5rem;
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 1;
  /* campo de partículas amplio centrado en la zona superior (la animación protagonista) */
  -webkit-mask-image: radial-gradient(ellipse 92% 78% at 50% 30%, #000 62%, transparent 100%);
  mask-image: radial-gradient(ellipse 92% 78% at 50% 30%, #000 62%, transparent 100%);
}

#particle-canvas {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--background); /* mismo color que la página: sin parches */
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-bottom: 2rem;
}

.hero-inner {
  max-width: 56rem;
  margin: 0 auto;
}

.hero-subtitle {
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 2rem;
  text-wrap: balance;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* ---------- Logos slider ---------- */
.logos {
  margin-top: 4rem;
}

.logos-label p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.logos-slider-wrap {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0;
}

.logos-slider {
  display: flex;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 7rem;
  padding-right: 7rem;
  animation: scroll-x 40s linear infinite;
  will-change: transform;
}

.logos-slider:hover .logos-track {
  animation-duration: 20s;
}

@keyframes scroll-x {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.logo-img {
  width: auto;
  filter: invert(1);
  opacity: 0.6;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.logo-img:hover {
  opacity: 1;
}

.h16 { height: 16px; }
.h20 { height: 20px; }
.h24 { height: 24px; }
.h28 { height: 28px; }

.blur-edge {
  position: absolute;
  top: 0;
  height: 100%;
  width: 5rem;
  pointer-events: none;
  z-index: 2;
}

.blur-left {
  left: 0;
  background: linear-gradient(90deg, var(--background) 0%, transparent 100%);
}

.blur-right {
  right: 0;
  background: linear-gradient(270deg, var(--background) 0%, transparent 100%);
}

@media (min-width: 768px) {
  .logos {
    display: flex;
    align-items: center;
    max-width: 72rem;
    margin: 4rem auto 2rem;
  }
  .logos-label {
    max-width: 11rem;
    border-right: 1px solid var(--border);
    padding-right: 1.5rem;
    text-align: right;
  }
  .logos-slider-wrap {
    width: calc(100% - 11rem);
  }
}

/* ---------- Features / Bento ---------- */
.features {
  background: var(--background);
}

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

.bento-card {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  background: #0d0d0d;
  border: 1px solid rgba(64, 64, 64, 0.2);
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.bento-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.bento-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: skewX(-12deg) translateX(-150%);
  animation: shine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine {
  0% { transform: skewX(-12deg) translateX(-150%); }
  100% { transform: skewX(-12deg) translateX(250%); }
}

.bento-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-title {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.bento-value {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.bento-sub {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

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

/* ---------- Pricing ---------- */
.pricing {
  background: var(--background);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.price-card {
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(64, 64, 64, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.3s ease;
}

.price-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-card.popular {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.price-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.price-head {
  text-align: center;
  margin-bottom: 2rem;
}

.price-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.price-amount {
  margin-bottom: 1rem;
}

.price-value {
  font-size: 2.25rem;
  font-weight: 700;
}

.price-period {
  color: var(--muted-foreground);
}

.price-desc {
  color: #d1d5db;
}

.price-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-features li {
  display: flex;
  align-items: center;
  color: #d1d5db;
}

.price-features svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
  color: #fff;
}

.price-card .btn {
  width: 100%;
}

.btn-soft {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-soft:hover {
  background: rgba(255, 255, 255, 0.1);
}

.pricing-foot {
  text-align: center;
  margin-top: 3rem;
}

.pricing-note {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.pricing-subnote {
  font-size: 0.875rem;
  color: #737373;
}

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

/* ---------- FAQ ---------- */
.faq {
  background: var(--background);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(64, 64, 64, 0.2);
  border-radius: var(--radius);
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.faq-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--muted-foreground);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

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

.faq-answer-inner {
  padding: 0 1.5rem 1rem;
  color: #d1d5db;
  line-height: 1.6;
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  padding: 5rem 1rem;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #111827, #000000 50%, #1f2937);
}

.cta-paths {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cta-glow {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
  animation: pulse 4s ease-in-out infinite;
}

.glow-1 {
  top: 0;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(59, 130, 246, 0.1);
}

.glow-2 {
  bottom: 0;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(168, 85, 247, 0.1);
  animation-delay: 1s;
}

.glow-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16rem;
  height: 16rem;
  background: rgba(34, 211, 238, 0.1);
  animation-delay: 2s;
}

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

.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.5) 70%);
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 3rem 1rem;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-desc {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
  margin: 0 auto 2rem;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(8px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--background);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 1rem;
}

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

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  max-width: 28rem;
}

.footer-quote {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

.footer-col h3 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-brand {
    grid-column: span 2;
  }
}

/* ---------- CTA floating paths svg ---------- */
.cta-paths svg {
  width: 100%;
  height: 100%;
}

.cta-paths path {
  stroke: rgba(255, 255, 255, 0.8);
  fill: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============================================================
   CANVAS STUDIO — overrides de tema (acento sobre el esquema base)
   ============================================================ */
.font-display { font-weight: 800; letter-spacing: -0.02em; }
.logo-text b { color: var(--accent); }

/* Botón primario = acento (no blanco) */
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 28px -8px rgba(239, 68, 68, 0.5); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px) scale(1.01); box-shadow: 0 12px 32px -6px rgba(239, 68, 68, 0.6); }
.btn-outline:hover { background: var(--accent-dim); border-color: var(--accent); color: var(--foreground); }
.btn-soft:hover, .btn-ghost:hover { background: rgba(255, 255, 255, 0.07); }
.link { color: var(--accent); }

/* Eyebrow + lead del hero (mono, estilo consola del tool) */
.hero-eyebrow {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 1.5rem;
}
.hero-lead { font-size: 1.05rem; color: #cbd5e1; max-width: 40rem; margin: 2.25rem auto 0; line-height: 1.7; }

/* Marquesina de plantillas (sustituye los logos externos) */
.logo-pill {
  display: inline-flex; align-items: center; white-space: nowrap;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.5px;
  color: var(--foreground); padding: 8px 16px; border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--p, #EF4444) 45%, transparent);
  background: color-mix(in srgb, var(--p, #EF4444) 12%, transparent);
}
.logo-pill::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; margin-right: 9px; background: var(--p, #EF4444);
}

/* Píldora de plantilla en las tarjetas de caso de uso */
.uc-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted-foreground); margin-bottom: 4px; }
.uc-eyebrow .uc-dot { width: 9px; height: 9px; border-radius: 50%; }
.bento-value { color: var(--accent); }

/* Banda de marca full-bleed (banner) */
.brand-band {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--background);
  line-height: 0;
}
.brand-band-img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  /* desvanecer arriba/abajo para fundir con la página */
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
}
@media (max-width: 600px) { .brand-band-img { max-height: 220px; } }

/* ===== Móvil: barra minimalista (solo isotipo) + hero con zonas separadas ===== */
@media (max-width: 640px) {
  /* Barra: solo el isotipo, sin wordmark */
  .header .logo-text { display: none; }
  .header-inner { gap: 0.85rem; padding: 0.5rem 0.6rem 0.5rem 0.7rem; }
  .logo-mark-img { width: 2.3rem; height: 2.3rem; }
  /* Conmutador de idioma: a la DERECHA del botón (lejos del isotipo; así "M" + "ES"
     no se leen pegados como "MES" y nunca se encima en móvil) */
  .header-actions { gap: 0.55rem; }
  .header-actions .lang-switch { order: 1; }

  /* Hero: animación protagonista arriba, textos compactos abajo con su aire */
  .hero { min-height: 100vh; padding: 5rem 1.1rem 2.5rem; }
  .hero-content { padding-bottom: 0.5rem; }
  .hero-eyebrow { margin-bottom: 0.9rem; }
  .hero-subtitle { margin-bottom: 1.1rem; }
  .hero-lead { margin-top: 1.4rem; font-size: 0.98rem; line-height: 1.6; }
  .hero-buttons { margin-top: 2rem; margin-bottom: 2.25rem; }
  .logos { margin-top: 2.25rem; }
}

/* Iconos 3D de marca en las tarjetas de caso de uso */
.uc-icon {
  display: block;
  width: 84px; height: 84px;
  border-radius: 20px;
  margin-bottom: 16px;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.55));
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), filter 0.3s ease;
}
.price-card:hover .uc-icon {
  transform: translateY(-3px) scale(1.04);
  filter: drop-shadow(0 12px 26px rgba(239, 68, 68, 0.28));
}
