/* Estilos principales del sitio Computintas Digital.
   Extraídos desde el HTML original para facilitar mantenimiento en Antigravity. */

:root {
      --background: #fafafa;
      --foreground: #111111;
      --card: #ffffff;
      --card-foreground: #111111;
      --primary: #6366f1;
      --primary-strong: #4f46e5;
      --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
      --primary-foreground: #ffffff;
      --secondary: #0f172a;
      --secondary-foreground: #f8fafc;
      --muted: #f1f5f9;
      --muted-foreground: #374151; /* Cambiado de #64748b al elegante gris pizarra #374151 */
      --border: #e2e8f0;
      --input: #f1f5f9;
      --success: #10b981;
      --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.04);
      --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
      --shadow-lg: 0 30px 80px rgba(15, 23, 42, 0.16);
      --shadow-primary: 0 16px 40px rgba(99, 102, 241, 0.25);
      --radius: 20px;
      --container: 1280px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      margin: 0;
      font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
      background: var(--background);
      color: #374151; /* El color gris pizarra oscuro de la captura */
      line-height: 1.6; /* Un interlineado más alto y legible */
      overflow-x: hidden;
    }

    /* Mantener fuente e identidad original de los títulos */
    h1, h2, h3, h4, h5, h6, .product-title {
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
      color: #111111; /* Mantener títulos oscuros sobre fondos claros */
    }

    /* Mantener títulos claros en todas las secciones oscuras */
    .hero h1,
    .dark-bg h1,
    .dark-bg h2,
    .dark-bg h3,
    .dark-bg h4,
    .footer h3,
    .footer-column h3 {
      color: #ffffff !important;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea {
      font: inherit;
    }

    .container {
      width: min(calc(100% - 32px), var(--container));
      margin: 0 auto;
    }

    .section {
      padding: 88px 0;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 0 26px;
      border-radius: 14px;
      border: 1px solid transparent;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .btn:hover {
      transform: translateY(-2px) scale(1.02);
    }

    .btn:active {
      transform: translateY(0) scale(0.98);
    }

    .btn-primary {
      background: var(--primary-gradient);
      color: var(--primary-foreground);
      box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
    }

    .btn-primary:hover {
      box-shadow: var(--shadow-primary);
    }

    .btn-light {
      background: rgba(255, 255, 255, 0.95);
      color: var(--secondary);
      backdrop-filter: blur(8px);
    }

    .btn-light:hover {
      background: #ffffff;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    }

    .btn-outline {
      background: transparent;
      color: #ffffff;
      border: 1.5px solid rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(4px);
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.8);
    }

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

    .btn-outline-dark:hover {
      border-color: var(--primary);
      color: var(--primary-strong);
      box-shadow: var(--shadow-sm);
    }

    .icon {
      width: 18px;
      height: 18px;
      flex: 0 0 18px;
    }

    .icon-lg {
      width: 22px;
      height: 22px;
      flex: 0 0 22px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: #ffffff !important;
      border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
      transition: background-color 0.3s ease, border-color 0.3s ease;
    }

    .site-header .container {
      width: calc(100% - 12px);
      max-width: 100%;
      margin: 0;
      padding-left: 10px;
      padding-right: 16px;
    }

    .header-inner {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      margin-right: 8px;
    }

    .brand img {
      height: 46px;
      width: auto;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .brand:hover img {
      transform: scale(1.03);
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .desktop-nav a {
      font-size: 14.5px;
      font-weight: 600;
      color: rgba(15, 23, 42, 0.72) !important;
      transition: color 0.3s ease;
      position: relative;
      padding: 8px 0;
      text-decoration: none;
    }

    .desktop-nav a:hover,
    .desktop-nav a.active {
      color: #0052ff !important;
    }

    .desktop-nav a::after {
      content: "";
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #0052ff, #00a2ff);
      box-shadow: 0 0 8px rgba(0, 82, 255, 0.2);
      transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .desktop-nav a:hover::after,
    .desktop-nav a.active::after {
      width: 100%;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .header-actions .btn-primary {
      background: linear-gradient(135deg, #0052ff 0%, #00a2ff 100%) !important;
      color: #ffffff !important;
      border-radius: 99px !important;
      font-size: 14px;
      font-weight: 700;
      padding: 0 24px !important;
      min-height: 42px !important;
      border: 1px solid rgba(255, 255, 255, 0.15) !important;
      box-shadow: 0 8px 20px rgba(0, 82, 255, 0.25);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      text-decoration: none;
    }

    .header-actions .btn-primary .arrow {
      transition: transform 0.3s ease;
      font-size: 14px;
      display: inline-block;
    }

    .header-actions .btn-primary:hover {
      box-shadow: 0 12px 28px rgba(0, 82, 255, 0.45);
      transform: translateY(-2px) scale(1.02);
    }

    .header-actions .btn-primary:hover .arrow {
      transform: translateX(4px);
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: 1px solid rgba(15, 23, 42, 0.08);
      background: rgba(15, 23, 42, 0.04);
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .menu-toggle:hover {
      background: rgba(15, 23, 42, 0.08);
      border-color: rgba(0, 82, 255, 0.2);
    }

    .menu-toggle span, .menu-toggle::before, .menu-toggle::after {
      content: "";
      display: block;
      width: 20px;
      height: 2px;
      background: #0f172a;
      border-radius: 999px;
      transition: transform .2s ease, opacity .2s ease;
      position: relative;
    }

    .menu-toggle::before { position: absolute; transform: translateY(-6px); }
    .menu-toggle::after { position: absolute; transform: translateY(6px); }

    .menu-toggle.active span { opacity: 0; }
    .menu-toggle.active::before { transform: rotate(45deg); }
    .menu-toggle.active::after { transform: rotate(-45deg); }

    .mobile-nav {
      display: none;
      padding: 0 16px 24px;
      background: rgba(255, 255, 255, 0.98) !important;
      border-top: 1px solid rgba(15, 23, 42, 0.08) !important;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-radius: 0 0 20px 20px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    }

    .mobile-nav.open {
      display: block;
    }

    .mobile-nav .mobile-links {
      display: grid;
      gap: 10px;
      padding-top: 16px;
    }

    .mobile-nav a {
      padding: 12px 16px;
      border-radius: 12px;
      color: rgba(15, 23, 42, 0.75) !important;
      font-weight: 600;
      transition: all 0.25s ease;
      text-decoration: none;
    }

    .mobile-nav a:hover,
    .mobile-nav a.active {
      color: #0052ff !important;
      background: rgba(0, 82, 255, 0.05);
    }

    .mobile-nav .btn-primary {
      margin-top: 8px;
      background: linear-gradient(135deg, #0052ff 0%, #00a2ff 100%) !important;
      color: #ffffff !important;
      border-radius: 99px !important;
      padding: 12px 24px !important;
      text-align: center;
      font-weight: 700;
      box-shadow: 0 6px 16px rgba(0, 82, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      text-decoration: none;
    }

    .hero {
      position: relative;
      overflow: hidden;
      color: #ffffff;
      background: #0f1117;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url("../img/hero-workspace-bg.jpg");
      background-position: center center;
      background-size: cover;
      background-repeat: no-repeat;
      opacity: 1;
      image-rendering: auto;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: transparent;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      padding-top: 48px;
    }

    .hero-grid {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 16px 0 40px;
    }

    .hero-copy {
      max-width: 860px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 2;
    }

    /* Espaciador responsivo para dejar el computador del fondo completamente despejado */
    .hero-laptop-spacer {
      width: 100%;
      height: 350px;
      pointer-events: none;
    }

    /* --- Top Kicker Style: — Professional — --- */
    .hero-kicker-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 24px;
      width: 100%;
    }

    .kicker-line {
      height: 1px;
      width: 60px;
      background: linear-gradient(90deg, transparent, #0052ff);
    }
    
    .hero-kicker-row .kicker-line:last-child {
      background: linear-gradient(90deg, #0052ff, transparent);
    }

    .hero-kicker {
      font-family: 'Outfit', sans-serif;
      font-size: 16px;
      font-weight: 500;
      font-style: italic;
      color: #38bdf8;
      text-transform: capitalize;
      letter-spacing: 1px;
      background: transparent !important;
      border: none !important;
      padding: 0 !important;
      margin: 0 !important;
      box-shadow: none !important;
      backdrop-filter: none !important;
    }

    /* --- Title Style --- */
    .hero-title {
      font-size: clamp(32px, 4.5vw, 48px);
      font-weight: 800;
      line-height: 1.15;
      color: #ffffff;
      margin: 0 0 12px;
      letter-spacing: -1px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }

    .title-main {
      font-family: 'Outfit', sans-serif;
    }

    /* --- Accent Row Style: --- Design --- --- */
    .title-accent-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      width: 100%;
    }

    .accent-dots {
      height: 1px;
      width: 48px;
      border-top: 2px dotted rgba(255, 255, 255, 0.25);
    }

    .hero-title .accent {
      font-family: 'Outfit', sans-serif;
      background: linear-gradient(135deg, #00d2ff 0%, #0052ff 100%) !important;
      -webkit-background-clip: text !important;
      -webkit-text-fill-color: transparent !important;
      text-shadow: 0 0 30px rgba(0, 210, 255, 0.2);
      font-weight: 800;
    }

    /* --- Subtitle Style --- */
    .hero p.lead {
      font-size: clamp(15px, 1.4vw, 17px);
      color: rgba(255, 255, 255, 0.82);
      max-width: 680px;
      margin: 0 auto 16px;
      line-height: 1.5;
      font-weight: 400;
    }

    /* --- Bottom Divider Style: — ▬ • — --- */
    .hero-divider-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-bottom: 20px;
      width: 100%;
    }

    .divider-pill {
      height: 3px;
      width: 40px;
      background: #0052ff;
      border-radius: 99px;
      box-shadow: 0 0 10px rgba(0, 82, 255, 0.8);
    }

    .divider-dot {
      height: 4px;
      width: 4px;
      background: #00d2ff;
      border-radius: 50%;
      box-shadow: 0 0 8px rgba(0, 210, 255, 0.8);
    }

    .hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 28px;
      width: 100%;
    }

    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      color: rgba(255, 255, 255, 0.7);
      font-size: 14px;
      font-weight: 500;
      justify-content: center;
      margin-top: 12px;
    }

    .trust-item {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .check-icon {
      color: var(--success);
      width: 16px;
      height: 16px;
    }

    .hero-media {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      width: 100%;
      min-height: 0;
    }

    .hero-media-frame {
      width: 100%;
      max-width: 640px;
      height: clamp(280px, 31vw, 360px);
      min-height: 0;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(0,0,0,0.2);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
      transform: translateY(0);
      transition: transform 0.5s ease;
    }

    .hero-media-frame:hover {
      transform: translateY(-8px);
    }

    .hero-media-frame img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center;
      transition: transform 0.7s ease;
    }

    .hero-media-frame:hover img {
      transform: scale(1.05);
    }

    /* --- Service Glassmorphic Pillars --- */
    .hero-pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      width: 100%;
      margin: 40px auto 28px;
      max-width: 860px;
    }

    .pillar-glass-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 30px 20px 24px;
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      position: relative;
      overflow: hidden;
    }

    .pillar-glass-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
      pointer-events: none;
    }

    .pillar-glass-card:hover {
      transform: translateY(-5px);
      border-color: rgba(255, 255, 255, 0.18);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
      background: rgba(255, 255, 255, 0.08);
    }

    /* Active Featured Card: Software a Medida */
    .pillar-glass-card.featured {
      background: rgba(0, 82, 255, 0.18);
      border: 1.5px solid rgba(0, 210, 255, 0.4);
      box-shadow: 0 15px 40px rgba(0, 82, 255, 0.3);
    }

    .pillar-glass-card.featured::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80%;
      height: 3px;
      background: linear-gradient(90deg, transparent, #00d2ff, transparent);
      box-shadow: 0 0 10px #00d2ff;
    }

    .pillar-glass-card.featured:hover {
      background: rgba(0, 82, 255, 0.24);
      box-shadow: 0 20px 50px rgba(0, 82, 255, 0.45);
      border-color: rgba(0, 210, 255, 0.6);
    }

    .pillar-icon-box {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      color: #38bdf8;
      transition: all 0.3s ease;
    }

    .pillar-glass-card.featured .pillar-icon-box {
      background: rgba(0, 210, 255, 0.1);
      border-color: rgba(0, 210, 255, 0.3);
      color: #00d2ff;
      box-shadow: 0 0 15px rgba(0, 210, 255, 0.25);
    }

    .pillar-glass-card:hover .pillar-icon-box {
      transform: scale(1.08);
      color: #ffffff;
    }

    .pillar-glass-card h3 {
      font-size: 16px;
      font-weight: 700;
      color: #ffffff;
      margin: 0 0 14px;
      letter-spacing: -0.2px;
    }

    .pillar-dots {
      display: flex;
      gap: 6px;
      align-items: center;
      justify-content: center;
      margin-top: auto;
      border-top: 1.5px dotted rgba(255, 255, 255, 0.15);
      padding-top: 12px;
      width: 100%;
    }

    .pillar-glass-card.featured .pillar-dots {
      border-top-style: solid;
      border-top-color: rgba(0, 210, 255, 0.2);
    }

    .pillar-dots .dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.25);
      transition: all 0.3s ease;
    }

    .pillar-dots .dot.active {
      background: #38bdf8;
      box-shadow: 0 0 8px #38bdf8;
      width: 12px;
      border-radius: 99px;
    }

    .pillar-glass-card.featured .pillar-dots .dot.active {
      background: #00d2ff;
      box-shadow: 0 0 10px #00d2ff;
    }

    .hero-unified-strip {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      max-width: 860px;
      background: rgba(10, 16, 32, 0.55);
      border: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      padding: 16px 36px;
      border-radius: 20px;
      margin: 0 auto 34px;
      box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
    }

    .strip-item {
      display: flex;
      flex-direction: column;
      text-align: left;
    }

    .strip-value {
      font-size: 30px;
      font-weight: 800;
      color: #ffffff;
      line-height: 1.1;
      margin-bottom: 2px;
      background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .strip-label {
      font-size: 13.5px;
      color: rgba(255, 255, 255, 0.65);
      font-weight: 500;
    }

    .strip-divider {
      width: 1px;
      height: 38px;
      background: rgba(255, 255, 255, 0.1);
    }

    .strip-btn {
      background: linear-gradient(135deg, #0052ff 0%, #00a2ff 100%) !important;
      color: #ffffff !important;
      border-radius: 99px !important;
      font-size: 14px;
      font-weight: 700;
      padding: 0 24px !important;
      min-height: 44px !important;
      border: 1px solid rgba(255, 255, 255, 0.15) !important;
      box-shadow: 0 8px 20px rgba(0, 82, 255, 0.25);
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .strip-btn:hover {
      box-shadow: 0 12px 28px rgba(0, 82, 255, 0.45);
      transform: translateY(-2px) scale(1.02);
    }

    /* --- Tagline Row --- */
    .hero-tagline-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
    }

    .tagline-line {
      height: 1px;
      flex: 1;
      background: linear-gradient(90deg, transparent, rgba(0, 82, 255, 0.5));
    }

    .hero-tagline-row .tagline-line:last-child {
      background: linear-gradient(90deg, rgba(0, 82, 255, 0.5), transparent);
    }

    .tagline-content {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 13.5px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.75);
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    .tagline-content .bullet {
      color: #38bdf8;
      font-size: 10px;
      text-shadow: 0 0 6px #38bdf8;
    }

    /* --- Responsive Adapts for Hero Pillars --- */
    @media (max-width: 1024px) {
      .hero-pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        padding: 0 16px;
      }
      .hero-unified-strip {
        max-width: calc(100% - 32px);
        padding: 16px 24px;
      }
    }

    @media (max-width: 720px) {
      .hero-pillars {
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .hero-unified-strip {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        border-radius: 18px;
        padding: 24px 16px;
      }
      .strip-divider {
        display: none;
      }
      .strip-item {
        align-items: center;
        text-align: center;
      }
      .strip-btn {
        width: 100%;
      }
      .tagline-content {
        font-size: 11px;
        gap: 8px;
      }
    }

    .section-header {
      text-align: center;
      margin-bottom: 58px;
    }

    .section-header h2 {
      margin: 14px 0 14px;
      font-size: clamp(34px, 5vw, 56px);
      line-height: 1.08;
      letter-spacing: -0.03em;
    }

    .section-header p {
      margin: 0 auto;
      max-width: 760px;
      color: var(--muted-foreground);
      font-size: 18px;
    }

    .badge-primary {
      background: rgba(91,92,246,.10);
      color: var(--primary);
    }

    .badge-dark {
      background: rgba(255,255,255,.10);
      color: rgba(255,255,255,.82);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-bottom: 42px;
    }

    .service-card {
      display: flex;
      flex-direction: column;
      height: 100%;
      min-height: 0;
      padding: 24px 24px 28px;
      border-radius: 30px;
      border: 1px solid var(--border);
      background: var(--card);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: var(--shadow-sm);
    }

    .service-card:hover {
      transform: translateY(-8px);
      border-color: rgba(99, 102, 241, 0.3);
      box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    }

    .service-card.highlight {
      background: linear-gradient(to bottom right, #ffffff, #f8fafc);
      color: var(--foreground);
      border-color: var(--border);
      box-shadow: var(--shadow-sm);
    }

    .service-card.highlight:hover {
      transform: translateY(-8px);
      border-color: rgba(99, 102, 241, 0.3);
      box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
    }

    .service-icon-wrap {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
    }

    .service-card .service-icon-wrap {
      background: rgba(91,92,246,.10);
      color: var(--primary);
    }

    .service-card.highlight .service-icon-wrap {
      background: rgba(91,92,246,.10);
      color: var(--primary);
    }

    .service-card h3 {
      margin: 0 0 14px;
      font-size: 24px;
      line-height: 1.06;
      text-align: center;
      color: #111111;
      min-height: 28px;
    }

    .service-media {
      width: 100%;
      max-width: none;
      margin-bottom: 16px;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid rgba(15, 23, 42, 0.08);
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
      background: #eef3ff;
    }

    .service-media img {
      width: 100%;
      height: 350px;
      object-fit: cover;
      display: block;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .service-card:hover .service-media img {
      transform: scale(1.04);
    }

    .service-card.highlight .service-media {
      border: 1px solid rgba(15, 23, 42, 0.08);
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    }

    .service-body {
      display: flex;
      flex-direction: column;
      gap: 8px;
      min-height: auto;
      margin-bottom: 10px;
    }

    .service-card p {
      margin: 0;
      color: var(--muted-foreground);
      font-size: 16px;
      line-height: 1.15;
    }

    .service-card.highlight p {
      color: var(--muted-foreground);
    }

    .feature-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 6px;
    }

    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 14px;
      line-height: 1.14;
      color: var(--muted-foreground);
    }

    .service-card.highlight .feature-list li {
      color: var(--muted-foreground);
    }

    .feature-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--primary);
      flex: 0 0 6px;
      margin-top: 7px;
    }

    .service-card.highlight .feature-dot {
      background: var(--primary);
    }

    .service-link {
      margin-top: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      align-self: flex-start;
      min-height: 46px;
      padding: 0 20px;
      border-radius: 14px;
      background: var(--primary);
      color: #ffffff;
      font-size: 14px;
      font-weight: 800;
      border: 1px solid transparent;
      box-shadow: 0 14px 34px rgba(91, 92, 246, 0.22);
      transition: transform .22s ease, box-shadow .22s ease, gap .22s ease, background-color .22s ease, color .22s ease;
    }

    .service-link:hover {
      gap: 14px;
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(91, 92, 246, 0.28);
    }

    .service-card.highlight .service-link {
      background: var(--primary);
      color: #ffffff;
      box-shadow: 0 14px 34px rgba(91, 92, 246, 0.22);
    }

    .services-cta {
      text-align: center;
    }

    .services-cta p {
      margin: 0 0 18px;
      color: var(--muted-foreground);
    }

    .products-section {
      background: transparent;
      padding: 0;
    }

    .products-header-wrapper {
      padding: 96px 0 32px;
      text-align: center;
    }

    .products-header-wrapper.dark-bg {
      background: var(--secondary); /* #0f172a */
      color: #ffffff;
    }

    .product-row-section {
      padding: 96px 0;
      width: 100%;
      display: flex;
      align-items: center;
      box-sizing: border-box;
    }

    .product-row-section.dark-bg {
      background: var(--secondary); /* #0f172a */
      color: #ffffff;
    }

    .product-row-section.light-bg {
      background: #ffffff;
      color: var(--foreground); /* #111111 */
    }

    .product-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 64px;
      width: 100%;
    }

    /* Alternancia de Diseño: */
    /* Fondo Oscuro: Texto a la Izquierda, Imagen a la Derecha */
    .product-row-section.dark-bg .product-row {
      flex-direction: row;
    }

    /* Fondo Claro: Imagen a la Izquierda, Texto a la Derecha */
    .product-row-section.light-bg .product-row {
      flex-direction: row-reverse;
    }

    .product-info {
      flex: 1 1 50%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
    }

    .product-subtitle {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 12px;
      display: inline-block;
    }

    /* Subtítulo en fondo oscuro */
    .product-row-section.dark-bg .product-subtitle {
      color: #8b8cff;
    }

    /* Subtítulo en fondo claro */
    .product-row-section.light-bg .product-subtitle {
      color: #0066cc; /* Azul corporativo vibrante */
    }

    .product-title {
      font-size: clamp(28px, 4vw, 40px);
      line-height: 1.15;
      font-weight: 800;
      margin: 0 0 20px;
      letter-spacing: -0.02em;
    }

    /* Título en fondo oscuro */
    .product-row-section.dark-bg .product-title {
      color: #ffffff;
    }

    /* Título en fondo claro */
    .product-row-section.light-bg .product-title {
      color: #0f172a; /* Azul oscuro profundo */
    }

    .product-desc-p {
      font-size: 16px;
      line-height: 1.6;
      margin: 0 0 16px;
    }

    /* Párrafos en fondo oscuro */
    .product-row-section.dark-bg .product-desc-p {
      color: rgba(255, 255, 255, 0.72);
    }

    /* Párrafos en fondo claro */
    .product-row-section.light-bg .product-desc-p {
      color: #374151; /* Uniforme con el color de la captura */
    }

    .product-desc-p:last-of-type {
      margin-bottom: 24px;
    }

    .product-media {
      flex: 1 1 50%;
      border-radius: 28px;
      overflow: hidden;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Media en fondo oscuro */
    .product-row-section.dark-bg .product-media {
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.02);
    }

    .product-row-section.dark-bg .product-row:hover .product-media {
      transform: translateY(-8px);
      box-shadow: 0 35px 80px rgba(0, 0, 0, 0.6);
      border-color: rgba(99, 102, 241, 0.3);
    }

    /* Media en fondo claro */
    .product-row-section.light-bg .product-media {
      box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
      border: 1px solid rgba(15, 23, 42, 0.06);
      background: rgba(15, 23, 42, 0.01);
    }

    .product-row-section.light-bg .product-row:hover .product-media {
      transform: translateY(-8px);
      box-shadow: 0 35px 80px rgba(15, 23, 42, 0.14);
      border-color: rgba(0, 112, 243, 0.25);
    }

    .product-media img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      aspect-ratio: 16 / 9;
    }

    .chip-list {
      list-style: none;
      padding: 0;
      margin: 8px 0 28px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .chip-list li {
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 500;
    }

    /* Chips en fondo oscuro */
    .product-row-section.dark-bg .chip-list li {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.82);
    }

    /* Chips en fondo claro */
    .product-row-section.light-bg .chip-list li {
      background: rgba(15, 23, 42, 0.04);
      border: 1px solid rgba(15, 23, 42, 0.08);
      color: #374151; /* Uniforme con el color de la captura */
    }

    /* Botón CTA - Azul Vibrante Moderno en ambos fondos */
    .product-link-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0 28px;
      border-radius: 14px;
      background: #007bff; /* Azul vibrante puro como el de tus capturas */
      color: #ffffff;
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      border: 1px solid transparent;
      box-shadow: 0 10px 24px rgba(0, 123, 255, 0.25);
      transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.25s ease;
    }

    .product-link-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 32px rgba(0, 123, 255, 0.35);
      background: #0056b3; /* Azul más oscuro al pasar el ratón */
    }


    .about {
      position: relative;
      overflow: hidden;
      background: var(--secondary);
      color: #ffffff;
    }

    .about::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .03;
      background-image: radial-gradient(circle at 1px 1px, #ffffff 1px, transparent 0);
      background-size: 40px 40px;
    }

    .about::after {
      content: "";
      position: absolute;
      left: 50%;
      top: -90px;
      width: 640px;
      height: 280px;
      transform: translateX(-50%);
      background: rgba(91,92,246,.18);
      filter: blur(90px);
      border-radius: 999px;
    }

    .about .container {
      position: relative;
      z-index: 1;
    }

    .about .section-header p {
      color: rgba(255,255,255,.62);
    }

    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
      margin-bottom: 34px;
    }

    .pillar-card {
      padding: 34px;
      border-radius: 24px;
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.10);
      transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
    }

    .pillar-card:hover {
      background: rgba(255,255,255,.06);
      border-color: rgba(255,255,255,.18);
      transform: translateY(-4px);
    }

    .pillar-icon {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
      background: rgba(91,92,246,.14);
      border: 1px solid rgba(91,92,246,.25);
      color: #8b8cff;
    }

    .pillar-card h3 {
      margin: 0 0 14px;
      font-size: 24px;
      line-height: 1.18;
    }

    .pillar-card p {
      margin: 0 0 20px;
      color: rgba(255,255,255,.62);
      font-size: 15px;
    }

    .pillar-features {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 12px;
    }

    .pillar-features li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: rgba(255,255,255,.76);
      font-size: 14px;
    }

    .check-circle {
      width: 17px;
      height: 17px;
      color: #8b8cff;
      flex: 0 0 17px;
      margin-top: 2px;
    }

    .about-stats {
      padding: 34px;
      margin-bottom: 24px;
      border-radius: 24px;
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.10);
    }

    .about-stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .about-stats-item {
      text-align: center;
    }

    .about-stats-item .value {
      margin-bottom: 6px;
      font-size: clamp(30px, 3vw, 42px);
      font-weight: 800;
    }

    .about-stats-item p {
      margin: 0;
      color: rgba(255,255,255,.50);
      font-size: 14px;
    }

    .about-cta {
      text-align: center;
    }

    .about-cta p {
      color: rgba(255,255,255,.60);
      margin: 0 0 18px;
      font-size: 18px;
    }

    .contact {
      background: rgba(237,237,237,.35);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 34px;
      align-items: start;
    }

    .contact-list {
      display: grid;
      gap: 28px;
    }

    .contact-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .contact-icon {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(91,92,246,.10);
      color: var(--primary);
      flex: 0 0 46px;
    }

    .contact-item h3 {
      margin: 0 0 6px;
      font-size: 18px;
    }

    .contact-item p {
      margin: 0;
      color: var(--muted-foreground);
    }

    .contact-card {
      background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
      border: 1px solid #d8deea;
      border-radius: 24px;
      box-shadow: 0 20px 60px rgba(15, 23, 42, 0.10);
      overflow: hidden;
    }

    .contact-card-header {
      padding: 26px 28px 0;
    }

    .contact-card-header h3 {
      margin: 0 0 6px;
      font-size: 26px;
      color: #0f172a;
    }

    .contact-card-body {
      padding: 24px 28px 28px;
      background: rgba(248, 250, 255, 0.72);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .form-field {
      display: grid;
      gap: 8px;
      margin-bottom: 18px;
    }

    .form-field label {
      font-size: 14px;
      font-weight: 700;
      color: #0f172a;
      letter-spacing: .01em;
    }

    .input, .textarea {
      width: 100%;
      border: 1px solid #cbd5e1;
      background: #ffffff;
      color: #0f172a;
      border-radius: 14px;
      padding: 14px 16px;
      outline: none;
      box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
      transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease, transform .2s ease;
    }

    .input::placeholder, .textarea::placeholder {
      color: #64748b;
      opacity: 1;
    }

    .input:hover, .textarea:hover {
      border-color: #94a3b8;
      background: #ffffff;
    }

    .input:focus, .textarea:focus {
      border-color: rgba(91,92,246,.62);
      box-shadow: 0 0 0 4px rgba(91,92,246,.12), inset 0 1px 2px rgba(15, 23, 42, 0.04);
      background: #ffffff;
      transform: translateY(-1px);
    }

    .textarea {
      min-height: 140px;
      resize: vertical;
    }

    .submit-feedback {
      display: none;
      margin-top: 14px;
      padding: 12px 16px;
      border-radius: 14px;
      font-size: 14px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .submit-feedback.show {
      display: block;
    }

    /* Estado éxito */
    .submit-feedback.show.success {
      background: rgba(34, 197, 94, 0.15);
      border: 1px solid rgba(34, 197, 94, 0.35);
      color: #86efac;
    }

    /* Estado error */
    .submit-feedback.show.error {
      background: rgba(239, 68, 68, 0.15);
      border: 1px solid rgba(239, 68, 68, 0.35);
      color: #fca5a5;
    }

    .elementor-widget-html,
    .elementor-widget-html .elementor-widget-container {
      width: 100% !important;
      max-width: none !important;
      overflow: visible !important;
    }

    .site-footer {
      position: relative !important;
      left: 50% !important;
      transform: translateX(-50%) !important;
      width: 100vw !important;
      min-width: 100vw !important;
      max-width: 100vw !important;
      margin: 0 !important;
      padding: 0 !important;
      background: #000000 !important;
      color: var(--secondary-foreground);
      box-sizing: border-box;
    }

    .site-footer-inner {
      width: min(var(--container), calc(100vw - 64px));
      max-width: 100%;
      margin: 0 auto;
      padding: 0;
      box-sizing: border-box;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.15fr .85fr .85fr .85fr;
      gap: 30px;
      padding: 68px 0 34px;
    }

    .footer-brand img {
      height: 66px;
      width: auto;
      margin-bottom: 16px;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .footer-brand:hover img {
      transform: scale(1.025);
    }

        .footer-brand p, .footer-column li {
      color: rgba(247,247,247,.74);
      font-size: 14px;
    }
    .footer-column a {
      color: rgba(247,247,247,.74);
      font-size: 14px;
      transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .footer-column a:hover {
      color: #ffffff;
    }

    .footer-column h3 {
      margin: 0 0 16px;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
    }

    .footer-divider {
      border-top: 1px solid rgba(247,247,247,.18);
      padding: 24px 0 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    .footer-divider p {
      margin: 0;
      color: rgba(247,247,247,.74);
      font-size: 14px;
    }

    .footer-legal {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    .footer-legal a {
      color: rgba(247,247,247,.74);
      font-size: 14px;
      transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .footer-legal a:hover {
      color: #ffffff;
    }

    .arrow-link svg, .btn svg {
      transition: transform .2s ease;
    }

    .arrow-link:hover svg, .btn:hover svg {
      transform: translateX(3px);
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* ==========================================================================
       SECCIÓN PLANES MENSUALES
       ========================================================================== */
    .planes-section {
      background: #f8fafc;
      border-top: 1px solid rgba(17, 17, 17, 0.05);
      border-bottom: 1px solid rgba(17, 17, 17, 0.05);
    }

    .plans-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 48px;
      align-items: stretch;
    }

    .plan-card {
      background: #ffffff;
      border-radius: 24px;
      border: 1px solid var(--border);
      padding: 40px 32px;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease;
      box-shadow: var(--shadow-sm);
    }

    .plan-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow);
      border-color: rgba(99, 102, 241, 0.35);
    }

    /* Resalte del Plan Destacado */
    .plan-card.featured {
      border: 2px solid var(--primary);
      box-shadow: var(--shadow-primary);
      transform: scale(1.03);
    }

    .plan-card.featured:hover {
      transform: scale(1.03) translateY(-8px);
      box-shadow: 0 24px 60px rgba(99, 102, 241, 0.35);
    }

    .plan-ribbon {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--primary-gradient);
      color: #ffffff;
      font-size: 11px;
      font-weight: 800;
      padding: 6px 16px;
      border-radius: 99px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
      z-index: 10;
    }

    .plan-header {
      display: flex;
      flex-direction: column;
      margin-bottom: 28px;
    }

    .plan-badge {
      align-self: flex-start;
      padding: 6px 12px;
      border-radius: 99px;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 16px;
      background: rgba(99, 102, 241, 0.08);
      color: var(--primary);
    }

    .plan-card.featured .plan-badge {
      background: var(--primary);
      color: #ffffff;
    }

    .plan-name {
      font-size: 24px;
      font-weight: 800;
      margin: 0 0 10px;
      color: #0f172a;
    }

    .plan-desc {
      font-size: 14.5px;
      color: var(--muted-foreground);
      margin: 0 0 24px;
      line-height: 1.5;
    }

    .plan-price {
      display: flex;
      align-items: baseline;
      gap: 2px;
      margin-bottom: 20px;
    }

    .plan-price .currency {
      font-size: 22px;
      font-weight: 700;
      color: #0f172a;
    }

    .plan-price .amount {
      font-size: 42px;
      font-weight: 800;
      color: #0f172a;
      letter-spacing: -0.02em;
      line-height: 1;
    }

    .plan-price .period {
      font-size: 14.5px;
      color: var(--muted-foreground);
      font-weight: 600;
      margin-left: 4px;
    }

    .plan-subdesc {
      font-size: 13.5px;
      color: #475569;
      font-style: italic;
      border-left: 3px solid #cbd5e1;
      padding-left: 12px;
      margin: 0;
      line-height: 1.45;
    }

    .plan-card.featured .plan-subdesc {
      border-left-color: var(--primary);
    }

    .plan-body {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      gap: 24px;
      border-top: 1px solid var(--border);
      padding-top: 24px;
    }

    .plan-features-group h4,
    .plan-ideal-group h4,
    .plan-excludes-group h4 {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #0f172a;
      margin: 0 0 12px;
    }

    .plan-features-list,
    .plan-excludes-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
    }

    .plan-features-list li,
    .plan-excludes-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: #374151;
      line-height: 1.4;
    }

    .plan-features-list li strong {
      color: #0f172a;
    }

    .plan-features-list .check-circle {
      width: 18px;
      height: 18px;
      color: var(--success);
      flex: 0 0 18px;
      margin-top: 1px;
    }

    .plan-excludes-list .x-circle {
      width: 18px;
      height: 18px;
      color: #94a3b8;
      flex: 0 0 18px;
      margin-top: 1px;
    }

    .plan-features-list li.nested-feature {
      padding-left: 28px;
      font-size: 13px;
      color: #475569;
    }

    .plan-features-list li.nested-feature .feature-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #94a3b8;
      flex: 0 0 5px;
      margin-top: 7px;
    }

    .plan-ideal-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .plan-ideal-chips span {
      background: #f1f5f9;
      color: #475569;
      font-size: 12px;
      font-weight: 600;
      padding: 5px 10px;
      border-radius: 8px;
    }

    .plan-excludes-list li {
      color: #64748b;
    }

    .plan-footer {
      margin-top: 32px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      border-top: 1px solid var(--border);
      padding-top: 24px;
    }

    .plan-setup-box {
      background: #f8fafc;
      border: 1px dashed #cbd5e1;
      border-radius: 12px;
      padding: 12px 14px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .plan-card.featured .plan-setup-box {
      background: rgba(99, 102, 241, 0.03);
      border-color: rgba(99, 102, 241, 0.25);
    }

    .plan-setup-box .setup-label {
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      color: #64748b;
      letter-spacing: 0.05em;
    }

    .plan-setup-box .setup-price {
      font-size: 13px;
      font-weight: 700;
      color: #0f172a;
      line-height: 1.35;
    }

    .plan-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      width: 100%;
      border-radius: 12px;
      font-size: 14.5px;
      font-weight: 700;
      border: 1.5px solid var(--primary);
      color: var(--primary);
      background: transparent;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      text-decoration: none;
    }

    .plan-btn:hover {
      background: var(--primary);
      color: #ffffff;
      transform: translateY(-2px);
      box-shadow: var(--shadow-primary);
    }

    .plan-card.featured .plan-btn {
      background: var(--primary-gradient);
      color: #ffffff;
      border: 1.5px solid transparent;
      box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
    }

    .plan-card.featured .plan-btn:hover {
      background: var(--primary-strong);
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(99, 102, 241, 0.35);
    }

    @media (max-width: 1080px) {
      .hero-grid,
      .contact-grid,
      .footer-top {
        grid-template-columns: 1fr;
      }

      .plans-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
      }

      .plan-card.featured {
        transform: scale(1);
      }

      .plan-card.featured:hover {
        transform: translateY(-8px);
      }

      .hero-media {
        width: 100%;
        max-width: none;
        margin: 0;
        justify-content: center;
      }

      .hero-media-frame {
        max-width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
      }

      .pillars-grid {
        grid-template-columns: 1fr;
      }

      .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 920px) {
      .desktop-nav,
      .header-actions .desktop-cta {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
        position: relative;
      }

      .services-grid,
      .hero-bottom-grid {
        grid-template-columns: 1fr 1fr;
      }

      .product-row, .product-row-section.light-bg .product-row {
        flex-direction: column !important;
        gap: 32px;
      }

      .product-info, .product-media {
        flex: 1 1 100%;
        width: 100%;
      }

      .product-row-section {
        padding: 64px 0;
      }

      /* Compactar el texto del hero para evitar que tape la laptop en tablets y laptops pequeñas */
      .accent-dots,
      .kicker-line,
      .hero-divider-row,
      .hero-kicker-row {
        display: none !important;
      }

      .hero-title {
        font-size: clamp(28px, 5vw, 38px) !important;
        letter-spacing: -1px;
        margin-bottom: 12px !important;
      }

      .title-accent-row {
        display: inline;
        text-align: center;
      }
    }

    @media (max-width: 720px) {
      .section {
        padding: 72px 0;
      }

      .hero-inner {
        padding-top: 16px !important;
      }

      .hero-grid {
        gap: 12px !important;
        padding-bottom: 24px !important;
      }

      .hero-actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .services-grid,
      .hero-bottom-grid,
      .about-stats-grid,
      .footer-top,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .service-card, .pillar-card, .about-stats, .contact-card-body, .contact-card-header {
        padding-left: 16px;
        padding-right: 16px;
      }

      .header-inner {
        min-height: 84px;
      }

      .brand img {
        height: 38px;
      }

      .service-card {
        min-height: auto;
        padding: 14px 14px 16px;
      }

      .service-media {
        max-width: 100%;
      }

      .service-media img {
        height: 180px;
      }

      .service-body {
        min-height: auto;
      }

      .hero-title {
        font-size: clamp(22px, 6vw, 28px) !important;
        letter-spacing: -0.5px;
        margin-bottom: 8px !important;
      }

      .hero p.lead {
        font-size: 14px !important;
        margin-bottom: 12px !important;
        line-height: 1.4 !important;
      }

      .hero-laptop-spacer {
        display: none !important;
      }
      
      .hero {
        background-position: center 20% !important; /* Muestra mejor parte de la imagen */
        padding-bottom: 20px;
      }

      .hero-media-frame {
        height: auto;
        aspect-ratio: 16 / 9;
        min-height: 0;
      }

      .site-footer-inner {
        width: min(var(--container), calc(100vw - 24px));
      }
    }

    /* --- Animations (Scroll Reveal) --- */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    /* ==========================================================================
       ESTILOS DE ALTERNANCIA DE FONDOS (Blanco / Azul Oscuro)
       ========================================================================== */

    /* Acentuación en texto claro para fondo claro */
    .accent-text {
      color: var(--primary) !important;
      font-weight: 800;
    }

    /* Fondo Blanco para Servicios */
    #servicios {
      background: #ffffff;
    }

    /* Encabezado de Productos Claro */
    .products-header-wrapper.light-bg {
      background: #ffffff;
      color: var(--foreground);
    }
    .products-header-wrapper.light-bg h2 {
      color: #0f172a !important;
    }
    .products-header-wrapper.light-bg p {
      color: var(--muted-foreground);
    }

    /* Sección Planes Mensuales en Azul Oscuro */
    .planes-section.dark-bg {
      background: var(--secondary) !important;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .planes-section.dark-bg .section-header h2 {
      color: #ffffff !important;
    }
    .planes-section.dark-bg .section-header p {
      color: rgba(255, 255, 255, 0.65);
    }

    /* Tarjetas de Planes en Modo Oscuro */
    .planes-section.dark-bg .plan-card {
      background: #161920; /* Fondo gris-azul oscuro premium */
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    .planes-section.dark-bg .plan-card:hover {
      border-color: rgba(99, 102, 241, 0.45);
      box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
    }
    .planes-section.dark-bg .plan-card.featured {
      border: 2px solid var(--primary);
      box-shadow: var(--shadow-primary);
      background: linear-gradient(180deg, #1a1e29 0%, #11141b 100%);
    }
    .planes-section.dark-bg .plan-name {
      color: #ffffff;
    }
    .planes-section.dark-bg .plan-desc {
      color: rgba(255, 255, 255, 0.7);
    }
    .planes-section.dark-bg .plan-price .currency,
    .planes-section.dark-bg .plan-price .amount {
      color: #ffffff;
    }
    .planes-section.dark-bg .plan-price .period {
      color: rgba(255, 255, 255, 0.6);
    }
    .planes-section.dark-bg .plan-subdesc {
      color: rgba(255, 255, 255, 0.65);
      border-left-color: rgba(255, 255, 255, 0.2);
    }
    .planes-section.dark-bg .plan-card.featured .plan-subdesc {
      border-left-color: var(--primary);
    }
    .planes-section.dark-bg .plan-body {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .planes-section.dark-bg .plan-features-group h4 {
      color: #ffffff;
    }
    .planes-section.dark-bg .plan-features-list li {
      color: rgba(255, 255, 255, 0.82);
    }
    .planes-section.dark-bg .plan-features-list li strong {
      color: #ffffff;
    }
    .planes-section.dark-bg .plan-features-list li.nested-feature {
      color: rgba(255, 255, 255, 0.65);
    }
    .planes-section.dark-bg .plan-features-list li.nested-feature .feature-dot {
      background: rgba(255, 255, 255, 0.3);
    }
    .planes-section.dark-bg .plan-footer {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .planes-section.dark-bg .plan-setup-box {
      background: rgba(255, 255, 255, 0.03);
      border: 1px dashed rgba(255, 255, 255, 0.15);
    }
    .planes-section.dark-bg .plan-setup-box .setup-label {
      color: rgba(255, 255, 255, 0.45);
    }
    .planes-section.dark-bg .plan-setup-box .setup-price {
      color: #ffffff;
    }
    .planes-section.dark-bg .plan-btn {
      color: #ffffff;
      border-color: rgba(255, 255, 255, 0.3);
    }
    .planes-section.dark-bg .plan-btn:hover {
      background: var(--primary);
      border-color: var(--primary);
      color: #ffffff;
    }
    .planes-section.dark-bg .plan-card.featured .plan-btn {
      background: var(--primary-gradient);
      color: #ffffff;
      border: 1.5px solid transparent;
    }
    .planes-section.dark-bg .plan-card.featured .plan-btn:hover {
      background: var(--primary-strong);
    }

    /* Sección Nosotros en Fondo Blanco */
    .about.light-bg {
      background: #ffffff !important;
      color: #374151;
      border-top: 1px solid rgba(17, 17, 17, 0.05);
      border-bottom: 1px solid rgba(17, 17, 17, 0.05);
    }
    .about.light-bg::before {
      background-image: radial-gradient(circle at 1px 1px, #0f172a 1px, transparent 0);
      opacity: 0.03;
    }
    .about.light-bg h2 {
      color: #0f172a !important;
    }
    .about.light-bg .section-header p {
      color: var(--muted-foreground);
    }
    .about.light-bg .pillar-card {
      background: #ffffff;
      border: 1px solid #dfe5f0;
      box-shadow: var(--shadow-sm);
    }
    .about.light-bg .pillar-card:hover {
      background: #ffffff;
      border-color: rgba(99, 102, 241, 0.4);
      box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    }
    .about.light-bg .pillar-card h3 {
      color: #0f172a !important;
    }
    .about.light-bg .pillar-card p {
      color: var(--muted-foreground);
    }
    .about.light-bg .pillar-features li {
      color: #374151;
    }
    .about.light-bg .pillar-icon {
      background: rgba(99, 102, 241, 0.08);
      border: 1px solid rgba(99, 102, 241, 0.15);
      color: var(--primary);
    }
    .about.light-bg .check-circle {
      color: var(--primary);
    }
    .about.light-bg .about-cta p {
      color: var(--muted-foreground);
    }

    /* Sección Contacto en Fondo Azul Oscuro */
    .contact.dark-bg {
      background: var(--secondary) !important;
      color: #ffffff;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .contact.dark-bg h2 {
      color: #ffffff !important;
    }
    .contact.dark-bg .section-header p {
      color: rgba(255, 255, 255, 0.65);
    }
    .contact.dark-bg .contact-item h3 {
      color: #ffffff !important;
    }
    .contact.dark-bg .contact-item p {
      color: rgba(255, 255, 255, 0.72);
    }
    .contact.dark-bg .contact-item a {
      color: rgba(255, 255, 255, 0.85);
      transition: color 0.2s ease;
    }
    .contact.dark-bg .contact-item a:hover {
      color: #8b8cff;
    }
    .contact.dark-bg .contact-icon {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: #8b8cff;
    }

    /* Formulario Dark Glassmorphic */
    .contact.dark-bg .contact-card {
      background: #161920; /* Fondo sólido oscuro satinado */
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    }
    .contact.dark-bg .contact-card-header h3 {
      color: #ffffff !important;
    }
    .contact.dark-bg .contact-card-body {
      background: transparent;
    }
    .contact.dark-bg .form-field label {
      color: rgba(255, 255, 255, 0.85);
    }
    .contact.dark-bg .input,
    .contact.dark-bg .textarea {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: #ffffff;
      box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
    }
    .contact.dark-bg .input::placeholder,
    .contact.dark-bg .textarea::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }
    .contact.dark-bg .input:hover,
    .contact.dark-bg .textarea:hover {
      border-color: rgba(255, 255, 255, 0.25);
      background: rgba(255, 255, 255, 0.06);
    }
    .contact.dark-bg .input:focus,
    .contact.dark-bg .textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2), inset 0 1px 2px rgba(0, 0, 0, 0.2);
      background: rgba(255, 255, 255, 0.07);
    }
    .contact.dark-bg .submit-feedback {
      background: rgba(34, 197, 94, 0.15);
      color: #4ade80;
    }

/* ==========================================================================
   PÁGINA LEGAL (legal.html)
   ========================================================================== */
.legal-section {
  padding: 140px 0 80px;
  background: var(--secondary) !important;
  color: #ffffff;
  min-height: calc(100vh - 100px);
  position: relative;
  overflow: hidden;
}

.legal-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .02;
  background-image: radial-gradient(circle at 1px 1px, #ffffff 1px, transparent 0);
  background-size: 30px 30px;
}

.legal-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.legal-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.legal-sidebar h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.legal-nav-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-tab-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.legal-tab-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transform: translateX(4px);
}

.legal-tab-btn.active {
  background: rgba(99, 102, 241, 0.12);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
}

.legal-tab-btn svg {
  width: 18px;
  height: 18px;
  opacity: 0.6;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.legal-tab-btn.active svg {
  opacity: 1;
  color: #8b8cff;
}

.legal-content-container {
  min-height: 500px;
}

.legal-content-card {
  background: #161920; /* Coherente con las tarjetas de los planes en oscuro */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  display: none;
  animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.legal-content-card.active {
  display: block;
}

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

.legal-content-card h1 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 12px;
  color: #ffffff;
  letter-spacing: -1px;
}

.legal-date {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
  display: block;
}

.legal-body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.legal-body h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 36px 0 16px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 8px;
}

.legal-body p {
  margin: 0 0 20px;
}

.legal-body ul, .legal-body ol {
  margin: 0 0 24px;
  padding-left: 20px;
}

.legal-body li {
  margin-bottom: 8px;
}

.legal-body a {
  color: #8b8cff;
  text-decoration: none;
  border-bottom: 1px dashed rgba(139, 140, 255, 0.4);
  transition: all 0.2s ease;
}

.legal-body a:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

/* ==========================================================================
   RESPONSIVO PÁGINA LEGAL
   ========================================================================== */
@media (max-width: 920px) {
  .legal-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .legal-sidebar {
    position: static;
  }
  
  .legal-nav-tabs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .legal-nav-tabs::-webkit-scrollbar {
    display: none;
  }
  
  .legal-tab-btn {
    flex: 0 0 auto;
    width: auto;
    white-space: nowrap;
    padding: 12px 18px;
  }
  
  .legal-tab-btn:hover {
    transform: none;
  }
  
  .legal-content-card {
    padding: 30px 24px;
  }
  
  .legal-content-card h1 {
    font-size: 26px;
  }
}

/* ==========================================================================
   OPCIONES DE CREACIÓN Y COMPLEJIDAD (Nuestros Servicios)
   ========================================================================== */
.creations-wrapper {
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px dashed rgba(15, 23, 42, 0.08);
}

.creations-header {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.badge.badge-primary-subtle {
  background: rgba(99, 102, 241, 0.08);
  color: var(--primary);
  border: 1px solid rgba(99, 102, 241, 0.12);
  padding: 6px 14px;
  font-size: 12px;
}

.creations-header h3 {
  margin: 14px 0 14px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #111111;
}

.creations-header p {
  font-size: 16px;
  color: #475569;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.creations-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

.creation-row {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.creation-row-body {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 36px;
  align-items: stretch;
}

.creation-highlight-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

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

.highlight-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.highlight-emoji {
  font-size: 26px;
  line-height: 1;
  display: block;
}

.creation-highlight-card h4 {
  font-size: 20px;
  font-weight: 850;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.4px;
  line-height: 1.35;
}

.highlight-price {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(99, 102, 241, 0.04);
  border: 1px solid rgba(99, 102, 241, 0.1);
  padding: 5px 14px;
  border-radius: 10px;
  display: inline-block;
  transition: all 0.3s ease;
}

.creation-highlight-card:hover .highlight-price {
  background: rgba(99, 102, 241, 0.07);
  border-color: rgba(99, 102, 241, 0.15);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.03);
}

.highlight-image-container {
  width: 100%;
  flex-grow: 1;
  min-height: 200px;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.highlight-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.creation-highlight-card:hover .highlight-image-container img {
  transform: scale(1.04);
}

.creation-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.creation-detail-card {
  background: rgba(0, 82, 255, 0.18);
  border: 1.5px solid rgba(0, 210, 255, 0.4);
  border-radius: 20px;
  padding: 34px 28px;
  box-shadow: 0 15px 40px rgba(0, 82, 255, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Línea brillante cyan en la parte superior, igual que pillar-glass-card.featured */
.creation-detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00d2ff, transparent);
  box-shadow: 0 0 10px #00d2ff;
  pointer-events: none;
}

.creation-detail-card:hover {
  transform: translateY(-5px);
  background: rgba(0, 82, 255, 0.24);
  box-shadow: 0 20px 50px rgba(0, 82, 255, 0.45);
  border-color: rgba(0, 210, 255, 0.6);
}

/* ── Variante naranja: Creación de Aplicaciones Móviles ── */
.creation-detail-card.orange {
  background: rgba(220, 90, 0, 0.18);
  border: 1.5px solid rgba(255, 150, 50, 0.45);
  box-shadow: 0 15px 40px rgba(200, 70, 0, 0.28);
}

.creation-detail-card.orange::before {
  background: linear-gradient(90deg, transparent, #ff8c00, transparent);
  box-shadow: 0 0 10px #ff8c00;
}

.creation-detail-card.orange:hover {
  background: rgba(220, 90, 0, 0.26);
  box-shadow: 0 20px 50px rgba(200, 70, 0, 0.45);
  border-color: rgba(255, 150, 50, 0.7);
}

.detail-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dot-indicator {
  display: none;
}

.dot-indicator.simple,
.dot-indicator.medium,
.dot-indicator.complex {
  display: none;
}

.creation-detail-card h5 {
  font-size: 20px;
  font-weight: 700;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111111;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
  line-height: 1.2;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.example-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.example-list li {
  font-size: 13.5px;
  line-height: 1.5;
  color: #111111;
  display: flex;
  align-items: start;
  gap: 8px;
}

.example-list li strong {
  color: #111111;
}

.example-list .bullet {
  color: #111111;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 1px;
}

.creations-disclaimer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  background: rgba(99, 102, 241, 0.02);
  border: 1px solid rgba(99, 102, 241, 0.08);
  border-left: 4px solid var(--primary);
  border-radius: 20px;
  padding: 26px 32px;
  margin-top: 20px;
  align-items: center;
  box-shadow: 0 4px 24px rgba(99, 102, 241, 0.01);
  transition: all 0.3s ease;
}

.creations-disclaimer:hover {
  background: rgba(99, 102, 241, 0.03);
  border-color: rgba(99, 102, 241, 0.12);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.03);
}

.disclaimer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.06);
  color: var(--primary);
  transition: all 0.3s ease;
}

.creations-disclaimer:hover .disclaimer-icon {
  transform: scale(1.08);
  background: rgba(99, 102, 241, 0.1);
}

.disclaimer-svg {
  width: 22px;
  height: 22px;
  display: block;
}

.disclaimer-text {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

.disclaimer-text strong {
  color: #0f172a;
  font-weight: 800;
}

/* ==========================================================================
   RESPONSIVO SUB-SECCIÓN
   ========================================================================== */
@media (max-width: 1200px) {
  .creation-row-body {
    grid-template-columns: 350px 1fr;
    gap: 28px;
  }
}

@media (max-width: 992px) {
  .creation-row-body {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .creation-highlight-card {
    flex-direction: column;
    padding: 24px;
    min-height: unset;
    height: auto;
  }
  
  .highlight-image-container {
    width: 100%;
    height: 180px;
    flex-grow: 0;
  }
  
  .creation-details-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .creation-details-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .creations-disclaimer {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }
  
  .disclaimer-icon {
    width: 40px;
    height: 40px;
  }
}

/* ==========================================================================
   PERFIL DEL FUNDADOR Y DESARROLLADOR (ESTILO COMPACTO Y ORGANIZADO - LIGHT THEME)
   ========================================================================== */
.founder-card {
  background: #ffffff;
  border: 1px solid #dfe5f0;
  border-radius: 24px;
  padding: 40px;
  margin-top: 24px;
  box-shadow: var(--shadow-sm);
}

.founder-header {
  display: flex;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid #dfe5f0;
  padding-bottom: 28px;
  margin-bottom: 28px;
}

.founder-avatar-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary);
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.15);
  flex-shrink: 0;
  position: relative;
}

.founder-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.founder-avatar-wrapper:hover .founder-avatar {
  transform: scale(1.08);
}

.founder-title-block {
  flex-grow: 1;
}

.founder-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  background: rgba(99, 102, 241, 0.08);
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 8px;
  border: 1px solid rgba(99, 102, 241, 0.15);
}

.founder-title-block h3 {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 4px 0;
  color: #0f172a !important;
  line-height: 1.2;
}

.founder-role {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted-foreground);
  margin: 0 0 16px 0;
}

