﻿/* ========================================
   TUWEB95 - ESTILOS PRINCIPALES
   Paleta: Negro (#000, #0a0a0a, #111)
           Rojo (#e63946, #ff1a1a, #c1121f)
           Blanco (#fff, #f5f5f5, #ccc)
   ======================================== */
/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --red: #e63946;
    --red-light: #ff2d3b;
    --red-dark: #c1121f;
    --red-glow: rgba(230, 57, 70, 0.3);
    --black: #000000;
    --black-soft: #0a0a0a;
    --black-card: #111111;
    --black-border: #1a1a1a;
    --black-lighter: #222222;
    --white: #ffffff;
    --white-soft: #f5f5f5;
    --gray: #888888;
    --gray-light: #aaaaaa;
    --gray-dark: #555555;
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Instrument Serif', Georgia, serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.container-wide {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.text-gradient {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 50%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}/* --- BOTONES --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    letter-spacing: -0.01em;
}
.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 0 20px var(--red-glow);
}
.btn-primary:hover {
    background: var(--red-light);
    box-shadow: 0 0 40px var(--red-glow);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--black-border);
}
.btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-2px);
}
.btn-full {
    width: 100%;
}
.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
    background: #22c55e;
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}
/* --- HERO (full-screen inmersivo) --- */
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--black);
}
/* Unicorn Studio animation background */
.hero-unicorn-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 35%, rgba(0,0,0,0.05) 60%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
    pointer-events: none;
}
/* --- NAVEGACION (glassmorphism pill) --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 16px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 10px 0;
}
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    z-index: 10001;
}
.logo-tu { color: var(--white); }
.logo-web { color: var(--white); }
.logo-95 { color: var(--red); }
.nav-pill {
    display: flex;
    align-items: center;
    gap: 2px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.05);
    padding: 4px 4px 4px 6px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.nav-link {
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    border-radius: 9999px;
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.06);
}
.nav-cta {
    margin-left: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 9999px;
    background: var(--white);
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--black);
    transition: var(--transition);
}
.nav-cta:hover {
    background: rgba(255,255,255,0.9);
    color: var(--black);
}
.cta-arrow {
    width: 16px;
    height: 16px;
}/* Hamburger */
.hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    z-index: 10001;
    transition: var(--transition);
}
.hamburger:hover {
    background: rgba(255,255,255,0.15);
}
.hamburger-icon {
    width: 20px;
    height: 20px;
    color: rgba(255,255,255,0.9);
}
/* Mobile menu */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9997;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--black-card);
    border-left: 1px solid rgba(255,255,255,0.08);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    gap: 8px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.active {
    right: 0;
}
.mobile-link {
    padding: 14px 0;
    font-size: 1.15rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}
.mobile-link:hover {
    color: var(--white);
    padding-left: 8px;
}
.mobile-link-cta {
    margin-top: 16px;
    background: var(--red);
    color: var(--white);
    text-align: center;
    border-radius: 10px;
    border-bottom: none;
    padding: 14px;
    font-weight: 600;
}
.mobile-link-cta:hover {
    background: var(--red-light);
    padding-left: 0;
}
/* Hero body */
.hero-body {
    position: relative;
    z-index: 4;
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    padding-top: 140px;
    padding-bottom: 48px;
}
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.1);
    padding: 8px 12px 8px 10px;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-bottom: 28px;
}
.badge-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--black);
    background: rgba(255,255,255,0.9);
    border-radius: 9999px;
    padding: 2px 10px;
}
.badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 24px;
}
.hidden-mobile {
    display: block;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 300;
}
.hero-subtitle strong {
    color: var(--red);
    font-weight: 700;
}
.hero-ctas {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: center;
}
.hero-btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 9999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition);
}
.hero-btn-glass:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.25);
}
.hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    background: transparent;
    border-radius: 9999px;
    transition: var(--transition);
}
.hero-btn-ghost:hover {
    color: var(--white);
}
.btn-icon { width: 16px; height: 16px; }
.btn-icon-small { width: 14px; height: 14px; }
.animate-hero {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideIn 1s ease-out both;
    animation-delay: var(--delay, 0s);
}
@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* --- SECCIONES GENERALES (dark) --- */
.section {
    padding: 120px 0;
    position: relative;
}
.section-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 60px;
}/* ============================================
   PROBLEMA - BENTO GRID (light section)
   ============================================ */
