:root{
      /* Fondo base muy oscuro */
      --bg: #020308; 
      
      --card: #0a0f1d;
      --muted: #94a3b8;
      --text: #eaf0ff;
      --brand: #3b82f6; 
      --brand2: #06b6d4; 
      --neon-pink: #ec4899;
      --neon-purple: #8b5cf6;
      --line: rgba(59, 130, 246, 0.3);
      --radius: 24px;
      
      /* Brillos Neón */
      --glow-brand: 0 0 30px rgba(59, 130, 246, 0.6);
      --glow-brand2: 0 0 30px rgba(6, 182, 212, 0.6);
      --glow-purple: 0 0 40px rgba(139, 92, 246, 0.5);
    }

    *{box-sizing:border-box}
    
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
      color:var(--text);
      background-color: var(--bg);
      
      /* --- FONDO CON LÍNEAS DE NEÓN Y LUCES (DEL INDEX 21) --- */
      background-image: 
        /* 1. Cuadrícula de Neón (Grid) */
        linear-gradient(rgba(59, 130, 246, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.07) 1px, transparent 1px),
        
        /* 2. Haz de luz diagonal (Beam) */
        linear-gradient(135deg, transparent 40%, rgba(6, 182, 212, 0.05) 50%, transparent 60%),
        
        /* 3. Focos de luz ambiental potentes */
        radial-gradient(1200px 1000px at 10% 20%, rgba(59, 130, 246, 0.2), transparent 70%),
        radial-gradient(1000px 1000px at 90% 50%, rgba(6, 182, 212, 0.15), transparent 60%),
        radial-gradient(800px 800px at 50% 100%, rgba(139, 92, 246, 0.15), transparent 60%);
      
      /* Tamaño de la cuadrícula */
      background-size: 60px 60px, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
      background-attachment: fixed;
      line-height:1.6;
      overflow-x: hidden;
    }

    a{color:inherit; text-decoration:none}
    .container{max-width:1150px; margin:0 auto; padding:0 20px}

    /* CLASES PARA IDIOMAS */
    .lang-en { display: none; }
    body.show-en .lang-es { display: none; }
    body.show-en .lang-en { display: block; }

    /* --- TOP BANNER --- */
    .top-banner {
      background: linear-gradient(90deg, #6366f1, #ec4899);
      color: white; font-weight: 700; text-align: center;
      padding: 10px; font-size: 13px; letter-spacing: 0.5px;
      position: relative; z-index: 60;
      box-shadow: 0 5px 20px rgba(236, 72, 153, 0.4);
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    /* --- NAV --- */
    .nav{
      position:sticky; top:0; z-index:50;
      backdrop-filter: blur(20px);
      background: rgba(2, 3, 8, 0.85);
      border-bottom:1px solid var(--line);
      box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    }
    /*.nav-inner{ display:flex; align-items:center; justify-content:space-between; padding:16px 0; }*/
	  .nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 22px 0; /* más alto */
}

    
    .brand{ display:flex; align-items:center; gap:12px; font-weight:900; letter-spacing:.5px; font-size: 1.3rem; text-shadow: 0 0 15px rgba(59, 130, 246, 0.8); }
    .logo{
      width:40px; height:40px; border-radius:12px;
      background: linear-gradient(135deg, var(--brand), var(--brand2));
      box-shadow: var(--glow-brand); border: 1px solid rgba(255,255,255,0.3);
    }

  /*  .nav-links{ display:flex; gap:25px; align-items:center; color:var(--muted); font-weight:700; font-size:14px; }*/
    /*.nav-links a:hover{ color:var(--text); text-shadow: 0 0 15px var(--brand2); transition:0.3s; }*/
    .nav-links{
  display:flex;
  gap: 32px;
  align-items:center;
  color: var(--muted);
  font-weight: 700;
  font-size: 15.5px;
}

.nav-links a{
  padding: 10px 6px;    /* área clicable */
  border-radius: 10px;
}

.nav-links a:hover{
  color: var(--text);
  text-shadow: 0 0 18px rgba(6, 182, 212, 0.55);
  transition: 0.3s;
}

    /* SWITCH IDIOMA */
    .lang-switcher {
      display: flex; background: rgba(255,255,255,0.05);
      border: 1px solid var(--line); border-radius: 30px;
      padding: 4px; gap: 5px; box-shadow: 0 0 15px rgba(0,0,0,0.3);
    }
    .lang-btn {
      background: transparent; border: none; color: var(--muted);
      padding: 6px 16px; border-radius: 20px; font-weight: 800; cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .lang-btn.active {
      background: var(--brand2); color: #000;
      box-shadow: var(--glow-brand2);
    }

    /* BOTONES */
    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      padding:12px 20px; border-radius:16px;
      border:1px solid var(--line); background: rgba(255,255,255,.03);
      color:var(--text); font-weight:800; cursor:pointer;
      transition: all .2s ease;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .btn:hover{
      transform: translateY(-3px); background: rgba(255,255,255,.05);
      border-color: var(--brand2); box-shadow: var(--glow-brand2);
    }
    .btn-primary{
      border:none; background: linear-gradient(135deg, var(--brand), var(--brand2));
      color:#fff; box-shadow: var(--glow-brand);
      text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }
    .btn-primary:hover{
      transform: translateY(-3px);
      box-shadow: 0 0 30px rgba(59, 130, 246, 0.8), 0 0 30px rgba(6, 182, 212, 0.8);
    }
    .btn-flag { width: 20px; height: 20px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.3); }

    /* --- HERO --- */
    .hero{ padding:80px 0 60px; position: relative; overflow: hidden; }
    .hero-grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap:40px; align-items:center; perspective: 1000px; position: relative; z-index: 10; }
    
    /* REFLEJO/GLOW DETRÁS DEL TEXTO */
    .hero-glow {
      position: absolute;
      top: 50%;
      left: 20%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, rgba(6, 182, 212, 0.08) 40%, transparent 70%);
      filter: blur(80px);
      z-index: 0;
      pointer-events: none;
    }

    .badge{
      display:inline-flex; align-items:center; gap:10px; padding:10px 16px;
      border:1px solid var(--brand2); border-radius:999px; color:var(--brand2);
      background: rgba(6, 182, 212, 0.1); font-weight:800; font-size:13px;
      box-shadow: 0 0 20px rgba(6, 182, 212, 0.3); margin-bottom: 20px;
    }
    .dot{ width:10px; height:10px; border-radius:50%; background:var(--brand2); box-shadow: 0 0 10px var(--brand2); }

    h1{ 
      margin:0 0 20px; font-size: clamp(42px, 5vw, 68px); line-height:1.05; letter-spacing:-1px; 
      text-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
      background: linear-gradient(to right, #ffffff, #cce0ff);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    .subtitle{ color:var(--muted); font-size:19px; max-width: 50ch; margin: 0 0 30px; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
    
    /* --- ESLOGAN BOOM (NUEVO) --- */
    .boom-text {
      color: var(--brand2);
      font-weight: 800;
      font-size: 20px;
      margin-bottom: 35px; /* Espacio antes de las banderas */
      text-shadow: 0 0 15px rgba(6, 182, 212, 0.7);
      letter-spacing: 0.5px;
      line-height: 1.3;
    }

    .hero-actions{ display:flex; gap:15px; flex-wrap:wrap; align-items:center; }
    .micro{ color:var(--muted); font-weight:700; font-size:13px; display:block; margin-top:15px;}

    /* BOTONES BANDERAS */
    .hero-flag-buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }
    .btn-flag-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 54px;
      height: 54px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 50%; /* Botones circulares */
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      position: relative;
      overflow: hidden;
    }
    .btn-flag-icon img {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      object-fit: cover;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    }
    .btn-flag-icon:hover {
      transform: translateY(-5px) scale(1.1);
      border-color: var(--brand2);
      box-shadow: 0 0 25px rgba(6, 182, 212, 0.6);
      background: rgba(6, 182, 212, 0.15);
    }

    /* --- IPHONE 3D POP-OUT (ALARGADO) --- */
    .phone-wrapper {
      width: 300px; height: 680px; 
      margin: 0 auto;
      position: relative; z-index: 10;
      transform-style: preserve-3d;
      transform: rotateY(-15deg) rotateX(5deg);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .phone-wrapper:hover { 
      transform: rotateY(-10deg) rotateX(2deg) translateY(-15px);
      box-shadow: 0 0 60px rgba(6, 182, 212, 0.25);
    }

    .phone-bezel {
      width: 100%; height: 100%;
      background: #02040a; border-radius: 50px; padding: 14px;
      box-shadow: 
        inset 0 0 0 2px #1e293b,
        0 40px 90px -20px rgba(0,0,0,0.95),
        var(--glow-brand2),
        0 0 60px rgba(59, 130, 246, 0.3);
      border: 1px solid rgba(6, 182, 212, 0.3);
    }
    .phone-notch {
      position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
      width: 110px; height: 28px; background: #02040a; z-index: 20;
      border-bottom-left-radius: 18px; border-bottom-right-radius: 18px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .phone-screen-content {
      background: linear-gradient(175deg, rgba(20, 30, 50, 0.95), rgba(5, 10, 20, 0.98));
      border-radius: 40px; height: 100%; padding: 50px 20px 25px 20px;
      display: flex; flex-direction: column; justify-content: space-between;
      overflow: hidden; position: relative;
      box-shadow: inset 0 0 30px rgba(0,0,0,0.6);
    }
    .phone-screen-content::before {
        content: ""; position: absolute; top: 0; left: -50%; width: 200%; height: 100%;
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.03), transparent);
        transform: rotate(30deg); pointer-events: none;
    }

    .form-title{ font-weight:900; letter-spacing:.3px; margin: 0 0 10px; font-size: 1.2rem; text-shadow: 0 0 10px rgba(6, 182, 212, 0.6); }
    .field{ margin: 18px 0; }
    label{ color:var(--muted); font-weight:800; font-size:11px; text-transform:uppercase; display:block; margin-bottom:6px; letter-spacing: 0.5px; }
    
    input, select{
      width:100%; padding:15px; border-radius:14px;
      border:1px solid rgba(255,255,255,.15); background: rgba(255,255,255,0.05);
      color:var(--text); outline:none; font-weight:700; transition: all .2s ease;
      font-size: 15px;
    }
    input:focus, select:focus{ border-color: var(--brand); box-shadow: 0 0 20px rgba(59,130,246,0.3); background: rgba(10, 15, 29, 0.9); }
    select { appearance: none; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23a3b3d5' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e"); background-position: right 1rem center; background-repeat: no-repeat; background-size: 1.5em 1.5em; padding-right: 2.5rem; }

    .btn-screen {
      width: 100%; padding: 18px; border-radius: 18px; border: none;
      background: linear-gradient(90deg, var(--brand2), var(--brand));
      color: white; font-weight: 800; font-size: 16px; cursor: pointer;
      box-shadow: 0 0 25px rgba(6, 182, 212, 0.5); transition: 0.3s;
    }
    .btn-screen:hover { box-shadow: 0 0 40px rgba(6, 182, 212, 0.7); transform: scale(1.02); }

    /* --- SECCIONES COMUNES --- */
    .section{ padding: 80px 0; position: relative; }
    h2{ margin: 0 0 15px; font-size: 36px; text-shadow: 0 0 25px rgba(59,130,246,0.3); letter-spacing:-1px; }
    
    .grid-4{ display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:25px; }
    .grid-3{ display:grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap:30px; }
    .grid-2{ display:grid; grid-template-columns: 1fr 1fr; gap:40px; }
    
    /* TARJETAS CON EFECTO CRISTAL NEÓN */
    .panel, .feature {
      padding:30px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.08);
      background: rgba(10, 15, 29, 0.6); backdrop-filter: blur(10px);
      transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative; overflow: hidden;
    }
    .panel:hover, .feature:hover {
      transform: translateY(-8px); border-color: var(--brand2); box-shadow: 0 0 30px rgba(6, 182, 212, 0.2);
    }
    .icon { 
      width:50px; height:50px; border-radius:16px; 
      background: linear-gradient(135deg, rgba(59, 130, 246,.2), rgba(6, 182, 212,.2)); 
      display:flex; align-items:center; justify-content:center; 
      margin-bottom:15px; box-shadow: var(--glow-brand); font-size: 1.5rem; 
      border:1px solid rgba(59,130,246,0.3); 
    }

    /* --- CÓMO FUNCIONA (Estilo Step Flow) --- */
    .step-card {
      background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 30px; padding: 35px; position: relative;
      transition: 0.4s ease; overflow: hidden;
    }
    .step-card:hover {
      border-color: var(--neon-purple);
      box-shadow: 0 10px 40px -10px rgba(139, 92, 246, 0.4);
      transform: translateY(-5px);
    }
    .step-number {
      font-size: 60px; font-weight: 900;
      background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      position: absolute; top: 10px; right: 25px; opacity: 0.5;
    }
    .step-icon {
      width: 60px; height: 60px; background: rgba(139, 92, 246, 0.15);
      border-radius: 20px; display:flex; align-items:center; justify-content:center;
      font-size: 24px; margin-bottom: 20px; border: 1px solid rgba(139, 92, 246, 0.3);
      box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
    }
    .step-card h3 { font-size: 20px; margin-bottom: 10px; color: white; }
    .step-card p { color: var(--muted); font-size: 15px; margin: 0; }

    /* CTA Final */
    .cta-box{
      padding:50px; text-align: center;
      border-radius: 30px;
      background: linear-gradient(135deg, rgba(59, 130, 246,.15), rgba(6, 182, 212,.05));
      border: 1px solid rgba(59, 130, 246,.3);
      box-shadow: var(--glow-brand), inset 0 0 50px rgba(59, 130, 246, 0.1);
      position: relative; overflow: hidden;
    }
    .cta-box:before {
      content: ""; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
      opacity: 0.6; pointer-events: none;
    }

    /* FOOTER */
    footer{
      border-top:1px solid var(--line); padding:60px 0; color:var(--muted);
      font-weight:600; font-size:14px; background: rgba(2, 3, 8, 0.95); margin-top: 60px;
    }
    .footer-links { display: flex; gap: 20px; margin-top: 15px; }
    .footer-links a:hover { color: var(--brand2); text-shadow: 0 0 10px var(--brand2); }
    .badge-eu { border: 1px solid #334155; padding: 2px 8px; border-radius: 6px; font-size: 12px; }

    /* Responsive */
    @media (max-width: 900px){
      .hero-grid{grid-template-columns: 1fr; text-align: center;}
      .phone-wrapper { margin-top: 50px; transform: none; width: 280px; height: 600px; } 
      .phone-wrapper:hover { transform: none; }
      .grid-2, .grid-4, .grid-3 { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      .hero-actions { justify-content: center; }
      .hero-flag-buttons { justify-content: center; }
      .hero-glow { left: 50%; width: 100%; opacity: 0.5; }
    }
    /* --- FIX: forzar fondo oscuro aunque Neve/algún wrapper meta blanco --- */
html, body {
  background-color: #020308 !important;
}

/* Si el tema ha metido contenedores, los hacemos transparentes */
#page, #content, .site, .site-content, .nv-site-wrap, .nv-content-wrap, main {
  background: transparent !important;
}

/* Reforzar el background completo tal como lo defines en body */
body{
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, transparent 40%, rgba(6, 182, 212, 0.05) 50%, transparent 60%),
    radial-gradient(1200px 1000px at 10% 20%, rgba(59, 130, 246, 0.2), transparent 70%),
    radial-gradient(1000px 1000px at 90% 50%, rgba(6, 182, 212, 0.15), transparent 60%),
    radial-gradient(800px 800px at 50% 100%, rgba(139, 92, 246, 0.15), transparent 60%) !important;
  background-size: 60px 60px, 100% 100%, 100% 100%, 100% 100%, 100% 100% !important;
  background-attachment: fixed !important;
}
/* === FIX TIPOGRAFÍA/COLOR: evitar que Neve/WordPress pise tu paleta === */
:root{
  --bg: #020308;
  --card: #0a0f1d;
  --muted: #94a3b8;
  --text: #eaf0ff;
  --brand: #3b82f6;
  --brand2: #06b6d4;
  --neon-pink: #ec4899;
  --neon-purple: #8b5cf6;
  --line: rgba(59, 130, 246, 0.3);
}

