#fw-section-custom-html-2819b11c-7154-452d-9d9b-3479a540ccd7 {

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;600;700&family=Space+Mono:wght@400;700&display=swap');

/* ===== ROOT VARIABLES ===== */
:root {
  --crt-bg: #0a0e27;
  --crt-fg: #00ff41;
  --crt-accent: #ff006e; /* Tu rosa de siempre */
  --crt-secondary: #00d9ff;
  --crt-warning: #ffbe0b;
  --crt-glow-intensity: 0.8;
  --scanline-opacity: 0.15;
}

/* ===== MAIN CRT CONTAINER ===== */
.crt-container {
  background-color: var(--crt-bg);
  color: var(--crt-fg);
  font-family: 'IBM Plex Mono', 'Space Mono', monospace;
  font-size: 14px;
  line-height: 1.6;
  padding: 2rem;
  border: 3px solid #333;
  box-shadow: 
    inset 0 0 20px rgba(0, 255, 65, 0.1),
    0 0 40px rgba(0, 255, 65, 0.2),
    0 0 80px rgba(255, 0, 110, 0.15);
  position: relative;
  overflow: hidden;
  /* Forzar aceleración de hardware para asegurar que los filtros carguen */
  transform: translateZ(0); 
  backface-visibility: hidden;
}

/* Scanline overlay effect */
.crt-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, var(--scanline-opacity)),
    rgba(0, 0, 0, var(--scanline-opacity)) 1px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none;
  z-index: 10;
}

/* CRT curvature effect */
.crt-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(0, 0, 0, 0.15) 100%
  );
  pointer-events: none;
  z-index: 9;
}

/* ===== TEXT STYLING ===== */
.crt-text {
  font-family: 'IBM Plex Mono', 'Space Mono', monospace;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-shadow: 
    0 0 10px rgba(0, 255, 65, 0.5),
    0 0 20px rgba(0, 255, 65, 0.3);
}

.crt-text.primary {
  color: var(--crt-fg);
}

.crt-text.accent {
  color: var(--crt-accent);
  text-shadow: 
    0 0 10px rgba(255, 0, 110, 0.8),
    0 0 20px rgba(255, 0, 110, 0.5);
}

.crt-text.secondary {
  color: var(--crt-secondary);
  text-shadow: 
    0 0 10px rgba(0, 217, 255, 0.5),
    0 0 20px rgba(0, 217, 255, 0.3);
}

.crt-text.warning {
  color: var(--crt-warning);
  text-shadow: 
    0 0 10px rgba(255, 190, 11, 0.5),
    0 0 20px rgba(255, 190, 11, 0.3);
}

/* ===== GLOW EFFECTS ===== */
.crt-glow {
  filter: drop-shadow(0 0 8px rgba(0, 255, 65, 0.6));
  animation: phosphor-flicker 0.15s infinite;
}

.crt-glow.intense {
  filter: drop-shadow(0 0 15px rgba(0, 255, 65, 0.8));
}

.crt-glow.accent {
  filter: drop-shadow(0 0 12px rgba(255, 0, 110, 0.8));
}

/* ===== SCANLINE ANIMATION ===== */
@keyframes phosphor-flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.97; }
}

@keyframes crt-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 
      0 0 10px rgba(0, 255, 65, 0.5),
      0 0 20px rgba(0, 255, 65, 0.3);
  }
  20%, 24%, 55% {
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.2);
  }
}

.crt-flicker {
  animation: crt-flicker 0.15s infinite;
}

/* ===== GLITCH EFFECT ===== */
@keyframes glitch-1 {
  0% { clip-path: inset(40% 0 61% 0); transform: translate(-2px, -2px); }
  20% { clip-path: inset(92% 0 1% 0); transform: translate(2px, 2px); }
  40% { clip-path: inset(43% 0 1% 0); transform: translate(-2px, 2px); }
  60% { clip-path: inset(25% 0 58% 0); transform: translate(2px, -2px); }
  80% { clip-path: inset(54% 0 7% 0); transform: translate(-2px, -2px); }
  100% { clip-path: inset(58% 0 43% 0); transform: translate(2px, 2px); }
}

@keyframes glitch-2 {
  0% { clip-path: inset(25% 0 58% 0); transform: translate(2px, 2px); }
  20% { clip-path: inset(1% 0 92% 0); transform: translate(-2px, -2px); }
  40% { clip-path: inset(1% 0 43% 0); transform: translate(2px, -2px); }
  60% { clip-path: inset(58% 0 25% 0); transform: translate(-2px, 2px); }
  80% { clip-path: inset(7% 0 54% 0); transform: translate(2px, 2px); }
  100% { clip-path: inset(43% 0 58% 0); transform: translate(-2px, -2px); }
}

.crt-glitch {
  position: relative;
  display: inline-block;
}

.crt-glitch::before,
.crt-glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

.crt-glitch::before {
  animation: glitch-1 2.5s infinite;
  color: var(--crt-secondary);
  z-index: -1;
}

.crt-glitch::after {
  animation: glitch-2 2.5s infinite;
  color: var(--crt-accent);
  z-index: -2;
}

/* ===== ASCII ART STYLING ===== */
.crt-ascii {
  font-family: 'IBM Plex Mono', 'Space Mono', monospace;
  font-size: 12px;
  line-height: 1.2;
  white-space: pre;
  overflow-x: auto;
  color: var(--crt-fg);
  text-shadow: 0 0 10px rgba(0, 255, 65, 0.4);
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 255, 65, 0.3);
}