.section-light {
    padding: 120px 0;
    background: var(--neutral-50);
    color: var(--neutral-900);
}
.section-header-light {
    max-width: 640px;
    margin-bottom: 64px;
}
.section-eyebrow-light {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--red);
    font-weight: 600;
    display: block;
    margin-bottom: 16px;
}
.section-title-light {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--neutral-900);
    margin-bottom: 20px;
}
.section-title-light em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--red);
}
.section-desc-light {
    font-size: 1.05rem;
    color: var(--neutral-500);
    line-height: 1.7;
    font-weight: 400;
}
/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}
.bento-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--neutral-200);
    transition: var(--transition);
    overflow: hidden;
}
.bento-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
/* Bento Testimonial (spans 2 cols) */
.bento-testimonial {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.bento-quote-icon {
    margin-bottom: 16px;
    color: var(--neutral-900);
}
.bento-quote {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--neutral-700);
    margin-bottom: 24px;
}
.bento-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.bento-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.8rem;
}
.bento-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--neutral-900);
}
.bento-author span {
    font-size: 0.8rem;
    color: var(--neutral-400);
}
/* Bento Visual */
.bento-visual {
    grid-column: span 2;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}
.bento-visual-content {
    width: 100%;
}
.bento-browser {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--neutral-200);
}
.bento-browser-bar {
    display: flex;
    gap: 6px;
    padding: 10px 14px;
    background: var(--neutral-100);
    border-bottom: 1px solid var(--neutral-200);
}
.bento-browser-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.bento-browser-bar span:nth-child(1) { background: #ff5f57; }
.bento-browser-bar span:nth-child(2) { background: #ffbd2e; }
.bento-browser-bar span:nth-child(3) { background: #28ca41; }
.bento-browser-body {
    padding: 16px;
}
.bento-search-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--neutral-100);
    border-radius: 8px;
    margin-bottom: 12px;
    color: var(--neutral-400);
    font-size: 0.85rem;
}
.bento-result {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 8px;
}
.bento-result strong {
    display: block;
    font-size: 0.9rem;
    color: var(--neutral-900);
}
.bento-result span {
    font-size: 0.8rem;
    color: var(--neutral-400);
}
.bento-result-miss {
    background: #fef2f2;
    border: 1px solid #fecaca;
}
.bento-result-x {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fee2e2;
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.bento-result-hit {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}
.bento-result-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}
/* Bento Stats */
.bento-stats {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.bento-stat-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 16px;
}
.bento-circle-svg {
    width: 100%;
    height: 100%;
}
.bento-stat-value {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.bento-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neutral-900);
    letter-spacing: -0.03em;
    line-height: 1;
}
.bento-stat-label {
    font-size: 0.55rem;
    color: var(--neutral-400);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
    max-width: 70px;
    text-align: center;
}
.bento-stat-desc {
    font-size: 0.9rem;
    color: var(--neutral-500);
    line-height: 1.5;
}
/* Bento Contact */
.bento-contact {
    grid-column: span 2;
    background: var(--neutral-900);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bento-contact-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.bento-contact-text {
    color: var(--neutral-400);
    font-size: 0.95rem;
    margin-bottom: 24px;
    font-weight: 300;
}
.bento-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--red);
    color: var(--white);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    width: fit-content;
}
.bento-contact-btn:hover {
    background: var(--red-light);
    transform: translateY(-2px);
}/* ============================================
   PROCESO - White Cards with Mockups
   ============================================ */
.section-proceso {
    padding: 120px 0;
    background: var(--neutral-100);
    color: var(--neutral-900);
}
.proceso-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.proceso-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid var(--neutral-200);
    transition: var(--transition);
}
.proceso-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.proceso-badge {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(230, 57, 70, 0.08);
    color: var(--red);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}
.proceso-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: var(--neutral-900);
}
.proceso-card-desc {
    font-size: 0.92rem;
    color: var(--neutral-500);
    line-height: 1.7;
    margin-bottom: 28px;
}
/* Proceso Mockups */
.proceso-mockup {
    background: var(--neutral-100);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--neutral-200);
}
/* ============================================
   PROCESO MOCKUPS (pm-)
   ============================================ */