/* Fuerza el color base del sitio */
body{
  color: var(--text) !important;
}

/* En WordPress/Neve a veces los links/nav se vuelven negros por estilos globales */
a, a:visited{
  color: inherit !important;
}

/* Menú superior (en tu HTML es .nav-links) */
.nav-links{
  color: var(--muted) !important;
}
.nav-links a{
  color: var(--muted) !important;
}
.nav-links a:hover{
  color: var(--text) !important;
}

/* Textos clave del hero */
.subtitle{
  color: var(--muted) !important;
}
.boom-text{
  color: var(--brand2) !important;
}

/* Cualquier texto dentro de paneles/tarjetas */
.panel, .feature, .step-card, .cta-box{
  color: var(--text) !important;
}
.panel p, .feature p, .step-card p{
  color: var(--muted) !important;
}

/* Labels e inputs: WordPress a veces hereda color oscuro */
label{ color: var(--muted) !important; }
input, select{
  color: var(--text) !important;
}
/* === FIX: Glow neón del móvil (forzar halo como en el original) === */
.phone-wrapper{
  position: relative !important;
  z-index: 10 !important;
  filter: none !important;
}

.phone-wrapper::before{
  content:"";
  position:absolute;
  inset:-60px;              
  border-radius: 80px;
  background:
    radial-gradient(circle at 55% 40%,
      rgba(6, 182, 212, 0.28) 0%,
      rgba(59, 130, 246, 0.18) 35%,
      rgba(139, 92, 246, 0.12) 55%,
      transparent 70%);
  filter: blur(35px);
  z-index:-1;
  pointer-events:none;
}

