/* RESET Y BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /* Remover el gradiente global del html */
    background: #f5f7fa; /* Color base sólido */
    min-height: 100vh;
}

/* Asegurar que el área por encima del viewport también tenga el color base */
html::before {
    content: '';
    position: fixed;
    top: -100vh;
    left: 0;
    right: 0;
    height: 100vh;
    background: #f5f7fa; /* Color base sólido */
    z-index: -1;
}

body {
    font-family: 'Inter', sans-serif;
    background: transparent; /* Usar el fondo del html */
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    /* Para iOS notch */
    padding-top: env(safe-area-inset-top);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    padding-bottom: env(safe-area-inset-bottom);
}

/* =====================================================
   HEADER: BREATHING MINIMALISM RESPONSIVE
   ===================================================== */
.velvz-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    overflow: hidden;
    padding: 1rem 0;
    min-height: 100px;
    background: transparent;
    border-bottom: none;
    transition: all 0.3s ease;
    /* Para iOS notch */
    padding-top: calc(1rem + env(safe-area-inset-top));
}

/* Header con fondo cuando se hace scroll (solo desktop) */
@media (min-width: 769px) {
    .velvz-header--scrolled {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(20px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }
}

.velvz-header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
    z-index: 10;
}

.velvz-header__island {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 22px;
    padding: 0.8rem 1.4rem;
    position: relative;
    transition: all 0.4s ease;
    animation: velvzHeaderBreathe 8s ease-in-out infinite;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.velvz-header__island--brand { 
    animation-delay: 0s;
    padding: 0.8rem; /* Padding fijo para el logo */
}
.velvz-header__island--nav { animation-delay: 2.7s; }
.velvz-header__island--cta { 
    animation-delay: 5.3s;
    /* CTA island mantiene su estilo original */
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

@keyframes velvzHeaderBreathe {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    }
    50% { 
        transform: scale(1.015); 
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    }
}

/* LOGO CON TAMAÑO FIJO */
.velvz-header__logo {
    width: 44px;
    height: 44px;
    position: relative;
    flex-shrink: 0;
    cursor: pointer; /* Clickable */
}

.velvz-header__logo-shape {
    width: 100%;
    height: 100%;
    background: transparent;
    border: 2px solid rgba(51, 51, 51, 0.8); /* Color gris por defecto igual que los links */
    border-radius: 14px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.velvz-header__logo-face {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 34px;
    height: 16px;
    position: relative;
}

.velvz-header__logo-eye {
    width: 8px;
    height: 8px;
    background: rgba(51, 51, 51, 0.8); /* Color gris por defecto */
    border-radius: 50%;
    transition: all 0.3s ease; /* Transición más suave */
}

.velvz-header__logo-mouth {
    width: 12px;
    height: 6px;
    background: rgba(51, 51, 51, 0.8); /* Color gris por defecto */
    border-radius: 6px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

/* Hover states */
.velvz-header__logo:hover .velvz-header__logo-shape {
    border-color: #1a1a1a; /* Negro al hover */
}

.velvz-header__logo:hover .velvz-header__logo-eye {
    background: #1a1a1a; /* Negro al hover */
    animation: velvzBlink 0.3s ease;
}

.velvz-header__logo:hover .velvz-header__logo-mouth {
    background: #1a1a1a; /* Negro al hover */
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

@keyframes velvzBlink {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.2); }
}

.velvz-header__nav {
    display: flex;
    gap: 1.8rem;
}

.velvz-header__link {
    text-decoration: none;
    color: rgba(51, 51, 51, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 100000;
}

.velvz-header__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #333;
    transition: width 0.3s ease;
    border-radius: 1px;
}

.velvz-header__link:hover {
    color: #333;
    transform: translateY(-1px);
}

.velvz-header__link:hover::after {
    width: 100%;
}

.velvz-header__cta {
    /* El botón ahora solo tiene contorno en gris por defecto */
    background: transparent;
    color: rgba(51, 51, 51, 0.8); /* Color gris por defecto */
    border: 2px solid rgba(51, 51, 51, 0.8); /* Borde gris por defecto */
    padding: 0.8rem 1.6rem;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.velvz-header__cta-text {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.velvz-header__cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.velvz-header__cta:hover {
    /* Al hacer hover se cambia a negro y se rellena */
    background: #333;
    color: white;
    border-color: #333;
    box-shadow: 0 0 20px rgba(51, 51, 51, 0.3);
}

.velvz-header__cta:hover .velvz-header__cta-text {
    color: white;
}

.velvz-header__cta:hover .velvz-header__cta-shine {
    left: 100%;
}

/* MOBILE MENU */
.velvz-header__mobile-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 22px;
    padding: 0.8rem 1.4rem;
    position: relative;
    transition: all 0.4s ease;
    animation: velvzHeaderBreathe 8s ease-in-out infinite;
    animation-delay: 2.7s;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
}

.velvz-header__hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 20px;
    height: 14px;
}

.velvz-header__hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #333;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.velvz-header__hamburger--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.velvz-header__hamburger--active span:nth-child(2) {
    opacity: 0;
}

.velvz-header__hamburger--active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* MOBILE MENU OVERLAY */
.velvz-header__mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border-left: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.1);
    /* Para iOS notch */
    padding-top: calc(2rem + env(safe-area-inset-top));
}

.velvz-header__mobile-menu--active {
    right: 0;
}

/* CLOSE BUTTON EN MOBILE MENU */
.velvz-header__mobile-close {
    position: absolute;
    top: calc(2rem + env(safe-area-inset-top));
    right: 2rem;
    width: 32px;
    height: 32px;
    background: rgba(51, 51, 51, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.velvz-header__mobile-close:hover {
    background: rgba(51, 51, 51, 0.2);
    transform: rotate(90deg);
}

.velvz-header__mobile-close::before,
.velvz-header__mobile-close::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    background: #333;
    border-radius: 1px;
}

.velvz-header__mobile-close::before {
    transform: rotate(45deg);
}

.velvz-header__mobile-close::after {
    transform: rotate(-45deg);
}

.velvz-header__mobile-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 9998;
}