/* Paso 01: Chat */
.pm-chat { display: flex; flex-direction: column; gap: 8px; }
.pm-msg {
    padding: 8px 12px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 82%;
}
.pm-msg-in {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    align-self: flex-start;
    border-bottom-left-radius: 3px;
}
.pm-msg-out {
    background: rgba(230,57,70,0.07);
    border: 1px solid rgba(230,57,70,0.12);
    align-self: flex-end;
    border-bottom-right-radius: 3px;
}
.pm-msg-author {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--red);
}
.pm-msg-line {
    height: 5px;
    border-radius: 3px;
    background: var(--neutral-200);
}
.pm-msg-out .pm-msg-line { background: rgba(230,57,70,0.15); }
.pm-input {
    display: flex;
    gap: 6px;
    margin-top: 2px;
}
.pm-input-field {
    flex: 1;
    height: 28px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid var(--neutral-200);
}
.pm-input-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}
/* Paso 02: Browser */
.pm-browser {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--neutral-200);
    background: var(--white);
}
.pm-browser-dots {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 10px;
    background: var(--neutral-100);
    border-bottom: 1px solid var(--neutral-200);
}
.pm-browser-dots i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: block;
}
.pm-browser-dots i:nth-child(1) { background: #ff5f57; }
.pm-browser-dots i:nth-child(2) { background: #ffbd2e; }
.pm-browser-dots i:nth-child(3) { background: #28ca41; }
.pm-browser-dots span {
    margin-left: 6px;
    font-size: 0.55rem;
    color: var(--neutral-400);
    background: var(--white);
    padding: 2px 8px;
    border-radius: 3px;
    border: 1px solid var(--neutral-200);
}
.pm-browser-page {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.pm-page-nav {
    height: 5px;
    border-radius: 3px;
    background: var(--neutral-200);
}
.pm-page-hero {
    height: 36px;
    border-radius: 5px;
    background: linear-gradient(135deg, var(--red), #ff6b6b);
}
.pm-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}
.pm-page-card {
    height: 26px;
    border-radius: 3px;
    background: var(--neutral-100);
    border: 1px solid var(--neutral-200);
}
/* Paso 03: Stats */
.pm-stats { display: flex; flex-direction: column; gap: 12px; }
.pm-stats-row { display: flex; gap: 14px; }
.pm-stat-box { display: flex; flex-direction: column; gap: 1px; }
.pm-stat-num {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--neutral-900);
    letter-spacing: -0.02em;
    line-height: 1;
}
.pm-stat-green { color: #16a34a; }
.pm-stat-lbl {
    font-size: 0.55rem;
    color: var(--neutral-400);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
}
.pm-chart {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 56px;
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: 6px;
    padding: 8px;
}
.pm-chart-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(to top, var(--red), #ff6b6b);
    opacity: 0.75;
    transition: opacity 0.3s ease;
}
.proceso-card:hover .pm-chart-bar { opacity: 1; }

/* --- Proceso: Hover effects --- */
.proceso-card:hover .pm-msg-in { transform: translateX(2px); }
.proceso-card:hover .pm-msg-out { transform: translateX(-2px); }
.pm-msg { transition: transform 0.3s ease; }
.pm-page-hero { transition: opacity 0.3s ease; opacity: 0.85; }
.proceso-card:hover .pm-page-hero { opacity: 1; }
.pm-page-card { transition: transform 0.3s ease; }
.proceso-card:hover .pm-page-card { transform: translateY(-2px); }

/* ============================================
   PRECIOS - Split Layout with Selector
   ============================================ */
.section-precios {
    padding: 120px 0;
    background: var(--black);
}
.precios-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.precios-left-desc {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
}
/* Plan Selector */
.plan-selector {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.plan-select-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 14px;
    color: var(--white);
    font-family: var(--font);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}
.plan-select-btn:hover {
    border-color: rgba(255,255,255,0.15);
}
.plan-select-btn.active {
    border-color: var(--red);
    background: rgba(230, 57, 70, 0.05);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.1);
}
.plan-select-info strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.plan-select-info span {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 300;
}
.plan-select-tag {
    padding: 4px 12px;
    background: rgba(230, 57, 70, 0.15);
    color: var(--red);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}
.tag-save {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
}
/* Plan Detail */
.precios-detail {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 24px;
    padding: 48px 40px;
    position: sticky;
    top: 100px;
}
.precios-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--black-border);
}
.precios-detail-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}
.precios-detail-tagline {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 300;
}
.precios-detail-price {
    text-align: right;
}
.precios-price-amount {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    display: block;
}
.precios-price-suffix {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 400;
}
/* Feature list */
.precios-feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
    list-style: none;
}
.precios-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--gray-light);
    font-weight: 300;
}
.precios-feature-list li svg {
    flex-shrink: 0;
    color: var(--red);
}/* ============================================
   QUE INCLUYE - Gradient Glow Tiles
   ============================================ */