.phone-bezel{
  box-shadow:
    inset 0 0 0 2px #1e293b,
    0 40px 90px -20px rgba(0,0,0,0.95),
    0 0 30px rgba(6, 182, 212, 0.60),
    0 0 60px rgba(59, 130, 246, 0.35) !important;
}


/* === FIX: bordes redondeados (evitar “picos” por overrides) === */
.feature,
.panel{
  border-radius: var(--radius) !important;   /* 24px */
  overflow: hidden !important;
}

.step-card{
  border-radius: 30px !important;
  overflow: hidden !important;
}

.cta-box{
  border-radius: 30px !important;
  overflow: hidden !important;
}

.phone-bezel{ border-radius: 50px !important; overflow: hidden !important; }
.phone-screen-content{ border-radius: 40px !important; overflow: hidden !important; }
.btn{ border-radius: 16px !important; }
.btn-screen{ border-radius: 18px !important; }
.btn-flag-icon{ border-radius: 50% !important; }
input, select{ border-radius: 14px !important; }
.logo{ border-radius: 12px !important; }
.icon{ border-radius: 16px !important; }

/* === FIX ESQUINAS: forzar radios y evitar “picos” por capas internas === */

/* 1) Tarjetas principales */
.feature, .panel, .step-card, .cta-box{
  border-radius: 24px !important;      /* tu --radius */
  overflow: hidden !important;
  background-clip: padding-box !important;
  outline: none !important;
}