/* ===== BUTTON STYLING ===== */
.crt-button {
  background-color: transparent;
  border: 2px solid var(--crt-fg);
  color: var(--crt-fg);
  padding: 0.75rem 1.5rem;
  font-family: 'IBM Plex Mono', 'Space Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: 
    inset 0 0 10px rgba(0, 255, 65, 0.1),
    0 0 10px rgba(0, 255, 65, 0.3);
}

.crt-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.3), transparent);
  transition: left 0.5s ease;
}

.crt-button:hover {
  background-color: rgba(0, 255, 65, 0.1);
  box-shadow: 
    inset 0 0 20px rgba(0, 255, 65, 0.2),
    0 0 20px rgba(0, 255, 65, 0.5);
  text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
}

.crt-button:hover::before {
  left: 100%;
}

.crt-button:active {
  transform: scale(0.98);
  box-shadow: 
    inset 0 0 15px rgba(0, 255, 65, 0.3),
    0 0 15px rgba(0, 255, 65, 0.4);
}

.crt-button.accent {
  border-color: var(--crt-accent);
  color: var(--crt-accent);
  box-shadow: 
    inset 0 0 10px rgba(255, 0, 110, 0.1),
    0 0 10px rgba(255, 0, 110, 0.3);
}

.crt-button.accent:hover {
  background-color: rgba(255, 0, 110, 0.1);
  box-shadow: 
    inset 0 0 20px rgba(255, 0, 110, 0.2),
    0 0 20px rgba(255, 0, 110, 0.5);
  text-shadow: 0 0 10px rgba(255, 0, 110, 0.8);
}

/* ===== TERMINAL WINDOW ===== */
.crt-terminal {
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid var(--crt-fg);
  border-radius: 4px;
  padding: 1rem;
  margin: 1rem 0;
  font-family: 'IBM Plex Mono', 'Space Mono', monospace;
  font-size: 13px;
  line-height: 1.5;
  color: var(--crt-fg);
  box-shadow: 
    inset 0 0 20px rgba(0, 255, 65, 0.05),
    0 0 20px rgba(0, 255, 65, 0.2);
}

.crt-terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 255, 65, 0.3);
}

.crt-terminal-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.crt-terminal-buttons {
  display: flex;
  gap: 0.5rem;
}

.crt-terminal-btn {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  border: 1px solid rgba(0, 255, 65, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
}

.crt-terminal-btn.close {
  background-color: rgba(255, 0, 110, 0.3);
  border-color: var(--crt-accent);
}

.crt-terminal-btn.close:hover {
  background-color: var(--crt-accent);
  box-shadow: 0 0 10px rgba(255, 0, 110, 0.6);
}

.crt-terminal-btn.minimize {
  background-color: rgba(255, 190, 11, 0.3);
  border-color: var(--crt-warning);
}

.crt-terminal-btn.minimize:hover {
  background-color: var(--crt-warning);
  box-shadow: 0 0 10px rgba(255, 190, 11, 0.6);
}

.crt-terminal-btn.maximize {
  background-color: rgba(0, 217, 255, 0.3);
  border-color: var(--crt-secondary);
}

.crt-terminal-btn.maximize:hover {
  background-color: var(--crt-secondary);
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.6);
}

.crt-terminal-content {
  max-height: 400px;
  overflow-y: auto;
}

.crt-terminal-line {
  margin: 0.25rem 0;
  word-break: break-all;
}

.crt-terminal-prompt {
  color: var(--crt-secondary);
  font-weight: 700;
}

.crt-terminal-input {
  color: var(--crt-fg);
  border: none;
  background: transparent;
  font-family: 'IBM Plex Mono', 'Space Mono', monospace;
  font-size: 13px;
  outline: none;
  width: 100%;
  padding: 0;
  margin: 0;
}

.crt-terminal-input::selection {
  background-color: rgba(0, 255, 65, 0.3);
}

/* ===== CURSOR BLINK ===== */
@keyframes cursor-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.crt-cursor {
  display: inline-block;
  width: 8px;
  height: 1em;
  background-color: var(--crt-fg);
  margin-left: 2px;
  animation: cursor-blink 1s steps(2, start) infinite;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .crt-container {
    padding: 1rem;
    font-size: 12px;
  }
  .crt-ascii { font-size: 10px; }
  .crt-button { padding: 0.5rem 1rem; font-size: 12px; }
}

/* ===== UTILITY CLASSES ===== */
.crt-mt-1 { margin-top: 0.5rem; }
.crt-mt-2 { margin-top: 1rem; }
.crt-mt-3 { margin-top: 1.5rem; }
.crt-mb-1 { margin-bottom: 0.5rem; }
.crt-mb-2 { margin-bottom: 1rem; }
.crt-mb-3 { margin-bottom: 1.5rem; }

.crt-text-center { text-align: center; }
.crt-text-right { text-align: right; }
.crt-text-uppercase { text-transform: uppercase; }
.crt-text-bold { font-weight: 700; }

.crt-opacity-50 { opacity: 0.5; }
.crt-opacity-75 { opacity: 0.75; }
}









#fw-section-newsletter-21c6ff7c-0249-4d3f-819a-6d38979a2ba7 {
--font-heading-scale: 1.5;
--font-body-scale: 0.8;
}

#fw-section-text-carousel-850a0318-f3ab-48b9-aeef-72e5e87848b5 {
--font-heading-scale: 1.04;
--font-body-scale: 1.0;
}




#fw-section-product-product-hey {
--font-heading-scale: 1.0;
--font-body-scale: 0.9;
}