    :root {
      --bg-color: #050505;
      --panel: rgba(255, 255, 255, 0.03);
      --panel-2: rgba(255, 255, 255, 0.06);
      --border: rgba(255, 255, 255, 0.08);
      --text-color: #e6e6e6;
      --secondary-text: rgba(255, 255, 255, 0.62);
      --muted: rgba(255, 255, 255, 0.45);

      --accent-color: #ff2e2e;
      --accent-soft: rgba(255, 46, 46, 0.15);

      --cursor-size: 20px;

      --font-display: "Manrope", sans-serif;
      --font-body: "Inter", sans-serif;
      --font-mono: "Space Mono", monospace;

      --radius: 18px;
      --shadow: 0 18px 60px rgba(0,0,0,0.6);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; cursor: none; }
    html { scroll-behavior: auto; }
    body {
      background: var(--bg-color);
      color: var(--text-color);
      font-family: var(--font-body);
      overflow-x: hidden;
      width: 100vw;
    }

    /* WebGL Canvas */
    #gl-canvas {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: -2;
      /*opacity: 0.65;*/
      opacity: 0.35;
    }

    /* Optional vignette overlay */
    .vignette {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      background:
        radial-gradient(1200px 800px at 20% 15%, rgba(255, 46, 46, 0.07), transparent 60%),
        radial-gradient(900px 600px at 80% 30%, rgba(255, 255, 255, 0.04), transparent 65%),
        radial-gradient(900px 700px at 50% 90%, rgba(0, 0, 0, 0.55), transparent 55%),
        linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.8));
      mix-blend-mode: normal;
    }

    /* Custom Cursor */
    .cursor {
      position: fixed;
      top: 0;
      left: 0;
      width: var(--cursor-size);
      height: var(--cursor-size);
      border: 1px solid rgba(255,255,255,0.85);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: width 0.25s, height 0.25s, background-color 0.25s, border-color 0.25s;
      mix-blend-mode: difference;
    }
    .cursor.hovered {
      width: 64px;
      height: 64px;
      background: rgba(255,255,255,0.9);
      border-color: transparent;
    }
    .cursor-dot {
      position: fixed;
      top: 0;
      left: 0;
      width: 4px;
      height: 4px;
      background: var(--accent-color);
      border-radius: 50%;
      pointer-events: none;
      z-index: 10000;
      transform: translate(-50%, -50%);
    }

    /* Smooth Scroll Container */
    #scroll-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      will-change: transform;
      z-index: 1;
    }

    /* Header */
    header {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      padding: 1.7rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 100;
      mix-blend-mode: exclusion;
      gap: 1rem;
    }

    .logo {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.25rem;
      text-transform: uppercase;
      letter-spacing: -0.05em;
      color: #fff;
      user-select: none;
      display: flex;
      align-items: baseline;
      gap: 0.55rem;
      white-space: nowrap;
    }
    .logo small {
      font-family: var(--font-mono);
      font-weight: 400;
      font-size: 0.72rem;
      letter-spacing: 1px;
      color: rgba(255,255,255,0.75);
      text-transform: uppercase;
    }

    nav ul { display: flex; list-style: none; gap: 1.6rem; align-items: center; }
    nav a {
      color: #fff;
      text-decoration: none;
      font-family: var(--font-mono);
      font-size: 0.82rem;
      text-transform: uppercase;
      position: relative;
      padding: 6px 0;
      opacity: 0.9;
    }
    nav a::after {
      content: "";
      position: absolute;
      bottom: 0; left: 0;
      width: 0;
      height: 1px;
      background: var(--accent-color);
      transition: width 0.25s ease;
    }
    nav a:hover::after { width: 100%; }

    .nav-cta {
      margin-left: 0.3rem;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.18);
      background: rgba(0,0,0,0.25);
      backdrop-filter: blur(8px);
      transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    }
    .nav-cta:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 46, 46, 0.55);
      background: rgba(255, 46, 46, 0.10);
    }

    /* Sections */
    section {
      padding: 0 3rem;
      margin-bottom: 14vh;
      position: relative;
    }

    .section-label {
      font-family: var(--font-mono);
      color: var(--muted);
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      position: sticky;
      top: 7.6rem;
      height: fit-content;
    }
    .section-label::before {
      content: "// ";
      color: var(--accent-color);
    }

    /* Hero */
    .hero {
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-top: 12vh;
      gap: 1.25rem;
    }
    .hero-subtitle {
      font-family: var(--font-mono);
      color: var(--accent-color);
      font-size: 0.95rem;
      opacity: 0;
      transform: translateY(18px);
      letter-spacing: 0.5px;
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(3.2rem, 9.5vw, 9.2rem);
      line-height: 0.86;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: -0.045em;
      margin-left: -6px;

      /* 🔥 efecto transparente */
      color: transparent;
      -webkit-text-stroke: 1.6px rgba(255,255,255,0.85);
      text-stroke: 1.6px rgba(255,255,255,0.85);

      /* glow premium suave */
      text-shadow:
        0 0 18px rgba(255,255,255,0.08),
        0 0 42px rgba(255,46,46,0.08);
    }

    .hero-title span { display: block; overflow: hidden; }
    .hero-title .line-inner {
      display: block;
      transform: translateY(110%);
      transition: transform 1.15s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hero-desc {
      margin-top: 1.6rem;
      max-width: 720px;
      font-size: 1.12rem;
      line-height: 1.7;
      color: var(--secondary-text);
      opacity: 0;
      transform: translateY(18px);
      text-align: justify;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      margin-top: 1.2rem;
      opacity: 0;
      transform: translateY(18px);
    }
    .badge {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.6px;
      text-transform: uppercase;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(0,0,0,0.25);
      backdrop-filter: blur(8px);
      color: rgba(255,255,255,0.82);
    }
    .badge.accent {
      border-color: rgba(255, 46, 46, 0.35);
      background: rgba(255, 46, 46, 0.10);
      color: rgba(255,255,255,0.92);
    }

    .hero-cta {
      display: flex;
      gap: 0.9rem;
      align-items: center;
      margin-top: 2.1rem;
      opacity: 0;
      transform: translateY(18px);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      padding: 12px 18px;
      border-radius: 999px;
      font-family: var(--font-mono);
      font-size: 0.85rem;
      letter-spacing: 0.6px;
      text-transform: uppercase;
      text-decoration: none;
      transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
      user-select: none;
      white-space: nowrap;
    }

    .btn-primary {
      background: rgba(255, 46, 46, 0.14);
      border: 1px solid rgba(255, 46, 46, 0.55);
      color: #fff;
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      background: rgba(255, 46, 46, 0.22);
      border-color: rgba(255, 46, 46, 0.8);
    }

    .btn-secondary {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.18);
      color: rgba(255,255,255,0.9);
    }
    .btn-secondary:hover {
      transform: translateY(-2px);
      border-color: rgba(255,255,255,0.32);
      background: rgba(255,255,255,0.06);
    }

    .hero-note {
      margin-top: 1.25rem;
      font-family: var(--font-mono);
      font-size: 0.8rem;
      color: rgba(255,255,255,0.55);
      opacity: 0;
      transform: translateY(18px);
    }
    .hero-note b { color: rgba(255,255,255,0.85); font-weight: 700; }

    /* Marquee */
    .marquee {
      width: 100%;
      overflow: hidden;
      white-space: nowrap;
      padding: 2.8rem 0;
      border-top: 1px solid rgba(255,255,255,0.08);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      margin: 4vh 0;
      background: rgba(0,0,0,0.18);
      backdrop-filter: blur(6px);
    }
    .marquee-content {
      display: inline-block;
      animation: marquee 24s linear infinite;
      font-family: var(--font-display);
      font-size: 3.4rem;
      font-weight: 200;
      color: rgba(255,255,255,0.06);
      text-transform: uppercase;
    }
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Layout */
    .two-col {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 4rem;
      padding-top: 5rem;
    }

    /* About text (still used for Services) */
    .about-text p {
      font-size: 1.55rem;
      line-height: 1.45;
      margin-bottom: 2.4rem;
      font-weight: 300;
      color: rgba(255,255,255,0.78);
      max-width: 60ch;
    }
    .highlight { color: #fff; font-weight: 600; display: inline-block; }

    /* Proof / Stats */
    .proof-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
      margin-top: 1.5rem;
    }
    .proof-card {
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.03);
      border-radius: var(--radius);
      padding: 1.5rem 1.4rem;
      transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    }
    .proof-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 46, 46, 0.45);
      background: rgba(255,255,255,0.05);
    }
    .proof-kpi {
      font-family: var(--font-display);
      font-weight: 800;
      letter-spacing: -0.02em;
      font-size: 2.1rem;
      color: #fff;
    }
    .proof-label {
      margin-top: 0.35rem;
      font-family: var(--font-mono);
      text-transform: uppercase;
      letter-spacing: 0.9px;
      font-size: 0.72rem;
      color: rgba(255,255,255,0.6);
    }
    .proof-sub {
      margin-top: 0.8rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.6;
      font-size: 0.92rem;
    }

    /* Services */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
      margin-top: 1rem;
    }
    .service-card {
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.03);
      border-radius: var(--radius);
      padding: 1.7rem 1.5rem;
      transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
      min-height: 210px;
    }
    .service-card:hover {
      transform: translateY(-5px);
      border-color: rgba(255, 46, 46, 0.45);
      background: rgba(255,255,255,0.055);
    }
    .service-card h3 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.35rem;
      color: #fff;
      letter-spacing: -0.02em;
    }
    .service-card p {
      margin-top: 0.85rem;
      color: rgba(255,255,255,0.62);
      line-height: 1.7;
      font-size: 1rem;
      max-width: 46ch;
      text-align: justify;
    }
    .service-meta { margin-top: 1.3rem; display: flex; flex-wrap: wrap; gap: 0.55rem; }

    /* Reveal */
    .reveal-text {
      opacity: 0;
      transform: translateY(50px);
      transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-text.visible { opacity: 1; transform: translateY(0); }
    .fade-in { opacity: 0; transform: translateY(18px); }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
      .marquee-content { animation: none !important; }
      .hero-title .line-inner,
      .reveal-text,
      .fade-in,
      .cursor,
      .cursor-dot { transition: none !important; }
    }

    /* Responsive */
    @media (max-width: 980px) {
      header { padding: 1.4rem 1.5rem; }
      section { padding: 0 1.5rem; }
      .two-col { grid-template-columns: 1fr; gap: 1.8rem; }
      .section-label { position: static; margin-bottom: 0.75rem; top: auto; }
      .services-grid { grid-template-columns: 1fr; }
      .proof-row { grid-template-columns: 1fr; }
      .cursor, .cursor-dot { display: none; }
      * { cursor: auto; }
      nav a { font-size: 0.78rem; }
      .marquee-content { font-size: 2.7rem; }
    }

    @media (max-width: 520px) {
      nav ul { gap: 1rem; }
      .hero-cta { flex-direction: column; align-items: flex-start; }
      .btn { width: 100%; justify-content: center; }
      .logo small { display: none; }
    }

    /* Contact / Footer */
    footer#contact {
      padding: 9rem 3rem 3.2rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      min-height: 80vh;
      gap: 2rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      background: linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.35));
    }
    .footer-content h2 {
      font-family: var(--font-display);
      font-size: clamp(2.6rem, 7vw, 5.4rem);
      line-height: 0.95;
      margin-bottom: 1.5rem;
      letter-spacing: -0.03em;
    }
    .footer-lead {
      color: rgba(255,255,255,0.62);
      max-width: 520px;
      margin-top: 0.7rem;
      font-size: 1.05rem;
      line-height: 1.75;
    }
    .contact-box {
      margin-top: 1.4rem;
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.03);
      padding: 1.4rem 1.4rem;
      backdrop-filter: blur(10px);
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
      max-width: 560px;
    }
    .contact-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
      align-items: center;
      justify-content: space-between;
    }
    .contact-email {
      font-family: var(--font-mono);
      font-size: 0.95rem;
      color: rgba(255,255,255,0.92);
      text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,0.25);
      padding-bottom: 2px;
      transition: border-color 0.25s ease, color 0.25s ease;
    }
    .contact-email:hover { color: #fff; border-color: rgba(255, 46, 46, 0.65); }
    .fineprint {
      font-family: var(--font-mono);
      font-size: 0.78rem;
      color: rgba(255,255,255,0.45);
      line-height: 1.7;
    }
    .social-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.4rem 3.2rem;
      align-content: end;
    }
    .social-link {
      color: var(--text-color);
      text-decoration: none;
      font-size: 1.35rem;
      font-weight: 300;
      position: relative;
      width: fit-content;
      overflow: hidden;
      display: block;
      padding: 6px 0;
    }
    .social-link span { display: block; transition: transform 0.35s ease; }
    .social-link::after {
      content: attr(data-text);
      position: absolute;
      top: 100%;
      left: 0;
      color: var(--accent-color);
      transition: transform 0.35s ease;
    }
    .social-link:hover span { transform: translateY(-100%); }
    .social-link:hover::after { transform: translateY(-100%); }

    .copyright {
      margin-top: 2.2rem;
      font-family: var(--font-mono);
      font-size: 0.78rem;
      color: rgba(255,255,255,0.40);
    }

    @media (max-width: 980px) {
      footer#contact { flex-direction: column; align-items: flex-start; gap: 3rem; padding: 7rem 1.5rem 3rem 1.5rem; }
      .social-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 520px) {
      .social-grid { grid-template-columns: 1fr; }
    }

    /* =========================
    TIMES SQUARE GALLERY
    ========================= */
    .tsq-wrap { width: 100%; }

    .tsq-head { margin-bottom: 1.2rem; }
    .tsq-kicker {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    }
    .tsq-title{
    margin-top: 0.75rem;
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 5.2vw, 4.2rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #fff;
    }
    .tsq-title span {
    color: rgba(255,255,255,0.78);
    font-weight: 400;
    }
    .tsq-sub{
    margin-top: 1rem;
    max-width: 70ch;
    color: rgba(255,255,255,0.62);
    line-height: 1.75;
    font-size: 1.05rem;
    }

    .tsq-stage{
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    }

    /* ticker */
    .tsq-ticker{
    border-bottom: 1px solid rgba(255,255,255,0.09);
    background: rgba(0,0,0,0.20);
    backdrop-filter: blur(8px);
    padding: 1rem 0;
    overflow: hidden;
    }
    .tsq-ticker-track{
    display: inline-block;
    white-space: nowrap;
    font-family: var(--font-display);
    font-weight: 200;
    font-size: 2.2rem;
    color: rgba(255,255,255,0.06);
    text-transform: uppercase;
    animation: tsqMarquee 18s linear infinite;
    }
    @keyframes tsqMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
    }

    /* slider */
    .tsq-slider{
    display: flex;
    gap: 1rem;
    padding: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    }
    .tsq-slider::-webkit-scrollbar{ display: none; }

    .tsq-slide{
    position: relative;
    flex: 0 0 86%;
    min-height: 460px;
    border-radius: calc(var(--radius) - 6px);
    overflow: hidden;
    scroll-snap-align: center;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(0,0,0,0.25);
    cursor: pointer;
    transform: translateZ(0);
    }
    .tsq-slide::before{
    content:"";
    position:absolute; inset:0;
    background: radial-gradient(900px 500px at 20% 20%, rgba(255,46,46,0.12), transparent 60%);
    pointer-events:none;
    opacity: 0.9;
    }

    .tsq-media{
    position:absolute; inset:0;
    }
    .tsq-media img,
    .tsq-media video{
    width:100%;
    height:100%;
    object-fit: cover;
    display:block;
    filter: contrast(1.05) saturate(1.05);
    transform: scale(1.02);
    }
    .tsq-media video{
    background: #000;
    }

    /* overlay */
    .tsq-overlay{
    position:absolute;
    left: 0; right:0; bottom:0;
    padding: 1.35rem 1.25rem 1.2rem 1.25rem;
    background: linear-gradient(to top, rgba(0,0,0,0.78), rgba(0,0,0,0.12));
    border-top: 1px solid rgba(255,255,255,0.08);
    }

    .tsq-meta{
    display:flex;
    flex-wrap:wrap;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    }
    .tsq-chip{
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(0,0,0,0.20);
    color: rgba(255,255,255,0.80);
    }
    .tsq-chip.accent{
    border-color: rgba(255,46,46,0.45);
    background: rgba(255,46,46,0.12);
    color: rgba(255,255,255,0.92);
    }

    .tsq-h{
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    letter-spacing: -0.02em;
    color:#fff;
    margin-bottom: 0.35rem;
    }
    .tsq-p{
    color: rgba(255,255,255,0.62);
    line-height: 1.65;
    max-width: 60ch;
    font-size: 1rem;
    margin-bottom: 0.9rem;
    text-align: justify;
    }

    .tsq-cta{
    width: fit-content;
    }

    /* controls */
    .tsq-controls{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 0.9rem;
    padding: 0.9rem 1rem 1rem 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.18);
    backdrop-filter: blur(8px);
    }

    .tsq-arrow{
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.9);
    font-size: 1.9rem;
    line-height: 1;
    display:flex;
    align-items:center;
    justify-content:center;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }
    .tsq-arrow:hover{
    transform: translateY(-2px);
    border-color: rgba(255,46,46,0.55);
    background: rgba(255,46,46,0.10);
    }

    .tsq-dots{
    display:flex;
    gap: 0.55rem;
    align-items:center;
    justify-content:center;
    flex: 1;
    }
    .tsq-dot{
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.06);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }
    .tsq-dot.active{
    transform: scale(1.25);
    border-color: rgba(255,46,46,0.75);
    background: rgba(255,46,46,0.22);
    }

    .tsq-hint{
    padding: 0.85rem 1rem 1rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    }

    /* responsive for gallery */
    @media (max-width: 980px){
    .tsq-slide{ flex-basis: 92%; min-height: 420px; }
    .tsq-ticker-track{ font-size: 1.8rem; }
    }
    @media (max-width: 520px){
    .tsq-slide{ min-height: 380px; }
    .tsq-arrow{ width: 44px; height: 44px; }
    }


    /* =========================
    FIX: .two-col NO encajona (grid min-width fix)
    ========================= */
    .two-col{
    display: grid;
    /* columna izquierda más controlada + derecha realmente flexible */
    grid-template-columns: minmax(160px, 240px) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    padding-top: 5rem;
    }

    /* CRÍTICO: permite que el contenido de la columna 2 se encoja y use 100% del espacio */
    .two-col > *{
    min-width: 0;
    }

    /* asegura que el contenido (tsq-wrap incluido) use todo el ancho disponible */
    .two-col > :nth-child(2){
    width: 100%;
    }

    /* En pantallas medianas, reduce un poco el padding lateral global */
    @media (max-width: 1200px){
    section{ padding: 0 2rem; }
    header{ padding: 1.4rem 2rem; }
    }

    /* En móvil: una sola columna y listo */
    @media (max-width: 980px){
    .two-col{
        grid-template-columns: 1fr;
        padding-top: 3rem;
    }
    }

    /* La galería debe ocupar el 100% real de su columna */
    .tsq-wrap,
    .tsq-stage,
    .tsq-slider{
    width: 100%;
    }

    /* Slides menos “poster gigante” en desktop */
    .tsq-slide{
    flex: 0 0 72%;
    }

    /* En pantallas grandes, se ve más Times Square */
    @media (min-width: 1400px){
    .tsq-slide{ flex: 0 0 62%; }
    }


    /* =========================
    BACK TO TOP BUTTON
    ========================= */
    .back-to-top{
    position: fixed;
    right: 1.6rem;
    bottom: 1.6rem;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
    color: rgba(255,255,255,0.95);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: 
        opacity 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
    }

    .back-to-top:hover{
    transform: translateY(0) scale(1.05);
    border-color: rgba(255,46,46,0.6);
    background: rgba(255,46,46,0.15);
    }

    /* visible state */
    .back-to-top.show{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    }

    /* Mobile: slightly smaller */
    @media (max-width: 520px){
    .back-to-top{
        width: 46px;
        height: 46px;
        right: 1.1rem;
        bottom: 1.1rem;
        font-size: 1.25rem;
    }
    }



    /* =========================
    MOBILE RESPONSIVE MENU
    ========================= */
    .site-header{
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    padding: 1.7rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    gap: 1rem;
    mix-blend-mode: exclusion;
    }

    /* Desktop nav (default) */
    .site-nav ul{
    display: flex;
    list-style: none;
    gap: 1.6rem;
    align-items: center;
    }

    /* Hamburger button */
    .nav-toggle{
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(0,0,0,0.22);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    gap: 6px;
    }
    .nav-toggle-bar{
    display:block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    }

    /* Overlay + Drawer */
    .nav-overlay{
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(12px);
    z-index: 999;
    padding: 1.1rem;
    }
    .nav-overlay.open{ display: block; }

    .nav-drawer{
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.05);
    box-shadow: var(--shadow);
    overflow: hidden;

    transform: translateY(10px);
    opacity: 0;
    animation: drawerIn 0.25s ease forwards;
    }
    @keyframes drawerIn{
    to { transform: translateY(0); opacity: 1; }
    }

    .nav-drawer-top{
    display:flex;
    align-items:center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    background: rgba(0,0,0,0.16);
    }
    .nav-drawer-brand{
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    display:flex;
    gap: 0.65rem;
    align-items: baseline;
    }
    .nav-drawer-brand span{
    font-family: var(--font-mono);
    font-weight: 400;
    font-size: 0.72rem;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    }

    .nav-close{
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(0,0,0,0.18);
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    line-height: 1;
    }

    .nav-drawer-links{
    display:flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    }
    .nav-drawer-links a{
    text-decoration:none;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: rgba(255,255,255,0.9);
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(0,0,0,0.18);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }
    .nav-drawer-links a:hover{
    transform: translateY(-2px);
    border-color: rgba(255,46,46,0.55);
    background: rgba(255,46,46,0.10);
    }
    .nav-drawer-links a.nav-cta{
    border-color: rgba(255,46,46,0.55);
    background: rgba(255,46,46,0.12);
    }

    .nav-drawer-foot{
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,0.10);
    background: rgba(0,0,0,0.14);
    }

    /* MOBILE breakpoint */
    @media (max-width: 980px){
    .site-header{
        padding: 1.05rem 1.2rem;
        mix-blend-mode: normal;  /* evita que se vea raro en móvil */
        background: rgba(0,0,0,0.25);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        backdrop-filter: blur(10px);
    }
    .site-nav{ display: none; }
    .nav-toggle{ display: flex; }
    }

    /* Extra small */
    @media (max-width: 520px){
    .nav-overlay{ padding: 0.9rem; }
    .nav-drawer{ max-width: 100%; }
    }



    /* =========================
    MOBILE MENU: DARK + BLUR OVERLAY (HIGH CONTRAST)
    ========================= */

    /* Overlay más oscuro y con blur más fuerte */
    .nav-overlay{
    /* antes: background muy suave */
    background: rgba(0,0,0,0.86) !important;   /* MÁS oscuro */
    backdrop-filter: blur(18px) !important;    /* MÁS blur */
    -webkit-backdrop-filter: blur(18px) !important;
    }

    /* Si quieres un “vignette” para que sea más Times Square */
    .nav-overlay::before{
    content:"";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(900px 600px at 20% 15%, rgba(255,46,46,0.10), transparent 60%),
        radial-gradient(700px 500px at 80% 20%, rgba(255,255,255,0.06), transparent 62%),
        linear-gradient(to bottom, rgba(0,0,0,0.90), rgba(0,0,0,0.75));
    opacity: 1;
    }

    /* Drawer más sólido para que los botones resalten */
    .nav-drawer{
    background: rgba(12,12,12,0.88) !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    }

    /* Top bar del drawer más definida */
    .nav-drawer-top{
    background: rgba(0,0,0,0.45) !important;
    border-bottom: 1px solid rgba(255,255,255,0.14) !important;
    }

    /* BOTONES/LINKS: más contraste, más “button look” */
    .nav-drawer-links a{
    border: 1px solid rgba(255,255,255,0.18) !important;
    background: rgba(255,255,255,0.07) !important; /* más claro */
    color: rgba(255,255,255,0.96) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    }

    /* Hover más evidente */
    .nav-drawer-links a:hover{
    border-color: rgba(255,46,46,0.70) !important;
    background: rgba(255,46,46,0.14) !important;
    }

    /* CTA aún más destacado */
    .nav-drawer-links a.nav-cta{
    border-color: rgba(255,46,46,0.75) !important;
    background: rgba(255,46,46,0.18) !important;
    }

    /* Close button más visible */
    .nav-close{
    border-color: rgba(255,255,255,0.20) !important;
    background: rgba(255,255,255,0.06) !important;
    }

    /* Cuando el menú está abierto: desenfoca la página */
    body.menu-open #scroll-container{
    filter: blur(10px);
    opacity: 0.55;
    transform: scale(0.995);
    transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
    }



    /* =========================
    FIX HERO SUBTITLE - MOBILE
    ========================= */
    @media (max-width: 980px){
      .hero{
        padding-top: calc(12vh + 64px); /* empuja todo el hero hacia abajo */
      }

      .hero-subtitle{
        margin-top: 1.2rem;   /* espacio extra solo para el subtítulo */
      }
    }

    @media (max-width: 520px){
      .hero{
        padding-top: calc(12vh + 84px); /* aún más espacio en móviles pequeños */
      }

      .hero-subtitle{
        margin-top: 1.6rem;
        font-size: 0.85rem; /* opcional: mejora legibilidad */
      }
    }


    @media (max-width: 980px){
      .hero-subtitle{
        padding-top: 3.5rem;
      }
    }



    /* =========================
    FIX HERO NOTE - MOBILE
    ========================= */
    @media (max-width: 980px){
      .hero{
        min-height: calc(100vh + 80px); /* permite que todo respire */
      }

      .hero-note{
        display: block;
        opacity: 1;
        transform: none;
        margin-top: 1.6rem;
      }
    }

    @media (max-width: 520px){
      .hero{
        min-height: calc(100vh + 110px);
      }

      .hero-note{
        font-size: 0.78rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
      }
    }



    /* =========================
      TIMES SQUARE – IFRAME MODE
      ========================= */

    .tsq-media iframe{
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
      background: #000;
      transform: scale(1.02); /* mismo efecto que imágenes */
      /*pointer-events: none;    clave: evita scroll dentro del iframe */
    }


    .tsq-slide::after{
      /*content:"";*/
      position:absolute;
      inset:0;
      background: transparent;
      z-index: 2;
    }


    /* =========================
    TIMES SQUARE – IFRAME LIVE
    ========================= */

    .tsq-media{
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    .tsq-media iframe{
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
      background: #000;
    }


    .tsq-overlay{
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 3; /* encima del iframe */
      pointer-events: auto;
    }


    /* =========================
      DISABLE CUSTOM CURSOR
      ========================= */
    body.cursor-disabled .cursor,
    body.cursor-disabled .cursor-dot{
      opacity: 0;
      pointer-events: none;
    }
    


    /* =========================
    IFRAME: HIDE SCROLLBAR (KEEP SCROLL)
    ========================= */

    /* Recorta SOLO lo que sobresale (la zona de scrollbar) */
    .tsq-media{
      position: absolute;
      inset: 0;
      overflow: hidden;  /* clave: oculta la barra */
    }

    /* Empuja el iframe hacia la derecha (extra width) para que
      la scrollbar quede fuera del recorte, pero SIN recortar el lado izquierdo */
    .tsq-media iframe{
      position: absolute;
      top: 0;
      left: 0;

      width: calc(100% + 18px);   /* solo “crece” hacia la derecha */
      height: 100%;

      border: 0;
      display: block;
      background: #000;
    }




    /* =========================
    TSQ SLIDE: IFRAME TOP + OVERLAY BELOW (NO OVERLAP)
    ========================= */

    /* El slide ahora es una columna */
    .tsq-slide{
      display: flex;
      flex-direction: column;
      overflow: hidden; /* mantiene bordes/redondeo limpio */
    }

    /* El contenedor del iframe se vuelve "normal" (no absoluto) */
    .tsq-media{
      position: relative !important;
      inset: auto !important;
      flex: 1 1 auto;
      min-height: 320px;  /* ajusta si quieres más alto */
      overflow: hidden;   /* mantiene tu hack de scrollbar oculta */
    }

    /* Iframe ocupa el área de arriba */
    .tsq-media iframe{
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: calc(100% + 18px); /* mantiene scrollbar oculta hacia la derecha */
      border: 0;
      display: block;
      background: #000;
    }

    /* El overlay ahora va abajo, separado */
    .tsq-overlay{
      position: relative !important;
      left: auto !important;
      right: auto !important;
      bottom: auto !important;

      padding: 1.15rem 1.25rem;
      background: rgba(0,0,0,0.22); /* look premium sin tapar */
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    /* Opcional: que el botón "Ver" quede alineado bonito */
    .tsq-overlay .tsq-view-btn,
    .tsq-overlay .tsq-open{
      margin-top: 0.6rem;
    }



    /* =========================
      TSQ IFRAME — MOBILE WIDER
      ========================= */
    @media (max-width: 980px){

      /* El slide usa casi todo el viewport */
      .tsq-slide{
        flex-basis: 96% !important;
      }

      /* Más alto el preview */
      .tsq-media{
        min-height: 460px !important;
      }

      /* iframe un poco más “zoom” horizontal */
      .tsq-media iframe{
        width: calc(100% + 28px) !important;
      }
    }

    /* Móviles pequeños */
    @media (max-width: 520px){

      .tsq-slide{
        flex-basis: 98% !important;
      }

      .tsq-media{
        min-height: 520px !important;
      }

      .tsq-media iframe{
        width: calc(100% + 34px) !important;
      }
    }


    /* =========================
    TSQ IFRAME — MOBILE FULL CONTENT
    ========================= */

    @media (max-width: 980px){

      .tsq-media{
        overflow: visible !important;   /* no recortar */
        min-height: 480px !important;
      }

      .tsq-media iframe{
        position: relative !important;
        width: 100% !important;         /* tamaño real */
        height: 100% !important;
        left: 0 !important;
        transform: none !important;
      }
    }

    @media (max-width: 520px){

      .tsq-media{
        min-height: 560px !important;   /* más alto = mejor lectura */
      }

      .tsq-media iframe{
        width: 100% !important;
      }
    }



    /* ===== Premium background photo layer (behind WebGL) ===== */
    .bg-photo{
    position: fixed;
    inset: 0;
    z-index: -3;

    background-image: url("YUNIORGRIS.png"); /* tu ruta */
    background-size: cover;
    background-position: center 12%; /* antes 20% — sube el rostro */
    background-repeat: no-repeat;

    /* +40% más visible */
    opacity: 0.30;                /* antes 0.22 */
    filter: grayscale(100%)
            contrast(1.12)
            brightness(0.88)      /* antes 0.75 */
            blur(0.3px);          /* antes 0.6px */

    transform: scale(1.03);
    }


    /* Oscurece bordes y deja el rostro más "notable" sin brillar */
    .bg-photo::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(720px 540px at 50% 32%,
        rgba(0,0,0,0.08),
        rgba(0,0,0,0.65) 70%),
        linear-gradient(to bottom,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.22) 45%,
        rgba(0,0,0,0.80));
    }





    /* Mobile: disable fake smooth scroll for snappy native scrolling */
    @media (max-width: 980px) {
      #scroll-container {
        position: relative !important;
        transform: none !important;
        will-change: auto !important;
      }
    }







    /* =========================
    PREMIUM SERVICES CARDS
    ========================= */

    .services-grid{
      margin-top: 1.2rem;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    .service-card.premium{
      --rx: 0deg;
      --ry: 0deg;
      --mx: 50%;
      --my: 50%;

      position: relative;
      border-radius: calc(var(--radius) + 2px);
      overflow: hidden;
      background: rgba(255,255,255,0.028);
      border: 1px solid rgba(255,255,255,0.10);
      box-shadow: 0 20px 70px rgba(0,0,0,0.55);
      transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
      transition: transform 0.18s ease, border-color 0.25s ease, background 0.25s ease;
      min-height: 420px;
      display: flex;
      flex-direction: column;
    }

    /* Gradient border glow */
    .service-card.premium::before{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(700px 360px at 20% 20%, rgba(255,46,46,0.22), transparent 55%),
                  radial-gradient(700px 360px at 80% 30%, rgba(255,255,255,0.10), transparent 55%);
      opacity: 0.85;
      pointer-events:none;
      filter: blur(10px);
    }

    /* Shine follows mouse */
    .service-card.premium::after{
      content:"";
      position:absolute; inset:0;
      background: radial-gradient(380px 220px at var(--mx) var(--my),
                rgba(255,255,255,0.14), transparent 60%);
      opacity: 0;
      transition: opacity 0.2s ease;
      pointer-events:none;
    }

    .service-card.premium:hover{
      border-color: rgba(255, 46, 46, 0.45);
      background: rgba(255,255,255,0.04);
    }

    .service-card.premium:hover::after{ opacity: 1; }

    .service-media{
      position: relative;
      height: 160px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      background:
        radial-gradient(600px 280px at 18% 20%, rgba(255,46,46,0.20), transparent 55%),
        radial-gradient(720px 280px at 85% 35%, rgba(255,255,255,0.09), transparent 55%),
        linear-gradient(to bottom, rgba(0,0,0,0.20), rgba(0,0,0,0.60));
    }

    .service-media-grid{
      position:absolute; inset:0;
      background-image:
        linear-gradient(to right, rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.06) 1px, transparent 1px);
      background-size: 26px 26px;
      opacity: 0.14;
      mask-image: radial-gradient(closest-side at 30% 40%, black 55%, transparent 85%);
    }

    .service-media-ui{
      position:absolute;
      left: 14px; top: 12px;
      display:flex; align-items:center; gap: 7px;
      opacity: 0.85;
    }
    .service-media-ui .ui-dot{
      width: 7px; height: 7px;
      border-radius: 999px;
      background: rgba(255,255,255,0.20);
      border: 1px solid rgba(255,255,255,0.12);
    }
    .service-media-ui .ui-pill{
      margin-left: 10px;
      width: 86px; height: 10px;
      border-radius: 999px;
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.10);
    }

    /* theme variations */
    .service-card[data-theme="dev"] .service-media{
      background:
        radial-gradient(600px 280px at 18% 20%, rgba(255,46,46,0.22), transparent 55%),
        radial-gradient(720px 280px at 85% 35%, rgba(255,255,255,0.10), transparent 55%),
        linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.62));
    }
    .service-card[data-theme="hosting"] .service-media{
      background:
        radial-gradient(620px 280px at 18% 22%, rgba(255,46,46,0.14), transparent 55%),
        radial-gradient(760px 320px at 70% 20%, rgba(255,255,255,0.12), transparent 55%),
        linear-gradient(to bottom, rgba(0,0,0,0.18), rgba(0,0,0,0.62));
    }
    .service-card[data-theme="integrations"] .service-media{
      background:
        radial-gradient(700px 320px at 25% 25%, rgba(255,46,46,0.18), transparent 55%),
        radial-gradient(820px 320px at 80% 35%, rgba(255,255,255,0.10), transparent 55%),
        linear-gradient(to bottom, rgba(0,0,0,0.18), rgba(0,0,0,0.62));
    }

    .service-body{
      position: relative;
      z-index: 2;
      padding: 1.25rem 1.25rem 1.15rem 1.25rem;
      display:flex;
      flex-direction: column;
      gap: 1rem;
      flex: 1;
    }

    .service-top{
      display:flex;
      gap: 0.9rem;
      align-items:flex-start;
    }

    .service-icon{
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display:flex;
      align-items:center;
      justify-content:center;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(0,0,0,0.28);
      box-shadow: 0 18px 50px rgba(0,0,0,0.35);
      color: rgba(255,255,255,0.92);
      flex: 0 0 auto;
    }
    .service-icon svg{ width: 22px; height: 22px; }

    .service-head h3{
      font-family: var(--font-display);
      font-weight: 750;
      letter-spacing: -0.02em;
      color: #fff;
      font-size: 1.25rem;
    }
    .service-head p{
      margin-top: 0.55rem;
      color: rgba(255,255,255,0.62);
      line-height: 1.7;
      font-size: 0.98rem;
      max-width: 56ch;
      text-align: left;
    }

    .service-card.premium .service-meta{
      margin-top: 0.2rem;
      display:flex;
      flex-wrap:wrap;
      gap: 0.55rem;
    }

    .service-foot{
      margin-top: auto;
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 1rem;
      padding-top: 0.7rem;
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .service-note{
      font-family: var(--font-mono);
      font-size: 0.74rem;
      letter-spacing: 0.6px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
    }

    .service-cta{
      font-family: var(--font-mono);
      font-size: 0.78rem;
      letter-spacing: 0.6px;
      text-transform: uppercase;
      text-decoration: none;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255,46,46,0.55);
      background: rgba(255,46,46,0.12);
      color: rgba(255,255,255,0.95);
      transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }
    .service-cta:hover{
      transform: translateY(-2px);
      border-color: rgba(255,46,46,0.85);
      background: rgba(255,46,46,0.20);
    }

    /* subtle floating */
    @media (prefers-reduced-motion: no-preference){
      .service-card.premium{
        animation: svcFloat 6.5s ease-in-out infinite;
      }
      .service-card.premium:nth-child(2){ animation-delay: 0.6s; }
      .service-card.premium:nth-child(3){ animation-delay: 1.2s; }
      @keyframes svcFloat{
        0%,100%{ transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(0); }
        50%{ transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(-6px); }
      }
    }

    /* responsive */
    @media (max-width: 980px){
      .services-grid{ grid-template-columns: 1fr; }
      .service-card.premium{
        transform: none !important;
        animation: none !important;
        min-height: 0;
      }
      .service-card.premium::after{ display:none; }
    }




  /* =========================
  SERVICES — REAL IMAGES
  ========================= */

  .service-media{
    position: relative;
    height: 180px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: #0b0b0b;
  }

  .service-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
    transition: transform .7s ease, filter .7s ease;
    filter: saturate(1.05) contrast(1.05);
  }

  /* dark premium overlay */
  .service-media-overlay{
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom,
        rgba(0,0,0,0.15),
        rgba(0,0,0,0.65)
      ),
      radial-gradient(
        600px 260px at 20% 20%,
        rgba(255,46,46,0.22),
        transparent 60%
      );
    pointer-events: none;
  }

  /* hover zoom + clarity */
  .service-card:hover .service-media img{
    transform: scale(1.12);
    filter: saturate(1.15) contrast(1.12);
  }












  /* =========================
   HIDE GOOGLE TRANSLATE UI
   ========================= */
  .g-translate-hidden { display:none !important; }

  /* Hide the top banner + its iframe */
  .goog-te-banner-frame.skiptranslate,
  iframe.goog-te-banner-frame { display:none !important; }

  /* Prevent Google from pushing the page down */
  body { top: 0 !important; }
  .skiptranslate { display:none !important; }

  /* Optional: hide tooltip bubble */
  #goog-gt-tt, .goog-te-balloon-frame { display:none !important; }

  /* =========================
    LANGUAGE POPUP (PREMIUM)
    ========================= */
  .lang-overlay{
    display:none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0,0,0,0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.2rem;
  }
  .lang-overlay.open{
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .lang-modal{
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.05);
    box-shadow: var(--shadow);
    overflow: hidden;
    transform: translateY(10px);
    opacity: 0;
    animation: langIn .28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  @keyframes langIn{ to { transform: translateY(0); opacity: 1; } }

  .lang-top{
    padding: 1.15rem;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    background:
      radial-gradient(700px 250px at 20% 20%, rgba(255,46,46,0.18), transparent 55%),
      rgba(0,0,0,0.12);
  }
  .lang-title{
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: rgba(255,255,255,0.95);
    font-size: 1.25rem;
  }
  .lang-sub{
    margin-top: 0.45rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.6;
    font-size: 0.95rem;
  }

  .lang-actions{
    padding: 1rem 1.15rem 1.15rem 1.15rem;
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
  .lang-btn{
    display:flex;
    align-items:center;
    gap: 0.75rem;
    width: 100%;
    padding: 14px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(0,0,0,0.18);
    color: rgba(255,255,255,0.92);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    font-family: var(--font-mono);
    letter-spacing: 0.6px;
    text-transform: uppercase;
  }
  .lang-btn:hover{
    transform: translateY(-2px);
    border-color: rgba(255,46,46,0.55);
    background: rgba(255,46,46,0.10);
  }
  .lang-btn.accent{
    border-color: rgba(255,46,46,0.55);
    background: rgba(255,46,46,0.12);
  }
  .lang-pill{
    width: 44px;
    height: 34px;
    border-radius: 999px;
    display:flex;
    align-items:center;
    justify-content:center;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
    font-weight: 700;
  }
  .lang-name{
    font-family: var(--font-body);
    letter-spacing: 0;
    text-transform: none;
    font-weight: 600;
  }

  @media (max-width: 520px){
    .lang-actions{ grid-template-columns: 1fr; }
  }



  /* LANGUAGE POPUP visibility (final) */
  .lang-overlay{
    display:none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0,0,0,0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.2rem;
  }
  .lang-overlay.open{
    display:flex;
    align-items:center;
    justify-content:center;
  }

  /* Hide Google translate banner */
  .goog-te-banner-frame.skiptranslate,
  iframe.goog-te-banner-frame{ display:none !important; }
  body{ top:0 !important; }
  .skiptranslate{ display:none !important; }
  #goog-gt-tt, .goog-te-balloon-frame{ display:none !important; }






  /* =========================
  FLOATING LANGUAGE BUTTON
  ========================= */
  .float-btn{
    position: fixed;
    right: 18px;
    z-index: 2200;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(0,0,0,0.30);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 60px rgba(0,0,0,0.45);
    color: rgba(255,255,255,0.92);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  }

  .float-btn:hover{
    transform: translateY(-2px);
    border-color: rgba(255,46,46,0.55);
    background: rgba(255,46,46,0.12);
  }

  /* Middle-right placement */
  .float-lang{
    top: 50%;
    transform: translateY(-50%);
  }

  /* Keep hover transform from overriding translateY */
  .float-lang:hover{
    transform: translateY(calc(-50% - 2px));
  }

  .float-lang-icon{
    width: 22px;
    height: 22px;
    display: inline-flex;
  }
  .float-lang-icon svg{
    width: 22px;
    height: 22px;
  }

  /* Optional: if you have a back-to-top on bottom-right, this avoids overlap on small screens */
  @media (max-width: 520px){
    .float-btn{ right: 12px; }
  }





  /* =========================
  FIX: TSQ IFRAME TRUE RESPONSIVE
  (Make iframe use real width so embedded site hits correct breakpoints)
  ========================= */

  /* Mantén el contenedor normal y sin trucos de ancho */
  .tsq-media{
    overflow: hidden !important;
  }

  /* Iframe: tamaño REAL (sin +px, sin scale) */
  .tsq-media iframe{
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
    position: absolute;
    inset: 0;
    border: 0;
    display: block;
    background: #000;
  }

  /* Ajusta altura del preview en móvil para que se lea bien */
  @media (max-width: 980px){
    .tsq-media{
      min-height: 520px !important;
    }
  }

  @media (max-width: 520px){
    .tsq-media{
      min-height: 580px !important;
    }
  }








  /* ===================================== */
  /* ========= FINAL RESPONSIVE FIX ====== */
  /* ===================================== */

  /* =========================
  LAST ONE FIX TO RESPONSIVE
  ========================= */

  /* Prevent horizontal scroll */
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  /* Use dynamic viewport height for mobile */
  .hero {
    min-height: 100svh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Prevent elements from overflowing */
  img, video, iframe {
    max-width: 100%;
    height: auto;
  }

  /* Fix 100vw overflow issues */
  section, .container, .wrapper {
    max-width: 100%;
  }

  /* Buttons responsive */
  .hero-buttons,
  .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-buttons a,
  .cta-buttons a {
    flex: 1 1 auto;
    text-align: center;
  }

  /* TSQ Gallery stability */
  .tsq-overlay iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  /* Improve mobile padding */
  @media (max-width: 768px) {

    .hero {
      padding: 40px 20px;
      text-align: center;
    }

    .hero h1 {
      font-size: clamp(28px, 6vw, 38px);
    }

    .hero p {
      font-size: 16px;
    }

    .container {
      padding: 0 20px;
    }

    .grid,
    .services-grid,
    .cards {
      grid-template-columns: 1fr !important;
    }

    .footer {
      text-align: center;
    }
  }