/* step-card y CTA tenían 30px en tu diseño */
.step-card, .cta-box{
  border-radius: 30px !important;
}

/* 2) Si hay capas/pseudo-elementos (muy típico en temas/plugins) */
.feature::before, .feature::after,
.panel::before, .panel::after,
.step-card::before, .step-card::after,
.cta-box::before, .cta-box::after{
  border-radius: inherit !important;
}

/* 3) Si el “pico” viene de un hijo que pinta fondo/borde */
.feature > *, .panel > *, .step-card > *, .cta-box > *{
  border-radius: inherit;
}

/* 4) Móvil (por si algún borde se queda cuadrado) */
.phone-bezel{
  border-radius: 50px !important;
  overflow: hidden !important;
}
.phone-screen-content{
  border-radius: 40px !important;
  overflow: hidden !important;
}

/* 5) Por si algún estilo externo mete clip-path/mask (causa picos raros) */
.feature, .panel, .step-card, .cta-box, .phone-bezel, .phone-screen-content{
  clip-path: none !important;
  mask-image: none !important;
}

/* === FOOTER === */
footer{
  padding: 40px 0;
}

.foot-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

/* ===== LEGAL ===== */
.legal{
  display: flex;
  flex-direction: column;
}

.legal strong{
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 15px;
}