.section-incluye {
    padding: 120px 0;
    background: var(--black-soft);
}
.incluye-header {
    margin-bottom: 64px;
}
.incluye-desc {
    color: var(--gray-light);
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 300;
    margin-top: 16px;
}
.incluye-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.incluye-tile {
    position: relative;
    padding: 32px;
    border-radius: 16px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    overflow: hidden;
    transition: var(--transition);
}
.incluye-tile:hover {
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}
/* Glow effects */
.tile-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    opacity: 0.06;
    pointer-events: none;
    transition: opacity 0.6s ease;
}
.incluye-tile:hover .tile-glow {
    opacity: 0.12;
}
.tile-glow-blue {
    background: radial-gradient(circle at center, #3b82f6, transparent 60%);
}
.tile-glow-orange {
    background: radial-gradient(circle at center, #f97316, transparent 60%);
}
.tile-glow-purple {
    background: radial-gradient(circle at center, #a855f7, transparent 60%);
}
.tile-glow-teal {
    background: radial-gradient(circle at center, #14b8a6, transparent 60%);
}
.tile-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
}
.tile-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
    position: relative;
}
.tile-desc {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    font-weight: 300;
    position: relative;
}
/* ============================================
   INCLUYE - Tile Visuals (tv-)
   ============================================ */
.tv-extra {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
    position: relative;
}
/* Responsive: devices */
.tv-devices {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    justify-content: center;
}
.tv-dev {
    border: 1.5px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.03);
    border-radius: 3px;
}
.tv-dev-pc { width: 56px; height: 36px; }
.tv-dev-tab { width: 32px; height: 40px; border-radius: 4px; }
.tv-dev-mob { width: 20px; height: 34px; border-radius: 4px; }
/* SEO: progress bars */
.tv-seo { display: flex; flex-direction: column; gap: 8px; }
.tv-seo-row { display: flex; align-items: center; gap: 6px; }
.tv-seo-lbl { font-size: 0.6rem; color: var(--gray); min-width: 65px; }
.tv-seo-track { flex: 1; height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.tv-seo-bar { height: 100%; border-radius: 2px; background: #4ade80; }
.tv-seo-orange { background: #f97316; }
.tv-seo-pct { font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.8); min-width: 26px; text-align: right; }
/* SSL: URL bar */
.tv-ssl-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 5px;
}
.tv-ssl-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
}
.tv-ssl-txt { font-size: 0.65rem; color: rgba(255,255,255,0.6); }
/* Hosting: server rows */
.tv-host { display: flex; flex-direction: column; gap: 7px; }
.tv-host-row {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.6);
}
.tv-host-led {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 4px rgba(74,222,128,0.5);
    flex-shrink: 0;
}
.tv-host-up { margin-left: auto; font-weight: 600; color: #4ade80; font-size: 0.6rem; }
/* Speed */
.tv-speed { text-align: center; }
.tv-speed-num { font-size: 1.2rem; font-weight: 800; color: #4ade80; display: block; letter-spacing: -0.02em; }
.tv-speed-track { height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; margin: 6px 0 4px; }
.tv-speed-fill { width: 88%; height: 100%; border-radius: 2px; background: #4ade80; }
.tv-speed-label { font-size: 0.55rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.04em; }
/* Support */
.tv-support { display: flex; flex-direction: column; gap: 8px; }
.tv-support-line {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}
.tv-support-led {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 4px rgba(74,222,128,0.5);
    flex-shrink: 0;
}
.tv-support-tags { display: flex; gap: 5px; }
.tv-support-tags span {
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 0.6rem;
    font-weight: 500;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.55);
}

/* --- Incluye: Hover effects --- */
.tv-dev { transition: transform 0.3s ease; }
.incluye-tile:hover .tv-dev { transform: translateY(-3px); }
.tv-seo-bar { transition: width 0.6s ease; }
.incluye-tile:hover .tv-seo-bar { filter: brightness(1.2); }
.tv-ssl-bar { transition: transform 0.3s ease; }
.incluye-tile:hover .tv-ssl-bar { transform: translateX(3px); }
.tv-host-led { transition: box-shadow 0.3s ease; }
.incluye-tile:hover .tv-host-led { box-shadow: 0 0 8px rgba(74,222,128,0.8); }
.tv-speed-fill { transition: filter 0.3s ease; }
.incluye-tile:hover .tv-speed-fill { filter: brightness(1.3); }
.tv-support-led { animation: tvPulse 2s ease infinite; }
@keyframes tvPulse {
    0%, 100% { box-shadow: 0 0 4px rgba(74,222,128,0.5); }
    50% { box-shadow: 0 0 8px rgba(74,222,128,0.9); }
}
.tv-support-tags span { transition: transform 0.2s ease, border-color 0.2s ease; }
.incluye-tile:hover .tv-support-tags span { transform: translateY(-2px); border-color: rgba(255,255,255,0.15); }

/* ============================================
   PORTFOLIO - Split + Vertical Marquee
   ============================================ */
.section-portfolio {
    padding: 120px 0;
    background: var(--black);
    overflow: hidden;
}
.portfolio-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.portfolio-left {
    position: sticky;
    top: 120px;
}
.portfolio-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--red);
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}
.portfolio-big-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}
.portfolio-divider {
    width: 60px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
    margin-bottom: 32px;
}
.portfolio-copy-bold {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.portfolio-copy-text {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 32px;
}
.portfolio-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--red);
    color: var(--white);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}