.velvz-header__mobile-backdrop--active {
    opacity: 1;
    visibility: visible;
}

.velvz-header__mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 6rem;
    margin-bottom: 3rem;
}

.velvz-header__mobile-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(30px);
    animation: velvzMobileSlideIn 0.5s ease-out forwards;
}

.velvz-header__mobile-link:nth-child(1) { animation-delay: 0.1s; }
.velvz-header__mobile-link:nth-child(2) { animation-delay: 0.2s; }
.velvz-header__mobile-link:nth-child(3) { animation-delay: 0.3s; }
.velvz-header__mobile-link:nth-child(4) { animation-delay: 0.4s; }

@keyframes velvzMobileSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.velvz-header__mobile-link:hover {
    color: #666; /* Gris en lugar de azul */
    padding-left: 1rem;
}

.velvz-header__mobile-cta {
    /* El botón móvil también con gris por defecto */
    background: transparent;
    color: rgba(51, 51, 51, 0.8); /* Color gris por defecto */
    border: 2px solid rgba(51, 51, 51, 0.8); /* Borde gris por defecto */
    padding: 1rem 2rem;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: velvzMobileCTAAppear 0.5s ease-out 0.5s forwards;
    width: 100%; /* Ancho completo */
    max-width: 300px; /* Máximo ancho */
    margin: 0 auto; /* Centrado */
    display: block; /* Display block para que funcione el margin auto */
}

@keyframes velvzMobileCTAAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.velvz-header__mobile-cta:hover {
    background: #333; /* Se rellena al hover */
    color: white;
    border-color: #333;
    box-shadow: 0 0 20px rgba(51, 51, 51, 0.3);
}

.velvz-header__mobile-cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.velvz-header__mobile-cta:hover .velvz-header__mobile-cta-shine {
    left: 100%;
}

.velvz-header__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.velvz-header__pulse {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(51, 51, 51, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    animation: velvzHeaderPulse 12s ease-in-out infinite;
}

.velvz-header__pulse:nth-child(1) {
    top: 5%;
    left: 10%;
    animation-delay: 0s;
}

.velvz-header__pulse:nth-child(2) {
    bottom: 15%;
    right: 15%;
    animation-delay: 4s;
}

.velvz-header__pulse:nth-child(3) {
    top: 50%;
    left: 55%;
    animation-delay: 8s;
}

@keyframes velvzHeaderPulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.2; 
    }
    50% { 
        transform: scale(1.3); 
        opacity: 0.05; 
    }
}

/* =====================================================
   HERO: LETRAS CENTRADAS EN VIEWPORT CON SUBTÍTULO
   ===================================================== */
.velvz-hero {
    height: 100vh; /* Altura exacta del viewport */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding: 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); /* Gradiente propio del hero */
    z-index: 1;
    /* Compensar la altura del header fijo */
    padding-top: calc(2rem + 100px);
}

.velvz-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 1s ease-out;
    /* Centrado inicial más preciso */
    transform: translateY(-5%);
}

.velvz-hero__content--centered {
    transform: translateY(-12%); /* Ajuste fino para centrado perfecto */
}

.velvz-hero__text {
    font-size: clamp(6rem, 18vw, 22rem);
    font-weight: 300; /* Más delgado en desktop */
    letter-spacing: 0.25em;
    line-height: 0.85;
    text-transform: uppercase;
    color: #1a1a1a;
    position: relative;
    z-index: 10;
    opacity: 0;
    animation: velvzHeroFadeIn 2s ease-out 0.5s forwards;
    user-select: none; /* No seleccionable */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    margin-bottom: 0;
}

.velvz-hero__subtitle {
    font-size: clamp(1.2rem, 3vw, 2.5rem);
    font-weight: 200;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.6);
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    animation: velvzHeroSubtitleAppear 1.5s ease-out 2s forwards;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    margin-top: 1rem;
}

@keyframes velvzHeroFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes velvzHeroSubtitleAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* AMBIENT ELEMENTS SUTILES */
.velvz-hero__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.velvz-hero__ambient-pulse {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(51, 51, 51, 0.015) 0%, transparent 70%);
    border-radius: 50%;
    animation: velvzHeroPulse 15s ease-in-out infinite;
}

.velvz-hero__ambient-pulse:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.velvz-hero__ambient-pulse:nth-child(2) {
    bottom: 20%;
    right: 10%;
    animation-delay: 5s;
}

.velvz-hero__ambient-pulse:nth-child(3) {
    top: 60%;
    left: 70%;
    animation-delay: 10s;
}

.velvz-hero__ambient-pulse:nth-child(4) {
    bottom: 50%;
    left: 20%;
    animation-delay: 7.5s;
}

@keyframes velvzHeroPulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.3; 
    }
    50% { 
        transform: scale(1.4); 
        opacity: 0.05; 
    }
}

/* =====================================================
   LANDING: BREATHING MINIMALISM STYLE
   ===================================================== */
.velvz-landing {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    overflow: hidden;
    z-index: 10;
    background: white; /* Fondo blanco para la primera sección */
}

.velvz-landing__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.velvz-landing__content-island {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 28px;
    padding: 3rem;
    position: relative;
    animation: velvzLandingBreathe 10s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

@keyframes velvzLandingBreathe {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    }
    50% { 
        transform: scale(1.008); 
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    }
}

.velvz-landing__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(51, 51, 51, 0.05);
    border: 1px solid rgba(51, 51, 51, 0.1);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #666;
}

.velvz-landing__badge-dot {
    width: 6px;
    height: 6px;
    background: #28a745;
    border-radius: 50%;
    animation: velvzBadgePulse 2s ease-in-out infinite;
}

@keyframes velvzBadgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.velvz-landing__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.velvz-landing__title-line {
    display: block;
    opacity: 0;
    animation: velvzFadeInUp 0.8s ease-out forwards;
}

.velvz-landing__title-line:nth-child(1) { animation-delay: 0.2s; }
.velvz-landing__title-line:nth-child(2) { animation-delay: 0.4s; }

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