.founder-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 13.5px;
  color: var(--muted-foreground);
}

.founder-meta span {
  display: inline-flex;
  align-items: center;
}

.founder-meta span svg {
  color: var(--primary);
}

.founder-meta .linkedin-badge {
  color: #8b5cf6;
  font-style: italic;
  font-weight: 600;
  font-size: 12.5px;
  background: rgba(139, 92, 246, 0.08);
  padding: 2px 10px;
  border-radius: 99px;
  border: 1px solid rgba(139, 92, 246, 0.15);
}

.founder-body {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
}

.founder-bio-col h4,
.founder-tech-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-strong);
  margin: 0 0 16px 0;
}

.founder-bio-col p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted-foreground);
  margin: 0 0 14px 0;
}

.founder-bio-col p:last-child {
  margin-bottom: 0;
}

.founder-bio-col p strong {
  color: #0f172a;
  font-weight: 600;
}

.tech-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
}

.tech-chip {
  background: rgba(99, 102, 241, 0.04);
  border: 1px solid rgba(99, 102, 241, 0.1);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted-foreground);
  transition: all 0.2s ease;
}

.tech-chip:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-primary);
}

/* Responsividad para el perfil del fundador */
@media (max-width: 992px) {
  .founder-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .founder-card {
    padding: 28px;
  }
  
  .founder-header {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 20px;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  
  .founder-meta {
    justify-content: center;
    gap: 16px;
  }
}

/* ============================================================
   SECCIÓN: Formas fáciles de empezar
   ============================================================ */

.easy-start-section {
  background: #ffffff;
  padding: 88px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.easy-start-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.easy-start-header h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  margin: 16px 0 14px;
  line-height: 1.15;
  color: #0f172a !important;
}

.easy-start-header p {
  font-size: 17px;
  line-height: 1.75;
  color: #374151;
  margin: 0;
}

/* Grid de 3 tarjetas */
.easy-start-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

/* Tarjeta base */
.easy-card {
  background: #fafafa;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.easy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
  border-color: rgba(99, 102, 241, 0.25);
}

/* Tarjeta destacada */
.easy-card--featured {
  background: var(--secondary);
  border-color: transparent;
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.2);
  transform: scale(1.03);
}

