:root {
    --bg-color: #1b1b27;
    --text-color: #ffffff;
    --primary-color: #ffffff;
    --primary-hover: #f0f0f0;
    --header-bg: #1b1b27;
    --border-color: rgba(255, 255, 255, 0.2);
    --font-family: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--header-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(0, 130, 240, 0.95);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: var(--transition);
}

.header.scrolled .header-container {
    height: 70px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #fff;
    gap: 0.6rem;
}

.logo-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: inline-block;
    border-radius: 8px;
}

/* Nav */
.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #ffffff;
    color: #008eff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    background: #f8f8f8;
}

.nav-toggle, .nav-close {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #f0f0f0;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 350px;
        height: 100vh;
        background-color: #0077ee;
        padding: 6rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--border-color);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav.show-menu {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-link {
        font-size: 1.2rem;
        display: inline-block;
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 2rem;
    }

    .nav-toggle {
        display: block;
    }

    .header-actions .btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Background glow effect for depth */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 40%;
    height: 40%;
   
    border-radius: 50%;
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

/* =============================================
   FLOATING LEADS FLOW ANIMATION (ORIGINATED FROM TITLE)
   ============================================= */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 1; /* Keep it on lower z-index so leads go behind the visual panel */
}

/* Anchored wrapper within the title */
.leads-origin {
    position: relative;
    display: inline-block;
}

/* Container for absolute children */
.leads-flow-container {
    position: absolute;
    top: 50%;
    left: 100%; /* places the flow start right after the text */
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 10;
}

/* Outer wrapper handles translateX (Linear motion) */
.floating-lead {
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    
    /* Default CSS Variables for curves (Desktop) - Uniform trajectory */
    --duration: 5.5s;
    --delay: 0s;
    --total-x: 30vw;
    --total-y: 70px;
    --peak-y: -140px;
    
    animation: lead-move-x var(--duration) linear infinite;
    animation-delay: var(--delay);
}

/* Inner wrapper handles translateY (Bezier curves) and visual styling */
.floating-lead-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    /* Uniform styling: rgba(0, 130, 240, 0.95) with subtle matching glow */
    background: rgba(0, 130, 240, 0.95);
    box-shadow: 
        0 4px 12px rgba(0,0,0,0.4), 
        0 0 12px rgba(0, 130, 240, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    animation: lead-move-y var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-lead-inner svg {
    width: 16px;
    height: 16px;
}

/* Staggered delays only for uniform flow */
.fl--1 { --delay: 0s; }
.fl--2 { --delay: 1.1s; }
.fl--3 { --delay: 2.2s; }
.fl--4 { --delay: 3.3s; }
.fl--5 { --delay: 4.4s; }

/* Keyframes for X motion (Linear + fade out at the end) */
@keyframes lead-move-x {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateX(var(--total-x));
        opacity: 0;
    }
}

/* Keyframes for Y motion (Bezier curve rise and fall + Basket shrink effect) */
@keyframes lead-move-y {
    0% {
        transform: translateY(0) scale(0.6);
        animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Ease out to rise */
    }
    50% {
        transform: translateY(var(--peak-y)) scale(1);
        animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); /* Ease in to fall */
    }
    80% {
        transform: translateY(calc(var(--total-y) * 0.8)) scale(1);
    }
    100% {
        transform: translateY(var(--total-y)) scale(0.3); /* Shrink as it falls into the panel */
    }
}

/* Media query for mobile responsiveness - hide leads flow */
@media screen and (max-width: 991px) {
    .leads-flow-container {
        display: none;
    }
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    letter-spacing: -1.5px;
   
}