.portfolio-btn:hover {
    background: var(--red-light);
    transform: translateY(-2px);
}
.portfolio-btn-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
}
/* Draggable Portfolio */
.portfolio-marquee-container {
    height: 700px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent, black 4%, black 96%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 4%, black 96%, transparent);
    cursor: grab;
    position: relative;
}
.portfolio-marquee-container:active {
    cursor: grabbing;
}
.portfolio-marquee-container.is-dragging {
    cursor: grabbing;
}
.portfolio-drag-track {
    display: flex;
    flex-direction: column;
    transition: transform 0.1s ease-out;
    will-change: transform;
}
.portfolio-drag-track.is-dragging {
    transition: none;
}
.marquee-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
}
/* Card with banner preview */
.marquee-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--black-border);
    background: var(--black-card);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.marquee-card:hover {
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
/* Banner preview with iframe */
.marquee-card-preview {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--neutral-900);
}
.marquee-card-preview iframe {
    width: 1440px;
    height: 900px;
    border: none;
    transform: scale(0.28);
    transform-origin: top left;
    pointer-events: none;
}
/* Overlay over iframe to prevent interaction during scroll */
.marquee-card-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}
/* Card info bar */
.marquee-card-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-top: 1px solid var(--black-border);
}
.marquee-card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.marquee-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
    font-weight: 600;
}
.marquee-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}
/* Demo button */
.marquee-demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: var(--transition);
    text-decoration: none;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
.marquee-demo-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-1px);
}/* ============================================
   TESTIMONIOS - Thumbnail Grid 3x3 + Popup
   ============================================ */
.section-testimonios {
    background: var(--black);
}
.testimonios-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.testimonio-video-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}
.testimonio-video-card:hover {
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
/* Thumbnail 16:9 */
.testimonio-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--neutral-900);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonio-thumb-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.testimonio-play-btn {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.9);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.4);
}
.testimonio-play-btn svg {
    margin-left: 2px;
}
.testimonio-video-card:hover .testimonio-play-btn {
    background: var(--red);
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(230, 57, 70, 0.5);
}
.testimonio-video-info {
    padding: 12px 14px;
    border-top: 1px solid var(--black-border);
}
.testimonio-video-info strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1px;
}
.testimonio-video-info span {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 400;
}
/* Video Popup Modal */
.video-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.video-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: var(--black-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--black-border);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.video-modal-overlay.active .video-modal-content {
    transform: scale(1);
}
.video-modal-content video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--black);
    display: block;
}
.video-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
}
.video-modal-close:hover {
    background: var(--red);
    border-color: var(--red);
}
.video-modal-info {
    padding: 16px 20px;
    border-top: 1px solid var(--black-border);
}
.video-modal-info strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}
.video-modal-info span {
    font-size: 0.85rem;
    color: var(--gray);
}
/* ============================================
   FAQ
   ============================================ */
.faq {
    background: var(--black-soft);
}
.faq-list {
    max-width: 750px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--black-border);
}
.faq-question {
    width: 100%;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font);
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: var(--transition);
}
.faq-question:hover {
    color: var(--red);
}
.faq-chevron {
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--gray);
}
.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--red);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-answer {
    max-height: 300px;
}
.faq-answer p {
    padding: 0 0 24px;
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}/* ============================================
   CONTACTO
   ============================================ */