/* Links legales */
.footer-links{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a{
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
}

.footer-links a:hover{
  color: var(--brand2);
}
.footer-terms-links{
  margin-top: 2px;
}

	  
/* ===== TERMS ===== */
.footer-terms{
  margin-top: 22px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-terms-title{
  display: block;
  font-size: 13px;
  color: #ffffff;           /* título claro */
  font-weight: 500;         /* jerarquía sin gritar */
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}


/* Badges centrados */
.footer-terms-links{
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

/* Ajuste badges EU / CH */
.badge-eu{
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  color: white;
  text-decoration: none;
  opacity: 0.85;
  transition: all 0.2s ease;
}

.badge-eu:hover{
  opacity: 1;
  background: var(--brand2);
}

/* ===== Responsive ===== */
@media (max-width: 900px){
  .foot-grid{
    grid-template-columns: 1fr;
  }

  .footer-terms-links{
    justify-content: center; /* en móvil sí los centramos */
  }

  .footer-terms-title{
    text-align: center;
  }
}

	  

	  
	  
.logo{
  width:48px; height:48px; border-radius:14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 0 18px rgba(6, 182, 212, 0.25);
  overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}

.logo img{
  width:100%;
  height:100%;
  object-fit: cover;      /* recorta */
  object-position: center; /* centra el recorte */
  display:block;
}

/* === LOGO FIX DEFINITIVO: siempre cuadrado y centrado === */
.brand{ display:flex; align-items:center; gap:12px; }

.logo{
  width:48px !important;
  height:48px !important;
  min-width:48px !important;
  min-height:48px !important;
  border-radius:14px !important;

  background: rgba(255,255,255,0.06) !important; /* sin degradado detrás */
  border: 1px solid rgba(255,255,255,0.18) !important;
  box-shadow: 0 0 18px rgba(6, 182, 212, 0.25) !important;

  overflow:hidden !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}

.logo img{
  width:100% !important;
  height:100% !important;
  max-width:none !important;
  max-height:none !important;
  display:block !important;
  object-fit: contain !important;  /* NO recorta */
  padding: 6px !important;         /* aire */
}
.brand{ display:flex; align-items:center; gap:14px; }

/*.brand-logo{
  height: 46px;
  width: auto;
  display:block;
  filter: drop-shadow(0 0 14px rgba(6,182,212,0.35));
  border-radius: 10px;
}

.brand-name{
  font-weight: 900;
  letter-spacing: .5px;
  font-size: 1.3rem;
  text-shadow: 0 0 15px rgba(59,130,246,0.8);
}*/
	  
.brand-logo{
  height: 52px;
  width: auto;
  display:block;
  filter: drop-shadow(0 0 14px rgba(6,182,212,0.35));
  border-radius: 10px;
}

.brand-name{
  font-weight: 900;
  letter-spacing: .6px;
  font-size: 1.45rem;
  text-shadow: 0 0 15px rgba(59,130,246,0.8);
}
	  
	  
	  
/* Forzar que el select NO se muestre como lista */
#destination {
  size: auto;           /* por si algún CSS raro lo altera (no estándar, pero inocuo) */
}

select#destination {
  height: auto !important;
}

/* Por si se hubiese aplicado estilo de lista */
select#destination[multiple],
select#destination[size]{
  height: auto !important;
}
/* Asegurar que nada tape los selects dentro del móvil */
.phone-wrapper,
.phone-bezel,
.phone-screen-content{
  position: relative;
  z-index: 1;
}