.highlight {
    color: #0095ff; /* Vibrante contraste con azul */
    background: linear-gradient(90deg, #ffffff, #0095ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 90%;
    line-height: 1.7;
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.avatars {
    display: flex;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid var(--bg-color);
    margin-left: -12px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
    position: relative;
}

.avatar:nth-child(1) { background-image: url('avatar-1.png'); margin-left: 0; z-index: 1; }
.avatar:nth-child(2) { background-image: url('avatar-3.png'); z-index: 2; }
.avatar:nth-child(3) { background-image: url('avatar-2.png'); z-index: 3; }
.avatar:nth-child(4) { background-image: url('https://randomuser.me/api/portraits/men/46.jpg'); z-index: 4; }
.avatar:nth-child(5) { background-image: url('https://randomuser.me/api/portraits/women/12.jpg'); z-index: 5; }

.rating {
    display: flex;
    align-items: center;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    perspective-origin: 50% 40%;
    z-index: 3;
}

/* =============================================
   3D DASHBOARD SCENE
   ============================================= */
.db3d-scene {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.db3d-panel {
    width: 520px;
    max-width: 100%;
    background: rgba(10, 14, 30, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(56, 189, 248, 0.18);
    border-radius: 20px;
    padding: 22px 22px 18px;
    box-shadow:
        0 0 0 1px rgba(129, 140, 248, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transform: rotateX(14deg) rotateY(-18deg) rotateZ(2deg);
    transform-style: preserve-3d;
    animation: db3d-levitate 8s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

/* Shimmer reflection pass */
.db3d-panel::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -80%;
    width: 60%;
    height: 180%;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255, 255, 255, 0.07) 50%,
        transparent 70%
    );
    transform: skewX(-15deg);
    animation: db3d-shimmer 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 10;
}

/* ---- Keyframes ---- */
@keyframes db3d-levitate {
    0%, 100% {
        transform: rotateX(14deg) rotateY(-18deg) rotateZ(2deg) translateY(0px);
        
    }
    50% {
        transform: rotateX(14deg) rotateY(-18deg) rotateZ(2deg) translateY(-18px);
       
    }
}

@keyframes db3d-shimmer {
    0%    { left: -80%; opacity: 0; }
    10%   { opacity: 1; }
    40%   { left: 120%; opacity: 0; }
    100%  { left: 120%; opacity: 0; }
}

/* ---- Header ---- */
.db3d-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.db3d-logo {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #38bdf8, #283aef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.db3d-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ---- Metrics Grid ---- */
.db3d-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 8px;
    margin-bottom: 16px;
}

.db3d-metric {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 10px 10px 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    overflow: hidden;
}

.db3d-metric-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.db3d-metric-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.5px;
}

/* ---- Badges ---- */
.db3d-badge {
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 100px;
    width: fit-content;
    line-height: 1.5;
}

.db3d-badge--green  { background: rgba(34, 197, 94, 0.15);  color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.2); }
.db3d-badge--red    { background: rgba(239, 68, 68, 0.15);  color: #f87171; border: 1px solid rgba(239, 68, 68, 0.2); }
.db3d-badge--yellow { background: rgba(234, 179, 8, 0.15);  color: #facc15; border: 1px solid rgba(234, 179, 8, 0.2); }
.db3d-badge--purple { background: rgba(129, 140, 248, 0.15); color: #a5b4fc; border: 1px solid rgba(129, 140, 248, 0.25); }

/* ---- Revenue Chart ---- */
.db3d-chart-wrap {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px 12px 8px;
}

.db3d-chart-title {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.db3d-chart-svg {
    width: 100%;
    height: 90px;
    display: block;
    overflow: visible;
}

/* SVG chart draw-on animation */
.db3d-chart-line {
    stroke-dasharray: 700;
    stroke-dashoffset: 700;
    animation: db3d-draw-line 2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.db3d-chart-area {
    opacity: 0;
    animation: db3d-fade-area 1s ease 1.8s forwards;
}

@keyframes db3d-draw-line {
    to { stroke-dashoffset: 0; }
}

@keyframes db3d-fade-area {
    to { opacity: 1; }
}

/* Data points – appear one by one */
.db3d-dot {
    opacity: 0;
    animation: db3d-dot-in 0.3s ease forwards;
}
.db3d-dot--1 { animation-delay: 0.6s; }
.db3d-dot--2 { animation-delay: 0.85s; }
.db3d-dot--3 { animation-delay: 1.1s; }
.db3d-dot--4 { animation-delay: 1.35s; }
.db3d-dot--5 { animation-delay: 1.6s; }
.db3d-dot--6 { animation-delay: 1.85s; }

@keyframes db3d-dot-in {
    from { opacity: 0; r: 0; }
    to   { opacity: 1; }
}

/* Pulse ring on last dot */
.db3d-dot-ring {
    opacity: 0;
    animation:
        db3d-dot-in 0.3s ease 1.85s forwards,
        db3d-pulse 2s ease-in-out 2.2s infinite;
}

@keyframes db3d-pulse {
    0%, 100% {
        r: 3.5;
        stroke-opacity: 0.8;
        filter: drop-shadow(0 0 3px #38bdf8);
    }
    50% {
        r: 8;
        stroke-opacity: 0;
        filter: drop-shadow(0 0 8px #38bdf8);
    }
}

/* ---- Chart labels ---- */
.db3d-chart-labels {
    display: flex;
    justify-content: space-between;
    padding: 4px 0 0;
}

.db3d-chart-labels span {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 500;
}

/* =============================================
   RESPONSIVE: hero-visual 3D dashboard
   ============================================= */
@media screen and (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        align-items: center;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-visual {
        height: 420px;
    }

    .db3d-panel {
        width: 360px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-visual {
        height: 340px;
    }

    .db3d-panel {
        width: 290px;
        padding: 16px 14px 12px;
    }

    .db3d-metric-value {
        font-size: 0.9rem;
    }
}

/* --- Section Generics --- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Features Section --- */
.features {
    padding: 100px 0;
    background-color: var(--bg-color);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.feature-image {
    height: 180px;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    position: relative;
}

/* Placeholder for real images */
.feature-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-text {
    padding: 1.8rem;
}

.feature-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #fff;
}

.feature-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Features Responsive */
@media screen and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media screen and (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* =============================================
   MOCKUP: Leads List
   ============================================= */
.mockup {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    box-sizing: border-box;
    overflow: hidden;
}

.mockup-leads {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0;
    gap: 0.6rem;
}

.leads-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.leads-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
}

.leads-count {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.1);
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
}

.leads-table {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
    overflow: hidden;
}

.leads-header {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.9fr 1fr 0.7fr;
    gap: 0.3rem;
    padding: 0.25rem 0.4rem;
    background: rgba(255,255,255,0.07);
    border-radius: 5px;
}

.leads-header span {
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.leads-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.9fr 1fr 0.7fr;
    gap: 0.3rem;
    align-items: center;
    padding: 0.3rem 0.4rem;
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.07);
    transition: background 0.2s;
}

.leads-row:hover {
    background: rgba(255,255,255,0.1);
}

.lead-name {
    font-size: 0.68rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lead-phone {
    font-size: 0.63rem;
    color: rgba(255,255,255,0.55);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lead-status {
    font-size: 0.6rem;
    font-weight: 600;
    padding: 0.15rem 0.35rem;
    border-radius: 20px;
    white-space: nowrap;
    display: inline-block;
}

.lead-status.hot {
    background: rgba(255, 80, 50, 0.25);
    color: #ff9580;
    border: 1px solid rgba(255, 80, 50, 0.4);
}

.lead-status.warm {
    background: rgba(255, 190, 50, 0.2);
    color: #ffd580;
    border: 1px solid rgba(255, 190, 50, 0.35);
}

.lead-status.cold {
    background: rgba(100, 180, 255, 0.2);
    color: #99d0ff;
    border: 1px solid rgba(100, 180, 255, 0.35);
}

.lead-product {
    font-size: 0.63rem;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lead-price {
    font-size: 0.68rem;
    font-weight: 700;
    color: #a8ff78;
    white-space: nowrap;
}

/* =============================================
   MOCKUP: Messenger Chat
   ============================================= */
.mockup-messenger {
    background: #18191a;
    padding: 0;
    gap: 0;
    border-radius: 0;
    overflow: hidden;
}

.msn-header {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0.9rem;
    background: #242526;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.msn-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.msn-avatar-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a8ff78, #78bfff);
}

.msn-online {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 9px;
    height: 9px;
    background: #31a24c;
    border-radius: 50%;
    border: 2px solid #242526;
}

.msn-header-info {
    flex: 1;
    min-width: 0;
}

.msn-name {
    font-size: 0.72rem;
    font-weight: 700;
    color: #e4e6eb;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.msn-sub {
    font-size: 0.6rem;
    color: #b0b3b8;
}

.msn-fb-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    opacity: 0.9;
}

.msn-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.8rem 0.9rem;
    flex: 1;
    overflow: hidden;
}

.msn-msg-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
}

.msn-msg-wrap.buyer {
    align-items: flex-end;
}

.msn-msg-wrap.bot {
    align-items: flex-start;
}

.msn-bubble {
    padding: 0.45rem 0.7rem;
    border-radius: 18px;
    font-size: 0.68rem;
    line-height: 1.5;
    max-width: 85%;
}

.msn-bubble.buyer {
    background: #0084ff;
    color: #fff;
    border-bottom-right-radius: 4px;
}

.msn-bubble.bot {
    background: #3a3b3c;
    color: #e4e6eb;
    border-bottom-left-radius: 4px;
}

.msn-bubble strong {
    color: #a8ff78;
}

.msn-time {
    font-size: 0.57rem;
    color: #b0b3b8;
    padding: 0 0.4rem;
}

.msn-bot-label {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.58rem;
    color: #b0b3b8;
    padding: 0 0.4rem;
    margin-bottom: 0.1rem;
}

.msn-bot-dot {
    width: 7px;
    height: 7px;
    background: #a8ff78;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 5px rgba(168,255,120,0.6);
    animation: pulse-dot 1.5s infinite ease-in-out;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

.msn-response-tag {
    font-size: 0.58rem;
    color: #a8ff78;
    padding: 0 0.4rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.msn-quick-btns {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: 0.2rem;
}

.msn-qbtn {
    background: transparent;
    border: 1px solid #0084ff;
    color: #0084ff;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-family);
}

.msn-qbtn:hover {
    background: #0084ff;
    color: #fff;
}

/* =============================================
   MOCKUP: Pipeline Kanban
   ============================================= */
.mockup-pipeline {
    padding: 0;
    gap: 0;
    background: rgba(0,0,0,0.2);
    overflow: hidden;
}

.pipeline-topbar {
    padding: 0.6rem 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
}

.pipeline-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
}

.pipeline-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 0.7rem;
    height: 100%;
    overflow: hidden;
}

.pipe-col {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    overflow: hidden;
}

.pipe-col-header {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    white-space: nowrap;
}

.pipe-col-header.cold {
    background: rgba(100,180,255,0.12);
    color: #99d0ff;
    border: 1px solid rgba(100,180,255,0.25);
}

.pipe-col-header.warm {
    background: rgba(255,190,50,0.12);
    color: #ffd580;
    border: 1px solid rgba(255,190,50,0.25);
}

.pipe-col-header.hot {
    background: rgba(255,80,50,0.12);
    color: #ff9580;
    border: 1px solid rgba(255,80,50,0.25);
}

.pipe-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.pipe-dot.cold { background: #99d0ff; }
.pipe-dot.warm { background: #ffd580; }
.pipe-dot.hot  { background: #ff6b4a; box-shadow: 0 0 5px rgba(255,80,50,0.5); }

.pipe-badge {
    margin-left: auto;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.55rem;
    padding: 0.05rem 0.35rem;
    border-radius: 20px;
    font-weight: 600;
}

.pipe-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 7px;
    padding: 0.4rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    transition: background 0.2s;
}

.pipe-card:hover {
    background: rgba(255,255,255,0.1);
}

.pipe-card.hot {
    border-color: rgba(255,80,50,0.25);
    background: rgba(255,80,50,0.06);
}

.pipe-card-name {
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
}

.pipe-card-product {
    font-size: 0.58rem;
    color: rgba(255,255,255,0.5);
}

.pipe-card-price {
    font-size: 0.63rem;
    font-weight: 700;
    margin-top: 0.1rem;
}

.pipe-card-price.cold { color: #99d0ff; }
.pipe-card-price.warm { color: #ffd580; }
.pipe-card-price.hot  { color: #a8ff78; }

/* =============================================
   MOCKUP: Metrics Dashboard
   ============================================= */
.mockup-dashboard {
    padding: 0.7rem;
    gap: 0.6rem;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.35rem;
}

.dashboard-title-wrap {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.dashboard-dot {
    width: 6px;
    height: 6px;
    background: #00f2fe;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 242, 254, 0.8);
    animation: dashboard-pulse 2s infinite ease-in-out;
}

@keyframes dashboard-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.dashboard-title {
    font-size: 0.68rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
}

.dashboard-period {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
    padding: 0.1rem 0.4rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
}

.dash-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 0.3rem 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    position: relative;
    transition: background 0.2s, border-color 0.2s;
}

.dash-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
}

.dash-card.text-highlight {
    background: rgba(0, 242, 254, 0.03);
    border-color: rgba(0, 242, 254, 0.15);
}

.dash-card.text-highlight:hover {
    background: rgba(0, 242, 254, 0.06);
    border-color: rgba(0, 242, 254, 0.25);
}

.dash-card-label {
    font-size: 0.48rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.dash-card-val {
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
}

.dash-card.text-highlight .dash-card-val {
    color: #00f2fe;
}

.dash-card-change {
    font-size: 0.48rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.1rem;
    margin-top: 0.05rem;
}

.dash-card-change.up {
    color: #a8ff78;
}

.dash-card-change svg {
    margin-top: -1px;
}

.dashboard-chart-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-height: 0;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chart-label {
    font-size: 0.52rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
}

.chart-total {
    font-size: 0.5rem;
    color: #a8ff78;
    font-weight: 600;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    gap: 0.25rem;
    flex: 1;
    padding-top: 0.15rem;
}

.chart-bar {
    background: linear-gradient(to top, rgba(0, 242, 254, 0.05), rgba(0, 242, 254, 0.4));
    border-radius: 2px 2px 0 0;
    width: 100%;
    height: var(--height);
    position: relative;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.chart-bar:hover, .chart-bar.active {
    background: linear-gradient(to top, rgba(0, 242, 254, 0.2), #00f2fe);
    box-shadow: 0 0 8px rgba(0, 242, 254, 0.4);
    transform: scaleX(1.15);
}

.chart-bar-tooltip {
    display: none;
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    background: #1e1f29;
    color: #fff;
    font-size: 0.46rem;
    padding: 0.1rem 0.25rem;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
    z-index: 10;
}

.chart-bar:hover .chart-bar-tooltip {
    display: block;
}

/* =============================================
   MOCKUP: Audiences List
   ============================================= */
.mockup-audiences {
    padding: 0.7rem;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.audiences-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.35rem;
}

.audiences-meta {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.audiences-title {
    font-size: 0.68rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
}

.audiences-badge {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.45);
}

.audiences-btn-download {
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    color: #0f0f14;
    border: none;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 0.25rem 0.55rem;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.audiences-btn-download:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 242, 254, 0.4);
}

.audiences-btn-download:active {
    transform: translateY(0);
}

.audiences-table {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
    overflow: hidden;
}

.audiences-header {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.3fr;
    gap: 0.3rem;
    padding: 0.15rem 0.4rem;
}

.audiences-header span {
    font-size: 0.52rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.audiences-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.3fr;
    gap: 0.3rem;
    align-items: center;
    padding: 0.3rem 0.4rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    transition: background 0.2s, border-color 0.2s;
}

.audiences-row:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
}

.aud-name {
    font-size: 0.62rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.aud-phone {
    font-size: 0.58rem;
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
    font-family: monospace;
}

.aud-email {
    font-size: 0.58rem;
    color: rgba(0, 242, 254, 0.85);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* =============================================
   MOCKUP: Work Teams Hierarchy
   ============================================= */
.mockup-teams {
    padding: 0.7rem;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.teams-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.35rem;
}

.teams-title {
    font-size: 0.68rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
}

.teams-btn-add {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.52rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    transition: background 0.2s, border-color 0.2s;
}

.teams-btn-add:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.teams-list {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
    overflow: hidden;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.4rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    transition: background 0.2s, border-color 0.2s;
}

.team-member:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.member-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    font-weight: 700;
    color: #0f0f14;
    flex-shrink: 0;
}

.member-avatar.admin {
    background: linear-gradient(135deg, #ffe066, #f5b041);
    box-shadow: 0 0 5px rgba(245, 176, 65, 0.4);
}

.member-avatar.super {
    background: linear-gradient(135deg, #c5a3ff, #8e44ad);
}

.member-avatar.agent {
    background: linear-gradient(135deg, #99d0ff, #2980b9);
}

.member-info {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    flex: 1;
    min-width: 0;
}

.member-name {
    font-size: 0.62rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.member-perm {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.member-role {
    font-size: 0.5rem;
    font-weight: 700;
    padding: 0.12rem 0.4rem;
    border-radius: 20px;
    white-space: nowrap;
}

.member-role.admin {
    background: rgba(245, 176, 65, 0.15);
    color: #ffe066;
    border: 1px solid rgba(245, 176, 65, 0.25);
}

.member-role.super {
    background: rgba(142, 68, 173, 0.15);
    color: #d2b4de;
    border: 1px solid rgba(142, 68, 173, 0.25);
}

.member-role.agent {
    background: rgba(41, 128, 185, 0.15);
    color: #a9cce3;
    border: 1px solid rgba(41, 128, 185, 0.25);
}

/* =============================================
   MOCKUP: Community Feed (Facebook Style)
   ============================================= */
.mockup-community {
    padding: 0.6rem;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.community-post {
    background: #242526;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.post-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7b9a, #ff7bdf);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.post-user-info {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.post-user {
    font-size: 0.62rem;
    font-weight: 700;
    color: #e4e6eb;
}

.post-time {
    font-size: 0.48rem;
    color: #b0b3b8;
}

.post-content {
    font-size: 0.58rem;
    line-height: 1.35;
    color: #e4e6eb;
}

.post-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.25rem;
    font-size: 0.48rem;
    color: #b0b3b8;
}

.stats-left {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.stats-icons {
    letter-spacing: -2px;
}

.stats-likes {
    margin-left: 0.1rem;
    color: #e4e6eb;
    font-weight: 600;
}

.post-comments {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.comment-item {
    display: flex;
    gap: 0.3rem;
    align-items: flex-start;
}

.comment-avatar {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #78bfff, #0084ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.48rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.comment-box {
    background: #3a3b3c;
    border-radius: 10px;
    padding: 0.25rem 0.45rem;
    display: flex;
    flex-direction: column;
    gap: 0.02rem;
    max-width: 85%;
}

.comment-user {
    font-size: 0.55rem;
    font-weight: 700;
    color: #e4e6eb;
}

.comment-text {
    font-size: 0.54rem;
    line-height: 1.3;
    color: #e4e6eb;
}

/* =============================================
   MOCKUP: Support Tickets System
   ============================================= */
.mockup-support {
    padding: 0.7rem;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.support-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.35rem;
}

.support-title {
    font-size: 0.68rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
}

.support-filters {
    display: flex;
    gap: 0.25rem;
}

.sup-tab {
    font-size: 0.48rem;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.sup-tab.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.sup-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
}

.support-list {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
    overflow: hidden;
}

.support-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.35rem 0.45rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    transition: background 0.2s, border-color 0.2s;
}

.support-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.ticket-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-id {
    font-size: 0.52rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    font-family: monospace;
}

.ticket-time {
    font-size: 0.48rem;
    color: rgba(255, 255, 255, 0.45);
}

.ticket-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.4rem;
}

.ticket-subject {
    font-size: 0.6rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.ticket-status {
    font-size: 0.48rem;
    font-weight: 700;
    padding: 0.08rem 0.35rem;
    border-radius: 4px;
    white-space: nowrap;
}

.ticket-status.open {
    background: rgba(255, 80, 50, 0.12);
    color: #ff9580;
    border: 1px solid rgba(255, 80, 50, 0.25);
    animation: status-pulse 2s infinite ease-in-out;
}

@keyframes status-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

.ticket-status.closed {
    background: rgba(168, 255, 120, 0.12);
    color: #a8ff78;
    border: 1px solid rgba(168, 255, 120, 0.25);
}

/* =============================================
   SECTION: Cómo Funciona (How It Works)
   ============================================= */
.how-section {
    padding: 100px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background-color: var(--bg-color);
}

.how-header {
    text-align: center;
    margin-bottom: 80px;
}

.how-header .section-tag {
    font-size: 0.9rem;
    font-weight: 700;
    color: #00f2fe;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 0.5rem;
}

.how-header .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0.5rem auto 0;
    line-height: 1.6;
}

.how-banners-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.how-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.how-banner:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.how-media {
    height: 280px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    
    /* Inclinar el propio contenedor how-media en el espacio 3D hacia la derecha */
    
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s, box-shadow 0.3s;
    box-shadow: -8px 12px 25px rgba(0, 0, 0, 0.25);
}

.how-banner:hover .how-media {
    
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: -12px 18px 35px rgba(0, 130, 240, 0.95);
}

.how-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.how-banner:nth-child(3) .how-media img {
    object-position: left center;
}

.how-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-number {
    font-size: 0.9rem;
    font-weight: 800;
    color: rgba(0, 130, 240, 0.95);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.how-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}

.how-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
}

/* Mockup Media Step 1: Sync */
.media-sync {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.sync-node {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
    z-index: 2;
    position: relative;
}

.sync-node.fb {
    background: #1877f2;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.4);
}

.sync-node.fibbix {
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    color: #0f0f14;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.fibbix-node-logo {
    margin-left: -1px;
}

.sync-line {
    margin: 0 -10px;
    z-index: 1;
}

.sync-status {
    position: absolute;
    bottom: 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.sync-status-dot {
    width: 6px;
    height: 6px;
    background: #a8ff78;
    border-radius: 50%;
    box-shadow: 0 0 6px #a8ff78;
    animation: sync-status-pulse 1.8s infinite ease-in-out;
}

@keyframes sync-status-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

/* Mockup Media Step 2: Config Card */
.media-config {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.config-card {
    background: #1e1f29;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.2rem;
    width: 240px;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.config-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 0.4rem;
}

.config-row.highlight {
    border-bottom: none;
    padding-bottom: 0;
    margin-top: 0.2rem;
}

.config-label {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    font-weight: 600;
}

.config-val {
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
}

.config-label-bot {
    font-size: 0.65rem;
    color: #fff;
    font-weight: 700;
}

.bot-badge-active {
    background: rgba(168, 255, 120, 0.12);
    color: #a8ff78;
    border: 1px solid rgba(168, 255, 120, 0.25);
    font-size: 0.58rem;
    font-weight: 800;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
    box-shadow: 0 0 5px rgba(168, 255, 120, 0.2);
}

/* Switch Toggle Custom */
.switch-toggle {
    position: relative;
    display: inline-block;
    width: 26px;
    height: 14px;
}

.switch-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: not-allowed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #a8ff78;
    transition: .4s;
    border-radius: 14px;
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    left: 14px;
    bottom: 2px;
    background-color: #0f0f14;
    transition: .4s;
    border-radius: 50%;
}

/* Mockup Media Step 3: Growth */
.media-growth {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    height: 100%;
    padding: 1rem;
}

.growth-ring-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.growth-val-wrap {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.growth-percent {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

.growth-lbl {
    font-size: 0.42rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: -2px;
}

.growth-card-slide {
    background: #1e1f29;
    border: 1px solid rgba(0, 242, 254, 0.25);
    border-radius: 10px;
    padding: 0.7rem 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    animation: growth-slide-updown 3s infinite ease-in-out;
}

@keyframes growth-slide-updown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.growth-slide-icon {
    font-size: 1.1rem;
    background: rgba(0,242,254,0.12);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.growth-slide-info {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.growth-slide-title {
    font-size: 0.62rem;
    font-weight: 700;
    color: #00f2fe;
}

.growth-slide-desc {
    font-size: 0.56rem;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
}

/* =============================================
   RESPONSIVE: Cómo Funciona (How It Works)
   ============================================= */
@media screen and (max-width: 992px) {
    .how-banner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px;
    }
    
    .how-media {
        order: -1; /* Forzamos a que la imagen siempre esté arriba en móviles */
    }
}

/* =============================================
   SECCIÓN: 3 FUNCIONES DESTACADAS (TABS)
   ============================================= */
.features-tabs-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.features-tabs-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.tabs-header-wrap {
    text-align: center;
    margin-bottom: 56px;
}

.tabs-header-wrap .section-tag {
    display: inline-block;
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 100px;
    padding: 4px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.tabs-header-wrap .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.tabs-header-wrap .section-description {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Tab Navigation --- */
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 8px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-family);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.tab-btn:hover {
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
    background-color: rgba(0, 130, 240, 0.95);
    color: #fff;
   
}

.tab-icon {
    font-size: 1rem;
    line-height: 1;
}

/* --- Tab Panels --- */
.tabs-container {
    position: relative;
    min-height: 400px;
}

.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: tab-fade-in 0.4s ease forwards;
}

@keyframes tab-fade-in {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.panel-content h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 16px;
}

.panel-content > p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 28px;
}

.panel-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.panel-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.5;
}

.panel-list li span {
    color: rgba(0, 130, 240, 0.95);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* --- Mockup base --- */
.tab-mockup {
    background: #13131c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
    transform: perspective(900px) rotateY(-6deg) rotateX(2deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tab-mockup:hover {
    transform: perspective(900px) rotateY(-2deg) rotateX(0deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* Mockup header bar (dots) */
.mockup-header-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mockup-header-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.mockup-header-dot.red    { background: #ff5f57; }
.mockup-header-dot.yellow { background: #febc2e; }
.mockup-header-dot.green  { background: #28c840; }

.mockup-header-title {
    margin-left: 8px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

/* =============================================
   MOCKUP 1: Respuestas Inteligentes (Rules)
   ============================================= */
.rules-editor {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rule-block {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 14px;
}

.rule-title {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 10px;
}

.rule-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.rule-tag {
    background: rgba(99, 102, 241, 0.18);
    border: 1px solid rgba(99, 102, 241, 0.35);
    color: #a5b4fc;
    border-radius: 100px;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 500;
}

.rule-text-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.var-badge {
    background: rgba(99, 102, 241, 0.25);
    color: #a5b4fc;
    border-radius: 4px;
    padding: 1px 5px;
    font-size: 0.75rem;
    font-weight: 600;
}

.rule-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 4px;
}

.rule-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #4ade80;
    font-weight: 500;
}

.rule-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 6px #4ade80;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 4px #4ade80; }
    50%       { box-shadow: 0 0 10px #4ade80; }
}

.rule-save-btn {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-family);
    transition: opacity 0.2s;
}
.rule-save-btn:hover { opacity: 0.85; }

/* =============================================
   MOCKUP 2: Pipeline CRM (mini-kanban)
   ============================================= */
.mini-pipeline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px;
}

.mini-col {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.mini-col-title {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 2px;
    padding: 0 2px;
}

.mini-col-title.highlight { color: #f97316; }

.mini-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.2s;
}
.mini-card:hover { transform: translateX(3px); }

.mini-card.active {
    background: rgba(249, 115, 22, 0.12);
    border-color: rgba(249, 115, 22, 0.35);
    color: #fdba74;
    font-weight: 600;
}

.mini-stats-alert {
    margin: 0 14px 14px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon-glow {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 6px rgba(99, 102, 241, 0.8));
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-label {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.45);
}

.stat-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: #a5b4fc;
}

/* =============================================
   MOCKUP 3: Exportación de Leads
   ============================================= */
.export-box {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.export-progress {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 14px;
}

.export-progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.percent-lbl {
    font-weight: 700;
    color: #4ade80;
}

.progress-bar-container {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    height: 6px;
    overflow: hidden;
}

.progress-bar-fill {
    width: 100%;
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, #4ade80, #22d3ee);
    animation: progress-glow 2s ease-in-out infinite alternate;
}

@keyframes progress-glow {
    from { box-shadow: 0 0 4px rgba(74, 222, 128, 0.4); }
    to   { box-shadow: 0 0 12px rgba(74, 222, 128, 0.8); }
}

.export-success-message {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.25);
    border-radius: 10px;
    padding: 12px 14px;
}

.success-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    font-size: 0.9rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.success-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.success-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #4ade80;
}

.success-desc {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
}

.export-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #4ade80, #22d3ee);
    color: #0d1117;
    font-family: var(--font-family);
    font-size: 0.82rem;
    font-weight: 700;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}
.export-action-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* =============================================
   RESPONSIVE: Features Tabs
   ============================================= */
@media screen and (max-width: 900px) {
    .tabs-nav {
        flex-direction: column;
        width: 100%;
        gap: 4px;
    }

    .tab-btn {
        justify-content: center;
    }

    .panel-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .tab-mockup {
        transform: none;
    }

    .tab-mockup:hover {
        transform: none;
    }
}

/* =============================================
   SECCIÓN: BENEFICIOS REALES PARA TI
   ============================================= */
.benefits-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Decoración de fondo sutil */
.benefits-section::before {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 600px;
    height: 600px;
   
    pointer-events: none;
}

.benefits-section::after {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
   
    pointer-events: none;
}

/* Header */
.benefits-header {
    text-align: center;
    margin-bottom: 64px;
}

.benefits-tag {
    display: inline-block;
    background: rgba(249, 115, 22, 0.12);
    color: #fb923c;
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 100px;
    padding: 4px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.benefits-header .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.benefits-header .section-description {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid de cards */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* ---- Card base ---- */
.benefit-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    padding: 36px 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    cursor: default;
}

.benefit-card:hover {
    transform: translateY(-8px);
}

/* Glow dinámico en hover */
.benefit-card-glow {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    filter: blur(60px);
}
.benefit-card:hover .benefit-card-glow { opacity: 1; }

/* ---- Variantes de color (todas en azul) ---- */
.benefit-card--cyan {
    border-color: rgb(0 130 240 / 18%);
}
.benefit-card--cyan:hover {
    border-color: rgb(0 130 240 / 45%);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgb(0 130 240 / 12%);
}
.benefit-card--cyan .benefit-card-glow { background: rgb(0 130 240 / 95%); }
.benefit-card--cyan .benefit-icon-wrap { background: rgb(0 130 240 / 12%); border-color: rgb(0 130 240 / 30%); }
.benefit-card--cyan .benefit-icon { color: rgb(0 130 240 / 95%); }
.benefit-card--cyan .benefit-number { color: rgb(0 130 240 / 95%); }

.benefit-card--violet {
    border-color: rgb(0 130 240 / 18%);
    background: rgb(0 130 240 / 4%);
}
.benefit-card--violet:hover {
    border-color: rgb(0 130 240 / 45%);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgb(0 130 240 / 12%);
}
.benefit-card--violet .benefit-card-glow { background: rgb(0 130 240 / 95%); }
.benefit-card--violet .benefit-icon-wrap { background: rgb(0 130 240 / 12%); border-color: rgb(0 130 240 / 30%); }
.benefit-card--violet .benefit-icon { color: rgb(0 130 240 / 95%); }

.benefit-card--orange {
    border-color: rgb(0 130 240 / 18%);
}
.benefit-card--orange:hover {
    border-color: rgb(0 130 240 / 45%);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgb(0 130 240 / 12%);
}
.benefit-card--orange .benefit-card-glow { background: rgb(0 130 240 / 95%); }
.benefit-card--orange .benefit-icon-wrap { background: rgb(0 130 240 / 12%); border-color: rgb(0 130 240 / 30%); }
.benefit-card--orange .benefit-icon { color: rgb(0 130 240 / 95%); }

/* Card destacada (featured) */
.benefit-card--featured {
    border-color: rgb(0 130 240 / 30%);
    background: linear-gradient(160deg, rgb(0 130 240 / 7%) 0%, rgb(0 130 240 / 4%) 100%);
}

.benefit-featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgb(0 100 210), rgb(0 130 240));
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    box-shadow: 0 0 14px rgb(0 130 240 / 50%);
}

/* ---- Ícono ---- */
.benefit-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.benefit-card:hover .benefit-icon-wrap { transform: scale(1.08) rotate(-3deg); }

.benefit-icon {
    width: 24px;
    height: 24px;
}

/* ---- Cuerpo (título + descripción) ---- */
.benefit-body { flex: 1; }

.benefit-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.benefit-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* ---- Stat: barra de progreso (Card 1) ---- */
.benefit-stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 14px 16px;
}

.benefit-stat-bar-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit-stat > .benefit-stat-bar-wrap {
    margin-bottom: 10px;
}

.benefit-stat-bar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    height: 7px;
    overflow: hidden;
}

.benefit-stat-bar-fill {
    height: 100%;
    border-radius: 100px;
    background: rgb(0 130 240 / 95%);
    box-shadow: 0 0 10px rgb(0 130 240 / 60%);
    animation: bar-load 1.5s ease forwards;
}

@keyframes bar-load {
    from { width: 0 !important; }
}

.benefit-stat-label {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
}

.benefit-stat-number {
    display: flex;
    align-items: baseline;
    gap: 3px;
    margin-top: 6px;
}

.benefit-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.benefit-unit {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

/* ---- Stat: mini flow (Card 2) ---- */
.benefit-mini-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid;
}

.flow-step--done {
    background: rgb(0 130 240 / 10%);
    border-color: rgb(0 130 240 / 28%);
    color: rgb(0 160 255 / 90%);
}

.flow-step--active {
    background: rgb(0 130 240 / 20%);
    border-color: rgb(0 130 240 / 50%);
    color: #fff;
    animation: flow-pulse 2s ease-in-out infinite;
}

@keyframes flow-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgb(0 130 240 / 0%); }
    50%       { box-shadow: 0 0 0 5px rgb(0 130 240 / 20%); }
}

.flow-arrow {
    color: rgba(255, 255, 255, 0.25);
    font-size: 1rem;
    font-weight: 300;
}

/* ---- Stat: donut (Card 3) ---- */
.benefit-donut-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.benefit-donut {
    width: 64px;
    height: 64px;
    transform: rotate(-90deg);
    flex-shrink: 0;
}

.donut-track {
    stroke: rgba(255, 255, 255, 0.08);
}

.donut-fill {
    stroke: rgb(0 130 240 / 95%);
    filter: drop-shadow(0 0 4px rgb(0 130 240 / 60%));
    stroke-dasharray: 0 100;
    animation: donut-grow 1.8s ease forwards;
}

@keyframes donut-grow {
    from { stroke-dasharray: 0 100; }
    to   { stroke-dasharray: 68 32; }
}

.donut-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.donut-percent {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgb(0 150 255 / 95%);
    line-height: 1;
}

.donut-sub {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

/* ---- Flecha de acción ---- */
.benefit-card-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.benefit-card-arrow svg { width: 14px; height: 14px; color: rgba(255,255,255,0.6); }
.benefit-card:hover .benefit-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* =============================================
   RESPONSIVE: Benefits
   ============================================= */
@media screen and (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}





/* =============================================
   SECCIÓN: PLANES (PRICING)
   ============================================= */
.pricing-section {
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Orbes decorativos de fondo */
.pricing-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgb(0 130 240 / 6%) 0%, transparent 65%);
    pointer-events: none;
}

/* --- Header --- */
.pricing-header {
    text-align: center;
    margin-bottom: 64px;
}

.pricing-tag {
    display: inline-block;
    background: rgb(0 130 240 / 12%);
    color: rgb(0 150 255 / 95%);
    border: 1px solid rgb(0 130 240 / 28%);
    border-radius: 100px;
    padding: 4px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.pricing-header .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.pricing-header .section-description {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Grid --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}

/* --- Card base --- */
.pricing-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgb(0 130 240 / 30%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* --- Card destacada --- */
.pricing-card--featured {
    background: linear-gradient(160deg, rgb(0 130 240 / 10%) 0%, rgb(0 80 180 / 6%) 100%);
    border-color: rgb(0 130 240 / 40%);
    box-shadow:
        0 0 0 1px rgb(0 130 240 / 20%),
        0 30px 80px rgba(0, 0, 0, 0.45),
        0 0 60px rgb(0 130 240 / 8%);
    transform: translateY(-12px);
    z-index: 1;
}

.pricing-card--featured:hover {
    transform: translateY(-18px);
    border-color: rgb(0 130 240 / 60%);
    box-shadow:
        0 0 0 1px rgb(0 130 240 / 30%),
        0 40px 90px rgba(0, 0, 0, 0.5),
        0 0 80px rgb(0 130 240 / 12%);
}

/* Glow de fondo de card featured */
.pricing-card-glow {
    position: absolute;
    top: -80px; left: 50%;
    transform: translateX(-50%);
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgb(0 130 240 / 15%);
    filter: blur(80px);
    pointer-events: none;
}

/* Badge "Más popular" */
.pricing-popular-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgb(0 100 210), rgb(0 150 255));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 0 18px rgb(0 130 240 / 55%);
    display: flex;
    align-items: center;
    gap: 6px;
}

.popular-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #fff;
    animation: pop-dot-pulse 1.8s ease-in-out infinite;
}

@keyframes pop-dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.7); }
}

/* --- Card top (ícono + nombre) --- */
.pricing-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.plan-icon-wrap {
    width: 48px; height: 48px;
    border-radius: 13px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.plan-icon-wrap svg {
    width: 22px; height: 22px;
}

.plan-icon--basic {
    background: rgb(255 255 255 / 5%);
    border-color: rgb(255 255 255 / 12%);
    color: rgba(255,255,255,0.6);
}

.plan-icon--pro {
    background: rgb(0 130 240 / 15%);
    border-color: rgb(0 130 240 / 35%);
    color: rgb(0 160 255 / 95%);
}

.plan-icon--enterprise {
    background: rgb(255 255 255 / 5%);
    border-color: rgb(255 255 255 / 12%);
    color: rgba(255,255,255,0.6);
}

.plan-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.plan-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.plan-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}

/* --- Precio --- */
.plan-price-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    line-height: 1;
}

.plan-currency {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-bottom: 4px;
}

.plan-amount {
    font-size: 3.6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
}

.pricing-card--featured .plan-amount {
    color: rgb(0 160 255 / 95%);
}

.plan-cents {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    align-self: flex-end;
    margin-bottom: 5px;
}

.plan-period {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    font-weight: 500;
    margin-top: 2px;
}

/* --- Divider --- */
.plan-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    border-radius: 1px;
}

/* --- Lista de características --- */
.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.4;
}

.plan-features strong {
    color: #fff;
    font-weight: 600;
}

.feat-check {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgb(0 130 240 / 15%);
    border: 1px solid rgb(0 130 240 / 35%);
    color: rgb(0 160 255 / 95%);
    font-size: 0.65rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

/* --- CTA Buttons --- */
.plan-cta {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.plan-cta--outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.75);
}
.plan-cta--outline:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
    transform: translateY(-2px);
}

.plan-cta--primary {
    background: linear-gradient(135deg, rgb(0 100 210), rgb(0 150 255));
    color: #fff;
    border: none;
    box-shadow: 0 6px 24px rgb(0 130 240 / 35%);
}
.plan-cta--primary:hover {
    background: linear-gradient(135deg, rgb(0 120 230), rgb(30 170 255));
    box-shadow: 0 10px 32px rgb(0 130 240 / 50%);
    transform: translateY(-2px);
}

/* --- Garantía --- */
.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
    color: rgba(255,255,255,0.35);
    font-size: 0.82rem;
}

.pricing-guarantee svg {
    color: rgb(0 130 240 / 60%);
    flex-shrink: 0;
}

/* =============================================
   RESPONSIVE: Pricing
   ============================================= */
@media screen and (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .pricing-card--featured {
        transform: none;
        order: -1;
    }

    .pricing-card--featured:hover {
        transform: translateY(-6px);
    }
}



/* =============================================
   SECCIÓN: PREGUNTAS FRECUENTES (FAQ)
   ============================================= */
.faq-section {
    padding: 100px 0 140px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Orbe decorativo de fondo */
.faq-section::before {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    
    pointer-events: none;
}

.faq-header {
    text-align: center;
    margin-bottom: 64px;
}

.faq-tag {
    display: inline-block;
    background: rgb(0 130 240 / 12%);
    color: rgb(0 150 255 / 95%);
    border: 1px solid rgb(0 130 240 / 28%);
    border-radius: 100px;
    padding: 4px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.faq-header .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.faq-header .section-description {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgb(0 130 240 / 20%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgb(0 130 240 / 35%);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.25),
        0 0 30px rgb(0 130 240 / 4%);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: none;
    border: none;
    color: #fff;
    font-family: var(--font-family);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:focus {
    outline: none;
}

.faq-question:focus-visible {
    outline: 2px solid rgb(0 130 240);
    outline-offset: -2px;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
}

.faq-icon svg {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover .faq-icon {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: rgb(0 130 240 / 15%);
    border-color: rgb(0 130 240 / 35%);
    color: rgb(0 160 255 / 95%);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-content {
    min-height: 0;
    overflow: hidden;
}

.faq-answer-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.65;
    padding: 0 24px 24px;
}

/* =============================================
   RESPONSIVE: FAQ
   ============================================= */
@media screen and (max-width: 768px) {
    .faq-section {
        padding: 80px 0 100px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer-content p {
        padding: 0 20px 20px;
        font-size: 0.9rem;
    }
}

/* =============================================
   SECCIÓN: BANNER CTA
   ============================================= */
.cta-banner-section {
    padding: 60px 0 120px;
    position: relative;
}

.cta-banner-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 60px 80px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.4),
        0 0 50px rgb(0 130 240 / 5%);
}

/* Luces de fondo del banner */
.cta-banner-container::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgb(0 130 240 / 12%) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

.cta-banner-container::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgb(0 130 240 / 10%) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

/* Columna de imagen */
.cta-banner-image-wrap {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16 / 10;
}

.cta-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.cta-banner-container:hover .cta-banner-img {
    transform: scale(1.03);
}

.cta-banner-img-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgb(0 130 240 / 15%) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    filter: blur(20px);
}

/* Columna de contenido */
.cta-banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.cta-banner-title {
    font-size: clamp(2rem, 3.8vw, 2rem);
    font-weight: 800;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-banner-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
    font-weight: 500;
}

.cta-banner-actions {
    display: flex;
    gap: 16px;
}

.cta-banner-btn {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(135deg, rgb(0 100 210), rgb(0 150 255));
    color: #fff;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 8px 30px rgb(0 130 240 / 35%);
    transition: all 0.3s ease;
}

.cta-banner-btn:hover {
    background: linear-gradient(135deg, rgb(0 120 230), rgb(30 170 255));
    box-shadow: 0 12px 40px rgb(0 130 240 / 50%);
    transform: translateY(-2px);
}

/* =============================================
   RESPONSIVE: BANNER CTA
   ============================================= */
@media screen and (max-width: 1024px) {
    .cta-banner-container {
        padding: 50px 60px;
        gap: 40px;
    }
}

@media screen and (max-width: 850px) {
    .cta-banner-container {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
        gap: 36px;
    }

    .cta-banner-image-wrap {
        max-width: 500px;
        margin: 0 auto;
    }

    .cta-banner-content {
        align-items: center;
    }

    .cta-banner-actions {
        justify-content: center;
        width: 100%;
    }

    .cta-banner-btn {
        width: 100%;
        max-width: 320px;
    }
}

/* =============================================
   SECCIÓN: FOOTER
   ============================================= */
.footer {
    background: #1b1b27;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-container {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 8px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: rgb(0 160 255);
    transform: translateX(4px);
}

.footer-social-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Telegram Button Style */
.telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 130, 240, 0.1);
    border: 1px solid rgba(0, 130, 240, 0.25);
    color: rgb(0 160 255 / 95%);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    width: fit-content;
}

.telegram-btn:hover {
    background: rgb(0 130 240);
    border-color: rgb(0 130 240);
    color: #fff;
    box-shadow: 0 8px 24px rgb(0 130 240 / 35%);
    transform: translateY(-2px);
}

.telegram-btn svg {
    flex-shrink: 0;
}

/* Footer Bottom Area */
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
}

.footer-bottom-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
}

.footer-brand-tag {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.82rem;
}

/* =============================================
   RESPONSIVE: FOOTER
   ============================================= */
@media screen and (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media screen and (max-width: 576px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 40px;
    }

    .footer-col {
        gap: 14px;
    }

    .footer-bottom-wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
}