.contacto-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contacto-desc {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
    font-weight: 300;
}
.contacto-form {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 20px;
    padding: 40px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--gray-light);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--black);
    border: 1px solid var(--black-border);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px var(--red-glow);
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    cursor: pointer;
}
.form-group select option {
    background: var(--black-card);
    color: var(--white);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}/* ============================================
   FOOTER
   ============================================ */
.footer-new {
    border-top: 1px solid var(--black-border);
    padding: 60px 0 30px;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 64px;
    margin-bottom: 48px;
}
.footer-brand-desc {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 12px;
    line-height: 1.6;
    font-weight: 300;
}
.footer-nav-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    color: var(--gray-light);
}
.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 10px;
    font-weight: 300;
}
.footer-col a:hover {
    color: var(--white);
}
.footer-bottom-new {
    border-top: 1px solid var(--black-border);
    padding-top: 24px;
    text-align: center;
}
.footer-bottom-new p {
    color: var(--gray-dark);
    font-size: 0.85rem;
    font-weight: 300;
}
/* ============================================
   BOTONES FLOTANTES
   ============================================ */
.floating-buttons {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
    align-items: center;
}
.scroll-top-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}
.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.scroll-top-btn:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.4);
}
.whatsapp-float {
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}
/* ============================================
   ANIMACIONES SCROLL
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Fallback: si JS tarda, los elementos se muestran igualmente tras 3s */
@keyframes fadeUpFallback {
    to { opacity: 1; transform: translateY(0); }
}
.fade-up {
    animation: fadeUpFallback 0.6s ease 3s both;
}
.fade-up.visible {
    animation: none;
}/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .proceso-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .precios-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .precios-detail {
        position: static;
    }
    .portfolio-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .portfolio-left {
        position: static;
    }
    .portfolio-marquee-container {
        height: 500px;
    }
    .marquee-card-preview {
        height: 160px;
    }
    .testimonios-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .incluye-tiles {
        grid-template-columns: repeat(2, 1fr);
    }
    .contacto-wrapper {
        gap: 40px;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .section, .section-light, .section-proceso, .section-precios, .section-incluye, .section-portfolio, .section-testimonios {
        padding: 80px 0;
    }
    .section-title, .section-title-light {
        margin-bottom: 40px;
    }
    .nav-pill {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .hero-body {
        padding-top: 100px;
        padding-bottom: 32px;
    }
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
    }
    .hidden-mobile {
        display: none;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-testimonial,
    .bento-visual,
    .bento-stats,
    .bento-contact {
        grid-column: span 1;
    }
    .proceso-cards {
        grid-template-columns: 1fr;
    }
    .incluye-tiles {
        grid-template-columns: 1fr;
    }
    .testimonios-video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .contacto-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contacto-form {
        padding: 28px;
    }
    .precios-detail {
        padding: 32px 24px;
    }
    .footer-nav-cols {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .portfolio-marquee-container {
        height: 420px;
    }
    .marquee-card-preview {
        height: 140px;
    }
    .marquee-card-preview iframe {
        transform: scale(0.22);
    }
}
@media (max-width: 480px) {
    .container, .container-wide {
        padding: 0 16px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .section-title, .section-title-light {
        font-size: 1.8rem;
    }
    .portfolio-big-title {
        font-size: 1.6rem;
    }
    .precios-price-amount {
        font-size: 2.2rem;
    }
    .testimonios-video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .testimonio-video-info {
        padding: 8px 10px;
    }
    .testimonio-video-info strong {
        font-size: 0.75rem;
    }
    .testimonio-video-info span {
        font-size: 0.65rem;
    }
    .testimonio-play-btn {
        width: 34px;
        height: 34px;
    }
    .testimonio-play-btn svg {
        width: 14px;
        height: 14px;
    }
    .video-modal-content {
        width: 95%;
    }
    .footer-nav-cols {
        grid-template-columns: 1fr;
    }
    .marquee-card-preview {
        height: 120px;
    }
    .marquee-card-preview iframe {
        transform: scale(0.18);
    }
    .marquee-card-info {
        padding: 10px 14px;
    }
    .marquee-demo-btn {
        padding: 6px 10px;
        font-size: 0.7rem;
    }
}