.easy-card--featured:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 30px 64px rgba(15, 23, 42, 0.28);
}

.easy-card--featured h3,
.easy-card--featured h3 * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.easy-card--featured p {
  color: rgba(255, 255, 255, 0.72) !important;
  font-weight: 400;
}

/* Label "Más popular" */
.easy-card-featured-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
}

/* Icono */
.easy-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
}

.easy-card-icon svg {
  width: 24px;
  height: 24px;
}

.easy-card--featured .easy-card-icon {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: #a5b4fc;
}

/* Número de opción */
.easy-card-step {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.easy-card--featured .easy-card-step {
  color: #a5b4fc;
}

/* Título de tarjeta */
.easy-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.3;
  color: #0f172a !important;
}

/* Texto de tarjeta */
.easy-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #374151;
  margin: 0 0 20px;
}

/* Tags */
.easy-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.easy-card-tags span {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.07);
  border: 1px solid rgba(99, 102, 241, 0.15);
  color: var(--primary-strong);
}

.easy-card--featured .easy-card-tags span {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.95);
}

/* CTA dentro de la tarjeta destacada */
.easy-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  color: #a5b4fc;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.easy-card-cta:hover {
  gap: 10px;
  color: #ffffff;
}

/* Footer de la sección */
.easy-start-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.easy-start-footer p {
  font-size: 16px;
  color: #374151;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .easy-start-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .easy-card--featured {
    transform: none;
  }

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

@media (max-width: 640px) {
  .easy-start-section {
    padding: 64px 0;
  }

  .easy-card {
    padding: 28px 24px;
  }

  .easy-start-footer {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}