.velvz-landing__subtitle {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 32ch;
    line-height: 1.5;
    opacity: 0;
    animation: velvzFadeInUp 0.8s ease-out 0.6s forwards;
}

.velvz-landing__actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: velvzFadeInUp 0.8s ease-out 0.8s forwards;
}

.velvz-landing__cta {
    position: relative;
    border: none;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.velvz-landing__cta--primary {
    background: #333;
    color: white;
}

.velvz-landing__cta--primary:hover {
    background: #555;
    box-shadow: 0 8px 25px rgba(51, 51, 51, 0.2);
    transform: none; /* Sin levantamiento */
}

.velvz-landing__cta--secondary {
    background: rgba(51, 51, 51, 0.05);
    color: #333;
    border: 1px solid rgba(51, 51, 51, 0.1);
}

.velvz-landing__cta--secondary:hover {
    background: rgba(51, 51, 51, 0.1);
    transform: none; /* Sin levantamiento */
}

.velvz-landing__cta-text {
    position: relative;
    z-index: 2;
}

.velvz-landing__cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.velvz-landing__cta--primary:hover .velvz-landing__cta-shine {
    left: 100%;
}

.velvz-landing__cta-icon {
    font-size: 0.75rem;
}

.velvz-landing__social-proof {
    opacity: 0;
    animation: velvzFadeInUp 0.8s ease-out 1s forwards;
}

.velvz-landing__social-text {
    display: block;
    font-size: 0.875rem;
    color: #888;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.velvz-landing__social-logos {
    display: flex;
    gap: 1.5rem;
}

.velvz-landing__social-logo {
    padding: 0.5rem 1rem;
    background: rgba(51, 51, 51, 0.03);
    border: 1px solid rgba(51, 51, 51, 0.08);
    border-radius: 8px;
    font-size: 0.875rem;
    color: #999;
    font-weight: 500;
}

.velvz-landing__visual-island {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 28px;
    padding: 2rem;
    position: relative;
    animation: velvzLandingBreathe 10s ease-in-out infinite;
    animation-delay: 5s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.velvz-landing__dashboard {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.velvz-landing__dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.velvz-landing__dashboard-dots {
    display: flex;
    gap: 0.4rem;
}

.velvz-landing__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.velvz-landing__dot:nth-child(1) { background: #ff5f57; }
.velvz-landing__dot:nth-child(2) { background: #ffbd2e; }
.velvz-landing__dot:nth-child(3) { background: #28ca42; }

.velvz-landing__dashboard-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
}

.velvz-landing__dashboard-body {
    padding: 1.5rem 1.25rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.velvz-landing__metric {
    text-align: center;
}

.velvz-landing__metric-label {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.velvz-landing__metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.velvz-landing__dashboard-chart {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem 1.5rem;
    height: 100px;
}

.velvz-landing__chart-bar {
    width: 12px;
    background: linear-gradient(to top, #333, #666);
    border-radius: 6px 6px 0 0;
    animation: velvzChartGrow 2s ease-out;
    animation-fill-mode: both;
}

.velvz-landing__chart-bar:nth-child(1) { animation-delay: 0.1s; }
.velvz-landing__chart-bar:nth-child(2) { animation-delay: 0.2s; }
.velvz-landing__chart-bar:nth-child(3) { animation-delay: 0.3s; }
.velvz-landing__chart-bar:nth-child(4) { animation-delay: 0.4s; }
.velvz-landing__chart-bar:nth-child(5) { animation-delay: 0.5s; }
.velvz-landing__chart-bar:nth-child(6) { animation-delay: 0.6s; }

@keyframes velvzChartGrow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.velvz-landing__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.velvz-landing__ambient-pulse {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(51, 51, 51, 0.015) 0%, transparent 70%);
    border-radius: 50%;
    animation: velvzLandingPulse 15s ease-in-out infinite;
}

.velvz-landing__ambient-pulse:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.velvz-landing__ambient-pulse:nth-child(2) {
    bottom: 20%;
    right: 10%;
    animation-delay: 5s;
}

.velvz-landing__ambient-pulse:nth-child(3) {
    top: 60%;
    left: 70%;
    animation-delay: 10s;
}

.velvz-landing__ambient-pulse:nth-child(4) {
    bottom: 50%;
    left: 20%;
    animation-delay: 7.5s;
}

@keyframes velvzLandingPulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.3; 
    }
    50% { 
        transform: scale(1.4); 
        opacity: 0.05; 
    }
}

/* =====================================================
   SECCIÓN CÓMO FUNCIONA
   ===================================================== */
.velvz-how-it-works {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    overflow: hidden;
    z-index: 10;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); /* Gradiente propio de la sección */
}

.velvz-how-it-works__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.velvz-how-it-works__header {
    text-align: center;
    margin-bottom: 4rem;
}

.velvz-how-it-works__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(51, 51, 51, 0.05);
    border: 1px solid rgba(51, 51, 51, 0.1);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #666;
    opacity: 0;
    animation: velvzFadeInUp 0.8s ease-out 0.2s forwards;
}

.velvz-how-it-works__badge-dot {
    width: 6px;
    height: 6px;
    background: #667eea;
    border-radius: 50%;
    animation: velvzBadgePulse 2s ease-in-out infinite;
}

.velvz-how-it-works__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    opacity: 0;
    animation: velvzFadeInUp 0.8s ease-out 0.4s forwards;
}

.velvz-how-it-works__subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 50ch;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: velvzFadeInUp 0.8s ease-out 0.6s forwards;
}

/* TOGGLE SWITCH */
.velvz-how-it-works__toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    opacity: 0;
    animation: velvzFadeInUp 0.8s ease-out 0.8s forwards;
}

.velvz-how-it-works__toggle {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 60px;
    padding: 0.5rem;
    display: flex;
    gap: 0;
    position: relative;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    animation: velvzToggleBreathe 8s ease-in-out infinite;
    min-width: 420px;
}

