

    /* ─── TOKENS ─── */
    :root {
      --v1: #6B3FFF;
      --v2: #4A7DFF;
      --v3: #8B5FFF;
      --accent: #00D4FF;
      --dark: #08070F;
      --dark2: #0D0C17;
      --dark3: #13111F;
      --surface: #1A1730;
      --surface2: #221F38;
      --txt: #E8E4FF;
      --txt2: #9B96C0;
      --white: #ffffff;
      --whatsapp: #25D366;
      --grad: linear-gradient(135deg, var(--v1) 0%, var(--v2) 100%);
      --grad2: linear-gradient(135deg, var(--v3) 0%, var(--accent) 100%);
      --glow: 0 0 60px rgba(107,63,255,0.35);
      --r: 16px;
    }

    /* ─── RESET ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--dark);
      color: var(--txt);
      overflow-x: hidden;
      cursor: none;
    }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }

    /* ─── CUSTOM CURSOR ─── */
    .cursor {
      position: fixed; width: 12px; height: 12px;
      background: var(--v1); border-radius: 50%;
      pointer-events: none; z-index: 99999;
      transform: translate(-50%,-50%);
      transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
      mix-blend-mode: exclusion;
    }
    .cursor-ring {
      position: fixed; width: 36px; height: 36px;
      border: 1.5px solid rgba(107,63,255,0.5);
      border-radius: 50%; pointer-events: none; z-index: 99998;
      transform: translate(-50%,-50%);
      transition: transform 0.15s ease, width 0.3s, height 0.3s;
    }
    body:has(a:hover) .cursor { width: 20px; height: 20px; background: var(--accent); }
    body:has(a:hover) .cursor-ring { width: 50px; height: 50px; }

    /* ─── NOISE TEXTURE ─── */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 0; opacity: 0.4;
    }

    /* ─── NAV ─── */

    
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 1rem 2rem;
      display: flex; align-items: center; justify-content: space-between;
      transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
    }
    nav.scrolled {
      background: rgba(8,7,15,0.85);
      backdrop-filter: blur(20px);
      padding: 0.75rem 2rem;
      border-bottom: 1px solid rgba(107,63,255,0.15);
    }
    .nav-logo {
      display: flex; align-items: center; gap: 0.6rem;
      font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.25rem;
    }
    .nav-logo .pw { color: var(--white); }
    .nav-logo .dot-ar { color: var(--v2); }
    .nav-logo img { height: 5rem; }
    .nav-links { display: flex; gap: 2.5rem; align-items: center; }
    .nav-links a {
      font-size: 0.9rem; font-weight: 500; letter-spacing: 0.03em;
      color: var(--txt2); position: relative;
      transition: color 0.3s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0;
      width: 0; height: 1.5px;
      background: var(--grad);
      transition: width 0.3s;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      background: var(--grad); color: var(--white) !important;
      padding: 0.5rem 1.2rem; border-radius: 50px;
      font-weight: 600 !important; font-size: 0.85rem !important;
      transition: opacity 0.3s, transform 0.3s !important;
    }
    .nav-cta:hover { opacity: 0.9; transform: translateY(-1px) !important; }
    .nav-cta::after { display: none !important; }
    .burger { display: none; background: none; border: none; cursor: none; color: var(--txt); font-size: 1.4rem; }





    /* ─── HERO ─── */
    .hero {
      position: relative; min-height: 100vh;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }

    .hero-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    /* .hero-bg {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(107,63,255,0.18) 0%, transparent 70%),
                  radial-gradient(ellipse 50% 40% at 80% 50%, rgba(74,125,255,0.12) 0%, transparent 60%),
                  var(--dark);
    } */

    .hero-bg {
      position: absolute;
      inset: 0;
      background: rgba(8,7,15,0.6); /* oscurece el video */
      z-index: 1;
    }

    .hero-video {
      filter: brightness(0.5) contrast(1.1);
    }


    /* Parallax orbs */
    .orb {
      position: absolute; border-radius: 50%;
      filter: blur(80px); pointer-events: none;
    }
    .orb-1 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(107,63,255,0.25) 0%, transparent 70%);
      top: -100px; left: -100px;
    }
    .orb-2 {
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(74,125,255,0.2) 0%, transparent 70%);
      top: 20%; right: -80px;
    }
    .orb-3 {
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%);
      bottom: 10%; left: 30%;
    }
    /* Grid lines */
    .hero-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(107,63,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(107,63,255,0.05) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    }

    .hero-content {
      position: relative; z-index: 2;
      text-align: center; max-width: 1000px;
       /* padding: 0 1.5rem; */
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(107,63,255,0.12); border: 1px solid rgba(107,63,255,0.3);
      padding: 0.4rem 1rem; border-radius: 50px;
      font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em;
      color: var(--accent); text-transform: uppercase;
      margin-bottom: 1.8rem;
      animation: fadeUp 0.8s ease both;
    }
    .hero-eyebrow span { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100% { opacity:1; } 50% { opacity: 0.3; } }

    .hero h1 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      font-weight: 800; line-height: 1.05;
      letter-spacing: -0.02em;
      animation: fadeUp 0.8s 0.1s ease both;
    }
    
    .hero h1 .grad-text {
      background: var(--grad);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero h1 .outline-text {
      -webkit-text-stroke: 1.5px rgba(255,255,255,0.7);
      -webkit-text-fill-color: rgba(255,255,255,0.15);
    }
    .hero-sub {
      margin-top: 1.5rem; font-size: 1.1rem; line-height: 1.7;
      color: var(--txt2); max-width: 560px; margin-left: auto; margin-right: auto;
      animation: fadeUp 0.8s 0.2s ease both;
    }
    .hero-tags {
      display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap;
      margin-top: 1.5rem;
      animation: fadeUp 0.8s 0.3s ease both;
    }
    .hero-tag {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
      padding: 0.35rem 0.9rem; border-radius: 50px;
      font-size: 0.82rem; color: var(--txt2);
    }
    .hero-actions {
      display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
      margin-top: 2.5rem;
      animation: fadeUp 0.8s 0.4s ease both;
    }
    .btn-primary {
      background: var(--grad); color: var(--white);
      padding: 0.9rem 2rem; border-radius: 50px;
      font-weight: 600; font-size: 0.95rem;
      display: inline-flex; align-items: center; gap: 0.5rem;
      transition: all 0.3s; position: relative; overflow: hidden;
      box-shadow: 0 0 30px rgba(107,63,255,0.4);
    }
    .btn-primary::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
      transform: translateX(-100%); transition: transform 0.5s;
    }
    .btn-primary:hover::before { transform: translateX(100%); }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(107,63,255,0.6); }
    .btn-ghost {
      background: transparent; color: var(--txt);
      padding: 0.9rem 2rem; border-radius: 50px;
      font-weight: 500; font-size: 0.95rem;
      border: 1px solid rgba(255,255,255,0.15);
      display: inline-flex; align-items: center; gap: 0.5rem;
      transition: all 0.3s;
    }
    .btn-ghost:hover { border-color: var(--v1); color: var(--white); background: rgba(107,63,255,0.08); }

    .hero-scroll {
      position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
      font-size: 0.75rem; color: var(--txt2); letter-spacing: 0.1em; text-transform: uppercase;
      animation: fadeUp 1s 0.8s ease both;
      z-index: 2;
    }
    .scroll-line {
      width: 1px; height: 50px;
      background: linear-gradient(to bottom, var(--v1), transparent);
      animation: scrollLine 2s ease infinite;
    }
    @keyframes scrollLine {
      0% { transform: scaleY(0); transform-origin: top; }
      50% { transform: scaleY(1); transform-origin: top; }
      50.01% { transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; }
    }

    /* Floating cards preview */
    .hero-mockup {
      position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
      width: 320px; z-index: 1; opacity: 0.6;
      animation: floatY 6s ease-in-out infinite;
      display: none;
    }
    @media (min-width: 1200px) { .hero-mockup { display: block; } }
    @keyframes floatY { 0%,100% { transform: translateY(-50%) translateY(0); } 50% { transform: translateY(-50%) translateY(-15px); } }

    /* ─── SECTIONS COMMON ─── */
    section { position: relative; z-index: 1; }
    .section-wrap { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
    .section-header { text-align: center; margin-bottom: 4rem; }
    .eyebrow {
      display: inline-block;
      font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--v2); margin-bottom: 0.8rem;
    }
    .section-header h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 700; line-height: 1.15;
      color: var(--white);
    }
    .section-header p {
      margin-top: 0.8rem; color: var(--txt2);
      font-size: 1rem; max-width: 500px; margin-left: auto; margin-right: auto;
      line-height: 1.7;
    }

    /* ─── ABOUT / SOBRE MI ─── */
    #nosotros { padding: 8rem 0 6rem; }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center;
    }
    .about-visual {
      position: relative;
    }
    .about-card {
      background: var(--surface);
      border: 1px solid rgba(107,63,255,0.2);
      border-radius: var(--r); padding: 2.5rem;
      position: relative; overflow: hidden;
    }
    .about-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 2px; background: var(--grad);
    }
    .about-avatar {
      width: 80px; height: 80px; border-radius: 50%;
      background: var(--grad); display: flex; align-items: center; justify-content: center;
      font-size: 2rem; margin-bottom: 1.5rem;
      box-shadow: 0 0 30px rgba(107,63,255,0.4);
    }
    .about-badge {
      position: absolute; top: -15px; right: -15px;
      background: var(--grad); width: 80px; height: 80px; border-radius: 50%;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--white);
      box-shadow: 0 0 30px rgba(107,63,255,0.5);
    }
    .about-badge span { font-size: 0.6rem; font-weight: 500; opacity: 0.85; }
    .about-stats {
      display: flex; gap: 2rem; margin-top: 2rem;
    }
    .stat { text-align: center; }
    .stat-n {
      font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800;
      background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .stat-l { font-size: 0.8rem; color: var(--txt2); }
    .about-text h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 700; line-height: 1.2; color: var(--white);
      margin-bottom: 1.2rem;
    }
    .about-text p { color: var(--txt2); line-height: 1.8; margin-bottom: 1rem; }
    .skill-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
    .chip {
      background: rgba(107,63,255,0.12); border: 1px solid rgba(107,63,255,0.25);
      padding: 0.35rem 0.85rem; border-radius: 50px;
      font-size: 0.8rem; color: var(--txt2);
    }
    .contact-info-mini { margin-top: 2rem; }
    .contact-item {
      display: flex; align-items: center; gap: 0.8rem;
      color: var(--txt2); font-size: 0.9rem; margin-bottom: 0.75rem;
    }
    .contact-item i { color: var(--v2); width: 18px; }

    /* ─── SERVICIOS ─── */
    #productos { padding: 7rem 0; }
    #productos { background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 50%, var(--dark) 100%); }
    .cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
    .plan-card {
      background: var(--surface); border: 1px solid rgba(107,63,255,0.15);
      border-radius: var(--r); padding: 2rem; position: relative; overflow: hidden;
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
      display: flex; flex-direction: column;
    }
    .plan-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 2px; background: var(--grad); opacity: 0; transition: opacity 0.3s;
    }
    .plan-card.featured {
      border-color: rgba(107,63,255,0.5);
      background: linear-gradient(145deg, var(--surface2) 0%, var(--surface) 100%);
    }
    .plan-card.featured::before { opacity: 1; }
    .plan-card:hover {
      transform: translateY(-6px);
      border-color: rgba(107,63,255,0.4);
      box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(107,63,255,0.1);
    }
    .plan-card:hover::before { opacity: 1; }
    .plan-badge {
      display: inline-block; background: var(--grad);
      color: var(--white); font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.05em; text-transform: uppercase;
      padding: 0.25rem 0.75rem; border-radius: 50px; margin-bottom: 1.2rem;
    }
    .plan-icon {
      width: 48px; height: 48px; border-radius: 12px;
      background: rgba(107,63,255,0.15); border: 1px solid rgba(107,63,255,0.25);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; margin-bottom: 1.2rem; color: var(--v2);
    }
    .plan-title {
      font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700;
      color: var(--white); margin-bottom: 0.3rem;
    }
    .plan-sub { font-size: 0.85rem; color: var(--txt2); margin-bottom: 1.5rem; }
    .plan-divider { height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 1.5rem; }
    .plan-features { list-style: none; flex: 1; }
    .plan-features li {
      display: flex; align-items: flex-start; gap: 0.6rem;
      font-size: 0.88rem; color: var(--txt2);
      padding: 0.35rem 0;
    }
    .plan-features li i { color: var(--v2); font-size: 0.8rem; margin-top: 0.2rem; flex-shrink: 0; }
    .plan-cta {
      display: block; text-align: center; margin-top: 1.8rem;
      background: transparent; border: 1px solid rgba(107,63,255,0.4);
      color: var(--txt); padding: 0.75rem; border-radius: 50px;
      font-size: 0.9rem; font-weight: 600;
      transition: all 0.3s;
    }
    .plan-cta:hover { background: var(--grad); border-color: transparent; color: var(--white); }
    .plan-card.featured .plan-cta { background: var(--grad); border-color: transparent; color: var(--white); }
    .plan-card.featured .plan-cta:hover { opacity: 0.85; }

    /* Social media plans */
    .social-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 1.5rem; }
    .social-card {
      background: var(--surface); border: 1px solid rgba(74,125,255,0.15);
      border-radius: var(--r); padding: 2rem; position: relative; overflow: hidden;
      transition: all 0.3s;
    }
    .social-card:hover { transform: translateY(-6px); border-color: rgba(74,125,255,0.4); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
    .social-card::after {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, #833ab4, #fd1d1d, #fcb045);
      opacity: 0; transition: opacity 0.3s;
    }
    .social-card:hover::after { opacity: 1; }
    .plan-price {
      font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--white);
      margin-bottom: 0.3rem;
    }
    .plan-price .amount { font-size: 1.5rem; background: var(--grad2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

    /* ─── FAQ ─── */
    #pregunta-frecuentes { padding: 7rem 0; }
    .faq-list { max-width: 680px; margin: 0 auto; }
    .faq-item {
      border: 1px solid rgba(107,63,255,0.15); border-radius: var(--r);
      margin-bottom: 0.75rem; overflow: hidden;
      transition: border-color 0.3s;
    }
    .faq-item.open { border-color: rgba(107,63,255,0.4); }
    .faq-q {
      width: 100%; background: var(--surface); border: none;
      padding: 1.2rem 1.5rem; text-align: left; cursor: none;
      display: flex; justify-content: space-between; align-items: center;
      color: var(--txt); font-size: 0.95rem; font-weight: 500; font-family: 'DM Sans', sans-serif;
    }
    .faq-q i { color: var(--v2); transition: transform 0.3s; flex-shrink: 0; }
    .faq-item.open .faq-q i { transform: rotate(45deg); }
    .faq-a {
      background: rgba(26,23,48,0.6);
      padding: 0 1.5rem; max-height: 0; overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      color: var(--txt2); font-size: 0.9rem; line-height: 1.7;
    }
    .faq-item.open .faq-a { max-height: 200px; padding: 1rem 1.5rem 1.5rem; }

    /* ─── CONTACTO ─── */
    #contacto { padding: 7rem 0; }
    .contact-wrap {
      display: grid; grid-template-columns: 1fr 1.4fr;
      gap: 4rem; align-items: start;
    }
    .contact-left h2 {
      font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 700; color: var(--white);
      line-height: 1.2; margin-bottom: 1rem;
    }
    .contact-left p { color: var(--txt2); line-height: 1.7; margin-bottom: 2rem; }
    .contact-detail {
      display: flex; align-items: center; gap: 1rem;
      margin-bottom: 1.2rem;
    }
    .contact-icon {
      width: 44px; height: 44px; border-radius: 12px;
      background: rgba(107,63,255,0.12); border: 1px solid rgba(107,63,255,0.2);
      display: flex; align-items: center; justify-content: center;
      color: var(--v2); flex-shrink: 0;
    }
    .contact-detail-text { font-size: 0.9rem; color: var(--txt2); }
    .contact-detail-text strong { display: block; color: var(--txt); margin-bottom: 0.1rem; }
    .hours-badge {
      display: inline-flex; gap: 0.5rem; align-items: center;
      background: rgba(107,63,255,0.08); border: 1px solid rgba(107,63,255,0.2);
      padding: 0.5rem 1rem; border-radius: 50px;
      font-size: 0.82rem; color: var(--txt2); margin-top: 1.5rem;
    }
    .hours-badge i { color: var(--accent); }
    .contact-form { background: var(--surface); border: 1px solid rgba(107,63,255,0.15); border-radius: var(--r); padding: 2.5rem; }
    .form-group { margin-bottom: 1.2rem; }
    .form-group label { display: block; font-size: 0.82rem; color: var(--txt2); margin-bottom: 0.4rem; font-weight: 500; }
    .form-group input, .form-group textarea {
      width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px; padding: 0.8rem 1rem;
      color: var(--txt); font-size: 0.9rem; font-family: 'DM Sans', sans-serif;
      transition: border-color 0.3s, background 0.3s; outline: none;
    }
    .form-group input:focus, .form-group textarea:focus {
      border-color: var(--v1); background: rgba(107,63,255,0.05);
    }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .form-submit {
      width: 100%; background: var(--grad); color: var(--white); border: none;
      padding: 1rem; border-radius: 50px; font-size: 0.95rem; font-weight: 600;
      font-family: 'DM Sans', sans-serif; cursor: none;
      transition: all 0.3s; box-shadow: 0 0 30px rgba(107,63,255,0.3);
    }
    .form-submit:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 0 50px rgba(107,63,255,0.5); }

    /* ─── TRUST BAR ─── */
    .trust-bar {
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 2rem 0; background: var(--dark2);
      overflow: hidden;
    }
    .trust-inner {
      display: flex; gap: 4rem; align-items: center;
      white-space: nowrap;
      animation: marquee 20s linear infinite;
      width: max-content;
    }
    @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
    .trust-item {
      display: inline-flex; align-items: center; gap: 0.6rem;
      font-size: 0.85rem; font-weight: 500; color: var(--txt2);
      flex-shrink: 0;
    }
    .trust-item i { color: var(--v2); }

    /* ─── FOOTER ─── */
    footer {
      background: var(--dark2); border-top: 1px solid rgba(107,63,255,0.1);
      padding: 3rem 0 1.5rem;
    }
    .footer-grid {
      display: grid; grid-template-columns: 1.5fr 1fr 1fr;
      gap: 3rem; margin-bottom: 3rem;
    }
    .footer-brand p { color: var(--txt2); font-size: 0.88rem; line-height: 1.7; margin-top: 0.8rem; }
    .footer-socials { display: flex; gap: 0.75rem; margin-top: 1.2rem; }
    .social-btn {
      width: 38px; height: 38px; border-radius: 50%;
      background: rgba(107,63,255,0.12); border: 1px solid rgba(107,63,255,0.2);
      display: flex; align-items: center; justify-content: center;
      color: var(--txt2); font-size: 0.9rem;
      transition: all 0.3s;
    }
    .social-btn:hover { background: var(--v1); color: var(--white); border-color: var(--v1); }
    .footer-col h4 { font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--txt); margin-bottom: 1.2rem; }
    .footer-col a { display: block; font-size: 0.88rem; color: var(--txt2); margin-bottom: 0.6rem; transition: color 0.3s; }
    .footer-col a:hover { color: var(--white); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 1.5rem; text-align: center;
      font-size: 0.8rem; color: var(--txt2);
    }

    /* ─── WHATSAPP FLOAT ─── */
    .wapp-float {
      position: fixed; bottom: 24px; right: 24px; z-index: 999;
      display: flex; align-items: center; gap: 0.75rem;
    }
    .wapp-bubble-msg {
      background: var(--surface); border: 1px solid rgba(107,63,255,0.25);
      padding: 0.75rem 1rem; border-radius: 12px; border-bottom-right-radius: 2px;
      font-size: 0.83rem; color: var(--txt2); max-width: 200px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.3);
      animation: fadeIn 0.4s ease;
      display: none;
    }
    .wapp-btn {
      width: 58px; height: 58px; border-radius: 50%;
      background: linear-gradient(135deg, #25D366, #128C7E);
      display: flex; align-items: center; justify-content: center;
      color: var(--white); font-size: 1.5rem;
      box-shadow: 0 8px 25px rgba(37,211,102,0.4);
      transition: all 0.3s;
      animation: wappPulse 3s ease infinite;
    }
    @keyframes wappPulse {
      0%,100% { box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
      50% { box-shadow: 0 8px 40px rgba(37,211,102,0.7); }
    }
    .wapp-btn:hover { transform: scale(1.1); }
    .wapp-float:hover .wapp-bubble-msg { display: block; }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    .reveal {
      opacity: 0; transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-d1 { transition-delay: 0.1s; }
    .reveal-d2 { transition-delay: 0.2s; }
    .reveal-d3 { transition-delay: 0.3s; }



    .title-nav{
      padding-top: 6rem
    }



    /* ─── MOBILE ─── */
    @media (max-width: 768px) {
      nav { padding: 1rem; }

       .nav-logo img { height:3rem; }
      .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(8,7,15,0.97); padding: 1.5rem; gap: 1.5rem; border-bottom: 1px solid rgba(107,63,255,0.2); }
      .nav-links.open { display: flex; }
      .burger { display: block; }
      .title-nav{
      padding-top: 1rem
    }
      .about-grid, .contact-wrap, .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .cards-grid, .social-grid { grid-template-columns: 1fr; }
      .about-stats { gap: 1.5rem; }
      .hero-mockup { display: none; }
      body { cursor: auto; }
      .cursor, .cursor-ring { display: none; }
    }
    @media (min-width: 769px) and (max-width: 1024px) {
      .cards-grid, .social-grid { grid-template-columns: repeat(2,1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }




    