.phone-wrapper::before,
.phone-screen-content::before{
  pointer-events: none !important;
}

/* Forzar que los controles sean clicables */
.phone-screen-content select,
.phone-screen-content input,
.phone-screen-content button{
  position: relative;
  z-index: 10;
  pointer-events: auto !important;
}

	  
	  
	  /* === DONDE PAGAMOS (flags grid) === */
.vb-flags{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.vb-flag{
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(10, 15, 29, 0.55);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.vb-flag img{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  display:block;
  margin: 0 auto 10px;
  border: 2px solid rgba(255,255,255,0.18);
  box-shadow: 0 0 18px rgba(6,182,212,0.20);
}

.vb-flag div{
  font-weight: 800;
  color: var(--text);
}

.vb-flag--neon:hover{
  transform: translateY(-6px);
  border-color: var(--brand2);
  box-shadow: 0 0 26px rgba(6,182,212,0.22);
}
#donde-pagamos { scroll-margin-top: 110px; }

	  
/* ==============================
   COOKIE BANNER (incrustado)
   ============================== */
.vb-cookie{
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: none; /* se muestra por JS si no hay consentimiento */
}

.vb-cookie__card{
  max-width: 980px;
  margin: 0 auto;
  padding: 16px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(10, 15, 29, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 26px rgba(6,182,212,0.18);
}

.vb-cookie__row{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}

.vb-cookie__title{
  font-weight: 900;
  margin: 0 0 6px;
  color: var(--text);
  letter-spacing: .2px;
}

.vb-cookie__text{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.vb-cookie__links{
  margin-top: 8px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.vb-cookie__links a{
  font-size: 12px;
  color: var(--brand2);
  text-decoration: none;
  font-weight: 800;
}
.vb-cookie__links a:hover{
  text-shadow: 0 0 10px rgba(6,182,212,.55);
}

.vb-cookie__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.vb-cookie .vb-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
  transition: all .2s ease;
}
.vb-cookie .vb-btn:hover{
  transform: translateY(-2px);
  border-color: var(--brand2);
  box-shadow: 0 0 18px rgba(6,182,212,0.22);
}

.vb-cookie .vb-btn--primary{
  border: none;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 0 22px rgba(59,130,246,.35);
}
.vb-cookie .vb-btn--ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--muted);
}

@media (max-width: 720px){
  .vb-cookie__row{ grid-template-columns: 1fr; }
  .vb-cookie__actions{ justify-content: center; }
}



/* BANNER DE COOKIES VENEB00M */
.vb-cookie-banner {
  display: none; /* se muestra con JS */
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(6, 182, 212, 0.95); /* color principal de tu web */
  color: #fff;
  border-radius: 12px;
  padding: 15px 25px;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 600px;
}

/* BANNER PREMIUM VENEB00M */
.vb-cookie-banner-premium {
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(6, 182, 212, 0.95);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 16px;
  padding: 20px 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 700px;
  opacity: 0;
  z-index: 9999;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.vb-cookie-banner-premium.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.vb-cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  flex-wrap: wrap;
}

.vb-cookie-banner-premium p {
  margin: 0;
  line-height: 1.5;
}

.vb-cookie-banner-premium a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}

.vb-cookie-banner-premium a:hover {
  color: #e0f7ff;
}

.vb-cookie-banner-premium button {
  background: #fff;
  color: #06b6d4;
  border: none;
  border-radius: 12px;
  padding: 12px 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.vb-cookie-banner-premium button:hover {
  background: #e0f7ff;
}

@media (max-width: 600px) {
  .vb-cookie-banner-premium {
    flex-direction: column;
    text-align: center;
    padding: 15px 20px;
  }

  .vb-cookie-banner-premium button {
    width: 100%;
    margin-top: 10px;
  }
}


.fx-disclaimer {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.85;
}


.why-subtitle {
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 680px;
}

.brand-highlight {
  color: var(--brand2);
  font-weight: 700;
  text-shadow: 0 0 8px rgba(6, 182, 212, 0.45);
}


/* === Columna derecha (stores + móvil) === */
.hero-right{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  perspective: 1000px;          /* ✅ devuelve el 3D */
  transform-style: preserve-3d; /* ✅ mantiene profundidad */	
}

/* === Bloque stores encima del móvil === */
.stores-top{
  width: 300px; /* mismo ancho que el móvil */
  max-width: 100%;
  text-align: center;
}

.stores-top__title{
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 900;
  color: var(--text);
  text-shadow: 0 0 12px rgba(6,182,212,0.35);
}

.stores-top__row{
  display: flex;
  gap: 10px;
  justify-content: center;
}

.stores-top__btn{
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-weight: 800;
  font-size: 13px;

  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.stores-top__btn:hover{
  transform: translateY(-3px);
  border-color: var(--brand2);
  background: rgba(6,182,212,0.10);
  box-shadow: 0 0 26px rgba(6,182,212,0.22);
}

.stores-top__icon{
  width: 34px;
  height: 34px;
  border-radius: 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, rgba(59,130,246,.22), rgba(6,182,212,.14));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 0 14px rgba(6,182,212,0.22);

  color: var(--text);
}

.stores-top__icon svg{
  display: block;
}