.velvz-how-it-works__toggle-option {
    background: transparent;
    border: none;
    padding: 1rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    position: relative;
    z-index: 2;
    white-space: nowrap;
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.velvz-how-it-works__toggle-option--managed {
    color: white;
}

.velvz-how-it-works__toggle-option--selfhosted {
    color: #666;
}

.velvz-how-it-works__toggle-slider {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: calc(50% - 0.5rem);
    height: calc(100% - 1rem);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
    z-index: 1;
}

.velvz-how-it-works__toggle--selfhosted .velvz-how-it-works__toggle-slider {
    transform: translateX(calc(100% + 0.2rem));
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    box-shadow: 0 4px 16px rgba(52, 73, 94, 0.3);
}

.velvz-how-it-works__toggle--selfhosted .velvz-how-it-works__toggle-option--managed {
    color: #666;
}

.velvz-how-it-works__toggle--selfhosted .velvz-how-it-works__toggle-option--selfhosted {
    color: white;
}

@keyframes velvzToggleBreathe {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    }
    50% { 
        transform: scale(1.005); 
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }
}

/* CONTENIDO PRINCIPAL */
.velvz-how-it-works__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.velvz-how-it-works__info-island {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 28px;
    padding: 3rem;
    position: relative;
    animation: velvzLandingBreathe 10s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: velvzFadeInUp 0.8s ease-out 0.2s forwards, velvzLandingBreathe 10s ease-in-out infinite;
}

.velvz-how-it-works__info-island--selfhosted {
    background: rgba(44, 62, 80, 0.85);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.velvz-how-it-works__info-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #1a1a1a;
    transition: color 0.6s ease;
}

.velvz-how-it-works__info-title--selfhosted {
    color: white;
}

.velvz-how-it-works__info-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    transition: color 0.6s ease;
}

.velvz-how-it-works__info-description--selfhosted {
    color: rgba(255, 255, 255, 0.8);
}

.velvz-how-it-works__steps {
    list-style: none;
    counter-reset: step-counter;
}

.velvz-how-it-works__step {
    counter-increment: step-counter;
    position: relative;
    padding-left: 4rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: velvzStepAppear 0.6s ease-out forwards;
}

.velvz-how-it-works__step:nth-child(1) { animation-delay: 0.4s; }
.velvz-how-it-works__step:nth-child(2) { animation-delay: 0.6s; }
.velvz-how-it-works__step:nth-child(3) { animation-delay: 0.8s; }
.velvz-how-it-works__step:nth-child(4) { animation-delay: 1s; }

.velvz-how-it-works__step::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
    transition: all 0.6s ease;
}

.velvz-how-it-works__step--selfhosted::before {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    box-shadow: 0 4px 16px rgba(52, 73, 94, 0.3);
}

.velvz-how-it-works__step-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    transition: color 0.6s ease;
}

.velvz-how-it-works__step-title--selfhosted {
    color: white;
}

.velvz-how-it-works__step-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.6s ease;
}

.velvz-how-it-works__step-description--selfhosted {
    color: rgba(255, 255, 255, 0.7);
}

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

/* VISUAL ISLAND */
.velvz-how-it-works__visual-island {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 28px;
    padding: 2rem;
    padding-bottom: 5.4rem;
    position: relative;
    animation: velvzLandingBreathe 10s ease-in-out infinite;
    animation-delay: 5s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: velvzFadeInUp 0.8s ease-out 0.4s forwards, velvzLandingBreathe 10s ease-in-out infinite;
}

.velvz-how-it-works__visual-island--selfhosted {
    background: rgba(44, 62, 80, 0.7);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding-bottom: 3.7rem;
    
}

.velvz-how-it-works__mockup {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.6s ease;
}

.velvz-how-it-works__mockup--selfhosted {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.velvz-how-it-works__mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.6s ease;
}

.velvz-how-it-works__mockup-header--selfhosted {
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.velvz-how-it-works__mockup-dots {
    display: flex;
    gap: 0.4rem;
}

.velvz-how-it-works__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.velvz-how-it-works__dot:nth-child(1) { background: #ff5f57; }
.velvz-how-it-works__dot:nth-child(2) { background: #ffbd2e; }
.velvz-how-it-works__dot:nth-child(3) { background: #28ca42; }

.velvz-how-it-works__mockup-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    transition: color 0.6s ease;
}

.velvz-how-it-works__mockup-title--selfhosted {
    color: rgba(255, 255, 255, 0.8);
}

.velvz-how-it-works__chat-container {
    padding: 1.5rem 1.25rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.velvz-how-it-works__message {
    display: flex;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(10px);
    animation: velvzMessageAppear 0.5s ease-out forwards;
}

.velvz-how-it-works__message:nth-child(1) { animation-delay: 0.6s; }
.velvz-how-it-works__message:nth-child(2) { animation-delay: 0.9s; }
.velvz-how-it-works__message:nth-child(3) { animation-delay: 1.2s; }
.velvz-how-it-works__message:nth-child(4) { animation-delay: 1.5s; }

.velvz-how-it-works__message--user {
    flex-direction: row-reverse;
}

.velvz-how-it-works__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: background 0.6s ease;
}

.velvz-how-it-works__avatar--selfhosted {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.velvz-how-it-works__avatar--user {
    background: #e2e8f0;
    color: #666;
}

/* LOGO DEL BOT EN AVATAR */
.velvz-how-it-works__bot-face {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 16px;
    height: 10px;
    position: relative;
}

.velvz-how-it-works__bot-eye {
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
}

.velvz-how-it-works__bot-mouth {
    width: 6px;
    height: 3px;
    background: white;
    border-radius: 3px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.velvz-how-it-works__avatar--selfhosted .velvz-how-it-works__bot-eye {
    background: white;
}

.velvz-how-it-works__avatar--selfhosted .velvz-how-it-works__bot-mouth {
    background: white;
}

.velvz-how-it-works__message-content {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1rem;
    border-radius: 16px;
    max-width: 70%;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #333;
    transition: all 0.6s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.velvz-how-it-works__message-content--selfhosted {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.velvz-how-it-works__message--user .velvz-how-it-works__message-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
    color: white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

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

/* LOGIN FORM DENTRO DEL CHAT */
.velvz-how-it-works__login-form {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 0.75rem;
    display: block;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.velvz-how-it-works__login-form--selfhosted {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.velvz-how-it-works__form-group {
    margin-bottom: 0.75rem;
}

.velvz-how-it-works__form-group:last-child {
    margin-bottom: 0;
}

.velvz-how-it-works__form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 0.25rem;
    transition: color 0.6s ease;
}

.velvz-how-it-works__form-label--selfhosted {
    color: rgba(255, 255, 255, 0.7);
}

.velvz-how-it-works__form-input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    transition: all 0.3s ease;
}

.velvz-how-it-works__form-input--selfhosted {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.velvz-how-it-works__form-input::placeholder {
    color: #999;
}

.velvz-how-it-works__form-input--selfhosted::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.velvz-how-it-works__form-button {
    width: 100%;
    padding: 0.5rem;
    border: 2px solid #666;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    background: transparent;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.velvz-how-it-works__form-button:hover {
    background: #666;
    color: white;
}

.velvz-how-it-works__form-button--selfhosted {
    border-color: rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.8);
}

.velvz-how-it-works__form-button--selfhosted:hover {
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    border-color: rgba(255, 255, 255, 0.8);
}

/* AMBIENT ELEMENTS PARA CÓMO FUNCIONA */
.velvz-how-it-works__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.velvz-how-it-works__ambient-pulse {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.015) 0%, transparent 70%);
    border-radius: 50%;
    animation: velvzLandingPulse 15s ease-in-out infinite;
}

.velvz-how-it-works__ambient-pulse:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.velvz-how-it-works__ambient-pulse:nth-child(2) {
    bottom: 20%;
    right: 10%;
    animation-delay: 5s;
}

.velvz-how-it-works__ambient-pulse:nth-child(3) {
    top: 60%;
    left: 70%;
    animation-delay: 10s;
}

/* =====================================================
   FOOTER: MINIMALISTA
   ===================================================== */
.velvz-footer {
    background: white; /* Fondo blanco para el footer */
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
    /* Para iOS notch */
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
}

.velvz-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.velvz-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.velvz-footer__logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #333;
    cursor: pointer;
}

.velvz-footer__logo {
    width: 40px;
    height: 40px;
    position: relative;
}

.velvz-footer__logo-shape {
    width: 100%;
    height: 100%;
    background: transparent;
    border: 2px solid #1a1a1a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.velvz-footer__logo-face {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 30px;
    height: 14px;
    position: relative;
}

.velvz-footer__logo-eye {
    width: 7px;
    height: 7px;
    background: #1a1a1a;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.velvz-footer__logo-mouth {
    width: 10px;
    height: 5px;
    background: #1a1a1a;
    border-radius: 5px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.velvz-footer__logo:hover .velvz-footer__logo-eye {
    animation: velvzFooterBlink 0.3s ease;
}

.velvz-footer__logo:hover .velvz-footer__logo-mouth {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

@keyframes velvzFooterBlink {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.2); }
}

.velvz-footer__logo-link:hover .velvz-footer__logo-shape {
    transform: scale(1.1) rotate(5deg);
}

.velvz-footer__brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.velvz-footer__tagline {
    font-size: 0.9rem;
    color: #666;
    opacity: 0.8;
}

.velvz-footer__links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.velvz-footer__link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.velvz-footer__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #333;
    transition: width 0.3s ease;
}

.velvz-footer__link:hover {
    color: #333;
}

.velvz-footer__link:hover::after {
    width: 100%;
}

.velvz-footer__legal {
    text-align: right;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
}

.velvz-footer__copyright {
    margin-bottom: 0.5rem;
}

.velvz-footer__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.velvz-footer__pulse {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: velvzFooterPulse 15s ease-in-out infinite;
}

.velvz-footer__pulse:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.velvz-footer__pulse:nth-child(2) {
    bottom: 30%;
    right: 15%;
    animation-delay: 7s;
}

@keyframes velvzFooterPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.1; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1024px) {
    .velvz-header__nav {
        gap: 1.2rem;
    }
    
    .velvz-header__link {
        font-size: 0.9rem;
    }
    
    .velvz-landing__container {
        gap: 3rem;
    }
    
    /* Ajustar padding para evitar corte en rangos intermedios */
    .velvz-landing__content-island,
    .velvz-landing__visual-island {
        padding: 2.5rem;
    }
    
    .velvz-how-it-works__content {
        gap: 3rem;
    }
    
    .velvz-how-it-works__info-island,
    .velvz-how-it-works__visual-island {
        padding: 2.5rem;
    }
}

@media (max-width: 895px) {
    .velvz-landing__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 2rem;
    }
    
    .velvz-how-it-works__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .velvz-how-it-works__toggle-option {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
    
    /* CAMBIAR A LAYOUT HORIZONTAL EN TABLETS */
    .velvz-how-it-works__toggle {
        flex-direction: row;
        min-width: 380px;
    }
    
    .velvz-how-it-works__toggle-slider {
        width: calc(50% - 0.5rem);
        height: calc(100% - 1rem);
        transform: translateX(0);
        top: 0.5rem;
        left: 0.5rem;
    }
    
    .velvz-how-it-works__toggle--selfhosted .velvz-how-it-works__toggle-slider {
        transform: translateX(calc(100% + 0.2rem));
    }
}

@media (max-width: 768px) {
    .velvz-header {
        min-height: 80px;
        padding: 0.5rem 0;
        padding-top: calc(0.5rem + env(safe-area-inset-top));
    }
    
    .velvz-header__container {
        padding: 0 1rem;
        height: 70px;
    }
    
    /* Ocultar navegación desktop en móvil */
    .velvz-header__island--nav,
    .velvz-header__island--cta {
        display: none;
    }
    
    /* Mostrar hamburger menu en móvil */
    .velvz-header__mobile-toggle {
        display: flex;
        width: 64px;
        height: 64px;
    }
    
    /* Logo mismo tamaño en móvil */
    .velvz-header__island--brand {
        width: 64px;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.8rem;
    }
    
    .velvz-header__logo {
        width: 44px;
        height: 44px;
    }
    
    .velvz-hero {
        padding: 2rem 1rem;
        height: 100vh;
        /* Compensar header móvil */
        padding-top: calc(2rem + 80px);
    }

    .velvz-hero__content {
        /* Centrado inicial para móvil */
        transform: translateY(-8%);
    }

    .velvz-hero__content--centered {
        transform: translateY(-15%); /* Centrado específico para móvil */
    }

    .velvz-hero__text {
        font-size: clamp(3rem, 12vw, 8rem);
        letter-spacing: 0.2em;
        font-weight: 400; /* Mantener más grueso en móvil */
        margin-bottom: 0.25rem; /* Reducir espacio en móvil */
    }

    .velvz-hero__subtitle {
        font-size: clamp(0.8rem, 2vw, 1.5rem);
        letter-spacing: 0.1em;
    }
    
    .velvz-landing {
        padding-top: 2rem;
    }
    
    .velvz-landing__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .velvz-landing__content-island,
    .velvz-landing__visual-island {
        padding: 2rem;
    }
    
    .velvz-landing__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .velvz-landing__social-logos {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .velvz-landing__dashboard-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* CÓMO FUNCIONA RESPONSIVE */
    .velvz-how-it-works {
        padding: 4rem 0;
    }
    
    .velvz-how-it-works__container {
        padding: 0 1rem;
    }
    
    .velvz-how-it-works__info-island,
    .velvz-how-it-works__visual-island {
        padding: 2rem;
    }
    
    .velvz-how-it-works__step {
        padding-left: 3rem;
    }
    
    .velvz-how-it-works__step::before {
        width: 2rem;
        height: 2rem;
        font-size: 0.8rem;
    }
    
    /* TOGGLE VERTICAL CON BORDER-RADIUS REDUCIDO */
    .velvz-how-it-works__toggle {
        flex-direction: column;
        min-width: 300px;
        max-width: 340px;
        padding: 0.4rem;
        height: auto;
        border-radius: 20px;
    }
    
    .velvz-how-it-works__toggle-option {
        padding: 1rem 1rem;
        font-size: 0.85rem;
        width: 100%;
        flex: none;
        height: 54px;
        border-radius: 16px;
    }
    
    .velvz-how-it-works__toggle-slider {
        width: calc(100% - 0.8rem);
        height: calc(50% - 0.8rem);
        top: 0.4rem;
        left: 0.4rem;
        transform: translateY(0);
        border-radius: 16px;
    }
    
    .velvz-how-it-works__toggle--selfhosted .velvz-how-it-works__toggle-slider {
        transform: translateY(100%); /* Sin espacio extra, solo 100% */
    }
    
    /* Ocultar elementos decorativos en móvil */
    .velvz-header__pulse,
    .velvz-hero__ambient-pulse,
    .velvz-landing__ambient-pulse,
    .velvz-how-it-works__ambient-pulse,
    .velvz-footer__pulse {
        display: none;
    }
    
    /* FOOTER RESPONSIVE */
    .velvz-footer__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .velvz-footer__legal {
        text-align: center;
    }
    
    .velvz-footer__links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .velvz-footer__brand {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .velvz-header {
        padding: 0.5rem 0;
        min-height: 70px;
        padding-top: calc(0.5rem + env(safe-area-inset-top));
    }
    
    .velvz-header__container {
        height: 60px;
        padding: 0 0.5rem;
    }
    
    /* Logo mismo tamaño en móvil pequeño */
    .velvz-header__island--brand,
    .velvz-header__mobile-toggle {
        width: 64px;
        height: 64px;
        padding: 0.8rem;
    }
    
    .velvz-header__logo {
        width: 44px;
        height: 44px;
    }
    
    .velvz-hero {
        height: 100vh;
        padding: 1rem;
        /* Compensar header móvil pequeño */
        padding-top: calc(1rem + 70px);
    }

    .velvz-hero__content {
        /* Centrado inicial para móvil pequeño */
        transform: translateY(-10%);
    }

    .velvz-hero__content--centered {
        transform: translateY(-18%); /* Más centrado para móviles pequeños */
    }
    
    .velvz-hero__text {
        letter-spacing: 0.15em;
        margin-bottom: 0.25rem;
    }

    .velvz-hero__subtitle {
        letter-spacing: 0.08em;
    }
    
    .velvz-landing {
        padding: 2rem 0;
    }
    
    .velvz-landing__content-island,
    .velvz-landing__visual-island {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .velvz-landing__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .velvz-landing__subtitle {
        max-width: none;
        font-size: 1rem;
    }
    
    .velvz-landing__cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .velvz-header__mobile-menu {
        width: 90%;
        padding: 1.5rem;
        padding-top: calc(1.5rem + env(safe-area-inset-top));
    }
    
    .velvz-header__mobile-nav {
        margin-top: 4rem;
    }
    
    .velvz-header__mobile-link {
        font-size: 1.1rem;
    }
    
    /* CÓMO FUNCIONA MÓVIL PEQUEÑO */
    .velvz-how-it-works__info-island,
    .velvz-how-it-works__visual-island {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .velvz-how-it-works__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .velvz-how-it-works__toggle {
        min-width: 280px;
        max-width: 320px;
        padding: 0.3rem;
        border-radius: 18px;
    }
    
    .velvz-how-it-works__toggle-option {
        padding: 0.9rem 0.8rem;
        font-size: 0.8rem;
        height: 50px;
        border-radius: 15px;
    }
    
    .velvz-how-it-works__toggle-slider {
        width: calc(100% - 0.6rem);
        height: calc(50% - 0.3rem);
        top: 0.3rem;
        left: 0.3rem;
        border-radius: 15px;
    }
    
    .velvz-how-it-works__toggle--selfhosted .velvz-how-it-works__toggle-slider {
        transform: translateY(100%); /* Sin espacio extra, solo 100% */
    }
}

/* =====================================================
   ESTADO ACTIVO PARA NAVEGACIÓN HOME
   ===================================================== */
.velvz-header__link--active {
    color: #333 !important;
}

.velvz-header__link--active::after {
    width: 100% !important;
}

/* =====================================================
   ASEGURAR QUE EL ÁREA FUERA DEL VIEWPORT SEA BLANCA EN FOOTER
   ===================================================== */
.velvz-footer::after {
    content: '';
    position: absolute;
    bottom: -100vh;
    left: -100vw;
    right: -100vw;
    height: 100vh;
    background: white;
    z-index: -1;
}


/* =====================================================
   NUEVA SECCIÓN: CARACTERÍSTICAS CLAVE
   ===================================================== */
.velvz-features {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    overflow: hidden;
    z-index: 10;
    background: white; /* Fondo blanco */
}

.velvz-features__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.velvz-features__header {
    text-align: center;
    margin-bottom: 4rem;
}

.velvz-features__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(51, 51, 51, 0.05);
    border: 1px solid rgba(51, 51, 51, 0.1);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #666;
    opacity: 0;
    animation: velvzFadeInUp 0.8s ease-out 0.2s forwards;
}

.velvz-features__badge-dot {
    width: 6px;
    height: 6px;
    background: #4facfe; /* Azul celeste */
    border-radius: 50%;
    animation: velvzBadgePulse 2s ease-in-out infinite;
}

.velvz-features__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    opacity: 0;
    animation: velvzFadeInUp 0.8s ease-out 0.4s forwards;
}

.velvz-features__subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 60ch;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: velvzFadeInUp 0.8s ease-out 0.6s forwards;
}

/* GRID DE CARACTERÍSTICAS */
.velvz-features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    opacity: 0;
    animation: velvzFadeInUp 0.8s ease-out 0.8s forwards;
}

.velvz-features__card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 28px;
    padding: 2.5rem;
    position: relative;
    animation: velvzLandingBreathe 12s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.velvz-features__card:nth-child(1) { animation-delay: 0s; }
.velvz-features__card:nth-child(2) { animation-delay: 3s; }
.velvz-features__card:nth-child(3) { animation-delay: 6s; }
.velvz-features__card:nth-child(4) { animation-delay: 9s; }

.velvz-features__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.velvz-features__card-header {
    margin-bottom: 2rem;
}

.velvz-features__card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.velvz-features__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.velvz-features__card-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.velvz-features__card-interactive {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TARJETA 1: PERSONALIZACIÓN */
.velvz-customizer {
    width: 100%;
    max-width: 320px;
}

.velvz-customizer__preview {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.velvz-customizer__chatbot {
    transition: all 0.3s ease;
}

.velvz-customizer__chatbot-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.velvz-customizer__chatbot-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.velvz-customizer__bot-face {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 16px;
    height: 10px;
    position: relative;
}

.velvz-customizer__bot-eye {
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.velvz-customizer__bot-mouth {
    width: 6px;
    height: 3px;
    background: white;
    border-radius: 3px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.velvz-customizer__chatbot-name {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.velvz-customizer__chatbot-message {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.velvz-customizer__controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.velvz-customizer__control-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.velvz-customizer__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.velvz-customizer__examples {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.velvz-customizer__example {
    padding: 0.6rem;
    border: 1px solid rgba(51, 51, 51, 0.2);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.velvz-analytics__insight:hover {
    background: rgba(102, 126, 234, 0.08);
    transform: translateX(3px);
}

.velvz-analytics__insight-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.velvz-analytics__insight-text {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.3;
}

/* TARJETA 4: SEGURIDAD */
.velvz-security {
    width: 100%;
    text-align: center;
}

.velvz-security__shield {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.velvz-security__shield-icon {
    font-size: 3rem;
    z-index: 10;
    position: relative;
}

.velvz-security__shield-rings {
    position: absolute;
    inset: 0;
}

.velvz-security__ring {
    position: absolute;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    animation: velvzSecurityPulse 3s ease-in-out infinite;
}

.velvz-security__ring--1 {
    inset: 10px;
    animation-delay: 0s;
}

.velvz-security__ring--2 {
    inset: 5px;
    animation-delay: 1s;
}

.velvz-security__ring--3 {
    inset: 0px;
    animation-delay: 2s;
}

@keyframes velvzSecurityPulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.2); 
        opacity: 0.1;
    }
}

.velvz-security__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.velvz-security__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #333;
    animation: velvzSecurityFeatureAppear 0.5s ease-out forwards;
    opacity: 0;
}

.velvz-security__feature:nth-child(1) { animation-delay: 0.1s; }
.velvz-security__feature:nth-child(2) { animation-delay: 0.2s; }
.velvz-security__feature:nth-child(3) { animation-delay: 0.3s; }
.velvz-security__feature:nth-child(4) { animation-delay: 0.4s; }

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

.velvz-security__feature-icon {
    color: #28a745;
    font-size: 1rem;
}

.velvz-security__privacy-control {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 1.25rem;
}

.velvz-security__privacy-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.velvz-security__privacy-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.velvz-security__toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.velvz-security__toggle:hover {
    transform: translateX(2px);
}

.velvz-security__toggle input {
    display: none;
}

.velvz-security__toggle-slider {
    position: relative;
    width: 32px;
    height: 18px;
    background: #ccc;
    border-radius: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.velvz-security__toggle-slider::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.velvz-security__toggle input:checked + .velvz-security__toggle-slider {
    background: #28a745;
}

.velvz-security__toggle input:checked + .velvz-security__toggle-slider::before {
    transform: translateX(14px);
}

.velvz-security__toggle-label {
    font-size: 0.8rem;
    color: #333;
    font-weight: 500;
}

/* AMBIENT ELEMENTS PARA CARACTERÍSTICAS */
.velvz-features__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.velvz-features__ambient-pulse {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.015) 0%, transparent 70%);
    border-radius: 50%;
    animation: velvzLandingPulse 15s ease-in-out infinite;
}

.velvz-features__ambient-pulse:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.velvz-features__ambient-pulse:nth-child(2) {
    bottom: 20%;
    right: 10%;
    animation-delay: 5s;
}

.velvz-features__ambient-pulse:nth-child(3) {
    top: 60%;
    left: 70%;
    animation-delay: 10s;
}

.velvz-features__ambient-pulse:nth-child(4) {
    bottom: 50%;
    left: 20%;
    animation-delay: 7.5s;
}

/* =====================================================
   RESPONSIVE PARA CARACTERÍSTICAS
   ===================================================== */

@media (max-width: 1024px) {
    .velvz-features__grid {
        gap: 1.5rem;
    }

    .velvz-features__card {
        padding: 2rem;
        min-height: 450px;
    }
}

@media (max-width: 895px) {
    .velvz-features__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .velvz-features__card {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .velvz-features {
        padding: 4rem 0;
    }

    .velvz-features__container {
        padding: 0 1rem;
    }

    .velvz-features__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .velvz-features__card {
        padding: 1.5rem;
        min-height: 350px;
    }

    .velvz-features__card-icon {
        font-size: 2rem;
    }

    .velvz-features__card-title {
        font-size: 1.3rem;
    }

    .velvz-customizer {
        max-width: 280px;
    }

    .velvz-customizer__examples {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }
    
    .velvz-customizer__example {
        padding: 0.5rem;
        font-size: 0.7rem;
    }

    .velvz-scalability__metrics {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .velvz-scalability__chart-bars {
        gap: 0.5rem;
        height: 60px;
    }

    .velvz-scalability__bar {
        width: 12px;
    }

    .velvz-analytics__insights {
        gap: 0.5rem;
    }

    .velvz-analytics__insight {
        padding: 0.5rem;
    }

    .velvz-analytics__insight-text {
        font-size: 0.8rem;
    }

    .velvz-security__features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .velvz-security__shield {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .velvz-security__shield-icon {
        font-size: 2.5rem;
    }
    
    .velvz-features__ambient-pulse {
        display: none;
    }
}

@media (max-width: 480px) {
    .velvz-features__card {
        padding: 1.25rem;
        min-height: 320px;
        border-radius: 20px;
    }

    .velvz-features__card-icon {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .velvz-features__card-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .velvz-features__card-description {
        font-size: 0.9rem;
    }

    .velvz-customizer {
        max-width: 260px;
    }

    .velvz-customizer__preview {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .velvz-customizer__examples {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.3rem;
    }
    
    .velvz-customizer__example {
    padding: 0.6rem;
    border: 1px solid rgba(51, 51, 51, 0.2);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    font-size: 0.75rem;
    cursor: pointer; /* Cursor de dedo apuntando */
    transition: all 0.2s ease;
    color: #666;
    text-align: center;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
    
    .velvz-customizer__example-icon {
        font-size: 0.8rem;
    }

    .velvz-security__shield {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }

    .velvz-security__shield-icon {
        font-size: 2.2rem;
    }
}


.velvz-customizer__example--active {
    background: #333;
    color: white;
    border-color: #333;
    cursor: pointer;
}

.velvz-customizer__example:hover {
    border-color: #333;
    transform: translateY(-1px);
    cursor: pointer;
}

.velvz-customizer__example-icon {
    font-size: 0.9rem;
}

/* TARJETA 2: ESCALABILIDAD */
.velvz-scalability {
    width: 100%;
    text-align: center;
}

.velvz-scalability__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.velvz-scalability__metric {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 1rem 0.5rem;
}

.velvz-scalability__metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
}

.velvz-scalability__metric-label {
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
}

.velvz-scalability__chart {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.velvz-scalability__chart-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.velvz-scalability__chart-bars {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 0.75rem;
    height: 80px;
}

.velvz-scalability__bar {
    width: 16px;
    background: linear-gradient(to top, #667eea, #764ba2);
    border-radius: 8px 8px 0 0;
    position: relative;
    animation: velvzScaleGrow 2s ease-out;
    animation-fill-mode: both;
    transition: all 0.2s ease;
}

.velvz-scalability__bar:hover {
    transform: scaleY(1.1);
}

.velvz-scalability__bar:nth-child(1) { animation-delay: 0.1s; }
.velvz-scalability__bar:nth-child(2) { animation-delay: 0.2s; }
.velvz-scalability__bar:nth-child(3) { animation-delay: 0.3s; }
.velvz-scalability__bar:nth-child(4) { animation-delay: 0.4s; }
.velvz-scalability__bar:nth-child(5) { animation-delay: 0.5s; }

.velvz-scalability__bar span {
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: #666;
    white-space: nowrap;
}

@keyframes velvzScaleGrow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

/* Botón de coste optimizado eliminado */
.velvz-scalability__cost-control {
    display: none;
}

/* TARJETA 3: ANÁLISIS */
.velvz-analytics {
    width: 100%;
}

.velvz-analytics__dashboard {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.velvz-analytics__chart-container {
    margin-bottom: 1.5rem;
}

.velvz-analytics__chart-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.velvz-analytics__line-chart {
    height: 120px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 8px;
    padding: 0.5rem;
    overflow: hidden;
}

.velvz-analytics__svg {
    width: 100%;
    height: 100%;
}

.velvz-analytics__line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: velvzLineDraw 3s ease-out forwards;
}

@keyframes velvzLineDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.velvz-analytics__dot {
    opacity: 0;
    animation: velvzDotAppear 0.3s ease-out forwards;
}

@keyframes velvzDotAppear {
    to { opacity: 1; }
}

.velvz-analytics__insights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.velvz-analytics__insight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(102, 126, 234, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: 8px
}


/* 2. Animación que faltaba - velvzBadgePulse */
@keyframes velvzBadgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* 3. Animación que faltaba - velvzFadeInUp */
@keyframes velvzFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 4. Animación que faltaba - velvzLandingBreathe */
@keyframes velvzLandingBreathe {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    }
    50% { 
        transform: scale(1.008); 
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    }
}

/* 5. Animación que faltaba - velvzLandingPulse */
@keyframes velvzLandingPulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.3; 
    }
    50% { 
        transform: scale(1.4); 
        opacity: 0.05; 
    }
}

