/* ============================================
   AGENTES IA - LANDING PAGE STYLES
   ============================================ */

/* Variables */
:root {
    --primary-green: #46DBA6;
    --primary-blue: #4A9EFF;
    --primary-purple: #8B5CF6;
    --primary-orange: #FF6B35;
    --bg-dark: #0A0A0A;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --gradient-1: linear-gradient(135deg, #46DBA6 0%, #4A9EFF 100%);
    --gradient-2: linear-gradient(135deg, #8B5CF6 0%, #FF6B35 100%);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-agentes {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-dark);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-agentes .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-agentes .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.hero-agentes .particle-1 { top: 10%; left: 10%; animation-delay: 0s; }
.hero-agentes .particle-2 { top: 20%; left: 80%; animation-delay: 2s; }
.hero-agentes .particle-3 { top: 40%; left: 20%; animation-delay: 4s; }
.hero-agentes .particle-4 { top: 60%; left: 70%; animation-delay: 6s; }
.hero-agentes .particle-5 { top: 80%; left: 30%; animation-delay: 8s; }
.hero-agentes .particle-6 { top: 15%; left: 50%; animation-delay: 1s; }
.hero-agentes .particle-7 { top: 35%; left: 90%; animation-delay: 3s; }
.hero-agentes .particle-8 { top: 55%; left: 10%; animation-delay: 5s; }
.hero-agentes .particle-9 { top: 75%; left: 60%; animation-delay: 7s; }
.hero-agentes .particle-10 { top: 90%; left: 85%; animation-delay: 9s; }

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-40px) translateX(-10px); }
    75% { transform: translateY(-20px) translateX(10px); }
}

.hero-agentes .neural-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
}

.hero-agentes .neural-svg {
    width: 100%;
    height: 100%;
}

.hero-agentes .neural-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 3s ease-in-out forwards;
}

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

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

.hero-brand-tag {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-green);
    margin-bottom: 16px;
    opacity: 0.85;
}

.hero-content-left h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content-left .section-title > p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.hero-price-hint {
    font-size: 16px;
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 8px;
    opacity: 0.9;
}

.hero-price-hint strong {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.pricing-standalone {
    padding: 60px 0;
}

.hero-credibility {
    margin-bottom: 28px;
}

.credibility-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(70, 219, 166, 0.1);
    border: 1px solid rgba(70, 219, 166, 0.25);
    color: var(--primary-green);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
}

.credibility-badge i {
    font-size: 14px;
}

.hero-features {
    margin-bottom: 40px;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.hero-features .feature-item i {
    color: var(--primary-green);
    font-size: 20px;
}

.hero-features .feature-item span {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Demo Chat Window */
.hero-demo-container {
    position: relative;
    transform: scale(0.88);
    transform-origin: top right;
}

.demo-chat-window {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-agent-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.agent-avatar {
    position: relative;
}

.avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.status-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #00ff88;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.agent-details h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.agent-details p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.badge-live {
    background: rgba(255, 59, 48, 0.2);
    color: #ff3b30;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chat-messages {
    padding: 20px;
    min-height: 200px;
    max-height: 280px;
    overflow-y: auto;
}

.message {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    animation: messageSlideIn 0.3s ease-out;
}

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

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.user-message .message-avatar {
    background: var(--gradient-2);
}

.message-content {
    flex: 1;
}

.message-content p {
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 16px;
    border-radius: 12px;
    margin: 0 0 4px 0;
    font-size: 15px;
    line-height: 1.5;
}

.user-message .message-content p {
    background: var(--primary-green);
    color: var(--bg-dark);
}

.message-time {
    font-size: 12px;
    color: var(--text-secondary);
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    width: fit-content;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--text-secondary);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
    30% { opacity: 1; transform: translateY(-10px); }
}

.chat-input-container {
    display: flex;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    color: white;
    font-size: 15px;
    transition: all 0.3s ease;
}

.chat-input:focus {
    outline: none;
    border-color: var(--primary-green);
    background: rgba(255, 255, 255, 0.08);
}

.send-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-green);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-btn:hover {
    background: #3bc896;
    transform: scale(1.05);
}

.demo-suggestions {
    padding: 16px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
}

.suggestion-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-right: 8px;
}

.suggestion-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 8px 16px;
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-green);
    color: white;
}

.demo-integration-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: rgba(70, 219, 166, 0.1);
    border: 1px solid var(--primary-green);
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--primary-green);
    animation: fadeInUp 0.6s ease-out 1s both;
}

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

/* ============================================
   HERO BOT (Wizard + Chat)
   ============================================ */

.live-status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    margin-right: 4px;
    animation: pulse 2s ease-in-out infinite;
}

/* Wizard */
.hero-wizard {
    padding: 32px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    background: rgba(0, 0, 0, 0.2);
}

.hero-wizard-inner {
    text-align: center;
    max-width: 320px;
    width: 100%;
}

.wizard-icon-hero {
    font-size: 40px;
    margin-bottom: 12px;
}

.hero-wizard-inner h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 6px 0;
}

.hero-wizard-inner p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.wizard-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wizard-input-hero {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #e0e0e0;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.wizard-input-hero:focus {
    border-color: var(--primary-green);
}

.wizard-input-hero::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.wizard-btn-hero {
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 12px;
    background: var(--gradient-1);
    color: white;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.15s, opacity 0.15s;
}

.wizard-btn-hero:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.wizard-btn-hero:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wizard-note-hero {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 14px;
}

/* Chat Area */
.hero-chat-area {
    display: none;
    flex-direction: column;
    height: 380px;
}

.hero-chat-area.active {
    display: flex;
}

.hero-chat-body {
    flex: 1;
    padding: 16px 18px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(0, 0, 0, 0.2);
    scroll-behavior: smooth;
}

.hero-chat-body::-webkit-scrollbar { width: 4px; }
.hero-chat-body::-webkit-scrollbar-track { background: transparent; }
.hero-chat-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

/* Bubbles */
.hb-wrapper {
    display: flex;
    flex-direction: column;
    animation: bubbleIn 0.25s ease-out;
}

.hb-wrapper.agent { align-items: flex-start; }
.hb-wrapper.user { align-items: flex-end; }

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

.hb-bubble {
    border-radius: 16px;
    padding: 10px 14px;
    max-width: 85%;
    font-size: 13px;
    line-height: 1.5;
    word-break: break-word;
}

.hb-bubble strong { font-weight: 600; }
.hb-bubble a { color: #8ab4f8; text-decoration: underline; }
.hb-bubble ul { margin: 4px 0; padding-left: 16px; }
.hb-bubble li { margin: 2px 0; }

.hb-agent {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
    border-bottom-left-radius: 4px;
}

.hb-user {
    background: var(--gradient-1);
    color: white;
    border-bottom-right-radius: 4px;
}

.hb-time {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 3px;
    padding: 0 4px;
}

/* Typing */
.hb-typing {
    display: flex;
    gap: 4px;
    padding: 12px 14px;
}

.hb-typing-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-green);
    animation: typingBounce 1.4s ease-in-out infinite;
}

.hb-typing-dot:nth-child(2) { animation-delay: 0.15s; }
.hb-typing-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-5px); opacity: 1; }
}

.hb-system-msg {
    align-self: center;
    background: rgba(234, 179, 8, 0.08);
    color: #d4a800;
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 16px;
    border: 1px solid rgba(234, 179, 8, 0.15);
    text-align: center;
}

/* Footer input */
.hero-chat-footer {
    padding: 10px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
}

.hero-chat-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    outline: none;
    font-size: 13px;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.04);
    color: #e0e0e0;
    transition: border-color 0.2s;
}

.hero-chat-input::placeholder { color: rgba(255, 255, 255, 0.3); }
.hero-chat-input:focus { border-color: var(--primary-green); }

.hero-send-btn {
    background: var(--gradient-1);
    color: white;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s;
    flex-shrink: 0;
}

.hero-send-btn:hover { transform: scale(1.06); }
.hero-send-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-text {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-logos-static {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-logo {
    transition: all 0.3s ease;
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

.trust-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.trust-logo img {
    height: 70px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

/* ============================================
   EL DOLOR / PAIN SECTION
   ============================================ */

.dolor-section {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}

.gradient-text-red {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF4D8D 50%, #C850C0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Loss Log ---- */
.loss-log {
    max-width: 820px;
    margin: 0 auto 56px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.loss-log-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.025);
}

.loss-log-title {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.loss-log-live {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 107, 107, 0.75);
    letter-spacing: 0.3px;
}

.live-pulse {
    width: 7px;
    height: 7px;
    background: #FF6B6B;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-red 2.2s ease-in-out infinite;
}

@keyframes pulse-red {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.5); }
    50% { box-shadow: 0 0 0 7px rgba(255, 107, 107, 0); }
}

/* Loss Entries */
.loss-entry {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 28px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    transition: background 0.3s ease;
    overflow: hidden;
}

.loss-entry::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #FF6B6B 0%, #C850C0 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loss-entry:last-child {
    border-bottom: none;
}

.loss-entry:hover {
    background: rgba(255, 107, 107, 0.035);
}

.loss-entry:hover::before {
    opacity: 1;
}

.loss-entry-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 76px;
    flex-shrink: 0;
    text-align: center;
}

.loss-time-label {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.loss-time-value {
    font-size: 21px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF4D8D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.loss-entry-divider {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}

.loss-entry-body {
    flex: 1;
    min-width: 0;
}

.loss-entry-body h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.loss-entry-body p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.loss-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255, 107, 107, 0.75);
    background: rgba(255, 107, 107, 0.07);
    border: 1px solid rgba(255, 107, 107, 0.18);
    border-radius: 100px;
    padding: 5px 14px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Verdict / Closing */
.problema-verdict {
    display: flex;
    align-items: center;
    gap: 28px;
    max-width: 820px;
    margin: 0 auto;
}

.verdict-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(200, 80, 192, 0.25) 50%, transparent 100%);
}

.verdict-text {
    font-size: 19px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

/* ============================================
   CHATBOT VS EMPLEADO DIGITAL
   ============================================ */

.vs-section {
    padding: 100px 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.vs-grid {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.vs-card {
    flex: 1;
    padding: 40px 36px;
    border-radius: 20px;
    position: relative;
}

.vs-card-bad {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.vs-card-good {
    background: rgba(70, 219, 166, 0.04);
    border: 1px solid rgba(70, 219, 166, 0.2);
    box-shadow: 0 0 60px rgba(70, 219, 166, 0.04);
}

.vs-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.vs-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vs-icon-bad {
    background: rgba(255, 80, 80, 0.12);
    border: 1px solid rgba(255, 80, 80, 0.2);
    color: rgba(255, 100, 100, 0.8);
}

.vs-icon-good {
    background: rgba(70, 219, 166, 0.12);
    border: 1px solid rgba(70, 219, 166, 0.25);
    color: #46DBA6;
}

.vs-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.vs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vs-card-bad .vs-list li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

.vs-card-bad .vs-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(255, 80, 80, 0.5);
    font-weight: 700;
}

.vs-card-good .vs-list li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    padding-left: 22px;
    position: relative;
}

.vs-card-good .vs-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #46DBA6;
    font-weight: 700;
    font-size: 13px;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    flex-shrink: 0;
}

.vs-vs {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.15);
    writing-mode: vertical-rl;
}

/* ============================================
   CANALES SECTION
   ============================================ */

.canales-section {
    padding: 100px 0;
    background: #0D0D0D;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.canales-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 0;
}

.canal-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 32px 28px 36px;
    text-align: center;
    position: relative;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.canal-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.canal-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.canal-wa  { background: rgba(37, 211, 102, 0.12); border: 1px solid rgba(37, 211, 102, 0.25); color: #25D366; }
.canal-web { background: rgba(74, 158, 255, 0.12); border: 1px solid rgba(74, 158, 255, 0.25); color: #4A9EFF; }
.canal-ig  { background: rgba(200, 80, 192, 0.12); border: 1px solid rgba(200, 80, 192, 0.25); color: #C850C0; }
.canal-fb  { background: rgba(24, 119, 242, 0.12); border: 1px solid rgba(24, 119, 242, 0.25); color: #1877F2; }

.canal-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 10px 0;
}

.canal-card p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0 0 16px 0;
    line-height: 1.6;
}

.canal-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #46DBA6;
    background: rgba(70, 219, 166, 0.08);
    border: 1px solid rgba(70, 219, 166, 0.2);
    border-radius: 100px;
    padding: 4px 12px;
    display: inline-block;
}

/* ============================================
   RESULTADOS SECTION
   ============================================ */

.resultados-section {
    padding: 100px 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.resultados-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.resultado-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease;
}

.resultado-card:hover {
    border-color: rgba(70, 219, 166, 0.2);
}

.resultado-industry {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.resultado-metric {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.resultado-desc {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 24px;
}

.resultado-context {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.65;
    flex: 1;
}

/* Responsive additions */
@media (max-width: 991px) {
    .vs-grid {
        flex-direction: column;
    }

    .vs-divider {
        padding: 16px 0;
    }

    .vs-vs {
        writing-mode: horizontal-tb;
    }

    .canales-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .resultados-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .canales-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ASÍ FUNCIONA SECTION
   ============================================ */

.como-funciona-section {
    padding: 100px 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.proceso-track {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 60px;
}

/* Step Cards */
.proceso-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 36px 32px 40px;
    position: relative;
    transition: background 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.proceso-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.proceso-card:nth-child(1)::before { background: linear-gradient(90deg, #46DBA6, #4A9EFF); }
.proceso-card:nth-child(3)::before { background: linear-gradient(90deg, #4A9EFF, #8B5CF6); }
.proceso-card:nth-child(5)::before { background: linear-gradient(90deg, #8B5CF6, #C850C0); }

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

.proceso-card:hover::before {
    opacity: 1;
}

.paso-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 28px;
}

.paso-num {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.06);
    letter-spacing: -2px;
    font-variant-numeric: tabular-nums;
}

.paso-semana {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 4px 12px;
}

.paso-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.paso-icon-green {
    background: rgba(70, 219, 166, 0.1);
    border: 1px solid rgba(70, 219, 166, 0.2);
    color: #46DBA6;
}

.paso-icon-blue {
    background: rgba(74, 158, 255, 0.1);
    border: 1px solid rgba(74, 158, 255, 0.2);
    color: #4A9EFF;
}

.paso-icon-purple {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: #8B5CF6;
}

.paso-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 10px 0;
    line-height: 1.35;
}

.paso-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.65;
}

/* Connectors between cards */
.proceso-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    gap: 6px;
    flex-shrink: 0;
}

.arrow-line {
    width: 1px;
    flex: 1;
    background: linear-gradient(180deg, transparent, rgba(70, 219, 166, 0.2), transparent);
    max-height: 60px;
}

/* ============================================
   3 NÚMEROS SECTION
   ============================================ */

.tres-numeros-section {
    padding: 80px 0;
    background: #0D0D0D;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.numeros-grid {
    display: flex;
    align-items: stretch;
}

.numero-item {
    flex: 1;
    padding: 48px 48px 44px;
    text-align: center;
    position: relative;
}

.numero-top-bar {
    width: 36px;
    height: 3px;
    border-radius: 2px;
    margin: 0 auto 32px;
}

.bar-green  { background: linear-gradient(90deg, #46DBA6, #4A9EFF); }
.bar-blue   { background: linear-gradient(90deg, #4A9EFF, #8B5CF6); }
.bar-purple { background: linear-gradient(90deg, #8B5CF6, #C850C0); }

.numero-valor {
    font-size: 68px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-variant-numeric: tabular-nums;
}

.num-green  { background-image: linear-gradient(135deg, #46DBA6 0%, #4A9EFF 100%); }
.num-blue   { background-image: linear-gradient(135deg, #4A9EFF 0%, #8B5CF6 100%); }
.num-purple { background-image: linear-gradient(135deg, #8B5CF6 0%, #C850C0 100%); }

.numero-sep {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.07);
    margin: 20px auto;
}

.numero-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.numero-sub {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.numero-vdivider {
    width: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 32px 0;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .proceso-track {
        flex-direction: column;
        gap: 16px;
    }

    .proceso-arrow {
        flex-direction: row;
        padding: 8px 0;
        height: 32px;
    }

    .arrow-line {
        width: 60px;
        height: 1px;
        max-height: none;
        background: linear-gradient(90deg, transparent, rgba(70, 219, 166, 0.2), transparent);
    }

    .numeros-grid {
        flex-direction: column;
    }

    .numero-vdivider {
        width: 100%;
        height: 1px;
        margin: 0 32px;
    }

    .numero-valor {
        font-size: 52px;
    }

    .numero-item {
        padding: 36px 32px;
    }
}

/* Vertical Funnel - Trapezoid design */
.funnel-visual {
    max-width: 600px;
    margin: 0 auto;
}

.funnel-shape {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.funnel-level {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 0;
    position: relative;
    text-align: center;
}

.funnel-level-inner {
    display: flex;
    align-items: baseline;
    gap: 12px;
    justify-content: center;
}

.funnel-level-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.funnel-level-label {
    font-size: 16px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.level-top {
    width: 100%;
    background: linear-gradient(135deg, rgba(70, 219, 166, 0.12) 0%, rgba(74, 158, 255, 0.06) 100%);
    border: 1px solid rgba(70, 219, 166, 0.15);
    border-radius: 16px 16px 0 0;
    clip-path: polygon(0% 0%, 100% 0%, 92% 100%, 8% 100%);
    padding: 32px 0;
}

.level-top .funnel-level-number {
    color: var(--primary-green);
    text-shadow: 0 0 30px rgba(70, 219, 166, 0.2);
}

.level-mid {
    width: 75%;
    background: rgba(70, 219, 166, 0.06);
    border: 1px solid rgba(70, 219, 166, 0.1);
    clip-path: polygon(0% 0%, 100% 0%, 88% 100%, 12% 100%);
    padding: 28px 0;
}

.level-mid .funnel-level-number {
    color: rgba(70, 219, 166, 0.6);
}

.level-bottom {
    width: 40%;
    background: rgba(70, 219, 166, 0.03);
    border: 1px solid rgba(70, 219, 166, 0.08);
    border-radius: 0 0 12px 12px;
    clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 15% 100%);
    padding: 28px 0;
}

.level-bottom .funnel-level-number {
    color: rgba(70, 219, 166, 0.3);
}

/* Leak rows between funnel levels */
.funnel-leak-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 0;
}

.leak-arrow {
    color: rgba(255, 255, 255, 0.25);
    font-size: 14px;
    animation: leakPulse 2s infinite;
}

@keyframes leakPulse {
    0%, 100% { opacity: 0.3; transform: translateX(0); }
    50% { opacity: 0.7; transform: translateX(4px); }
}

.leak-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.leak-lost {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-green);
    opacity: 0.6;
    background: rgba(70, 219, 166, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
}

/* Funnel animations */
.funnel-shape {
    position: relative;
    overflow: hidden;
}

/* Shimmer scan line */
.funnel-shimmer {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(70, 219, 166, 0.06) 50%, transparent 100%);
    animation: shimmerDown 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes shimmerDown {
    0% { top: -60px; }
    100% { top: calc(100% + 60px); }
}

/* Glow pulse on top level */
.funnel-glow-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px 16px 0 0;
    background: radial-gradient(ellipse at center, rgba(70, 219, 166, 0.1) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Flowing dots between funnel levels */
.funnel-dots-flow {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 8px 0;
    position: relative;
    height: 24px;
}

.flow-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary-green);
    opacity: 0;
    animation: dotFall 2.5s ease-in infinite;
}

.flow-dot:nth-child(1) { animation-delay: 0s; }
.flow-dot:nth-child(2) { animation-delay: 0.4s; }
.flow-dot:nth-child(3) { animation-delay: 0.8s; }
.flow-dot:nth-child(4) { animation-delay: 1.2s; }
.flow-dot:nth-child(5) { animation-delay: 1.6s; }

@keyframes dotFall {
    0% { opacity: 0; transform: translateY(-8px) scale(1); }
    20% { opacity: 0.8; }
    60% { opacity: 0.5; transform: translateY(8px) scale(0.8); }
    100% { opacity: 0; transform: translateY(16px) scale(0.4); }
}

.funnel-dots-flow.fewer .flow-dot {
    background: rgba(70, 219, 166, 0.5);
    width: 4px;
    height: 4px;
    animation-duration: 3s;
}

.funnel-caption {
    margin-top: 32px;
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    font-style: italic;
}

@media (max-width: 767px) {
    .loss-log-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 14px 20px;
    }

    .loss-entry {
        flex-wrap: wrap;
        gap: 14px;
        padding: 22px 20px;
    }

    .loss-entry-meta {
        flex-direction: row;
        align-items: baseline;
        gap: 8px;
        min-width: auto;
    }

    .loss-time-value {
        font-size: 16px;
    }

    .loss-entry-divider {
        display: none;
    }

    .loss-tag {
        order: -1;
        font-size: 10px;
    }

    .problema-verdict {
        flex-direction: column;
        gap: 16px;
    }

    .verdict-text {
        font-size: 16px;
    }

    .level-top { width: 100%; }
    .level-mid { width: 80%; }
    .level-bottom { width: 50%; }

    .funnel-level-number {
        font-size: 36px;
    }
}

/* ============================================
   LA SOLUCIÓN SECTION
   ============================================ */

.solucion-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(70, 219, 166, 0.03) 50%, var(--bg-dark) 100%);
    position: relative;
}

/* Formula Visual: [Humanos] + [IA] = [Resultados] */
.formula-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 72px;
    flex-wrap: wrap;
}

.formula-item {
    text-align: center;
    padding: 32px 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    min-width: 180px;
    transition: all 0.3s ease;
}

.formula-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
}

.formula-item-ai {
    border-color: rgba(70, 219, 166, 0.25);
    background: rgba(70, 219, 166, 0.05);
}

.formula-item-ai:hover {
    background: rgba(70, 219, 166, 0.08);
    box-shadow: 0 8px 32px rgba(70, 219, 166, 0.1);
}

.formula-item-result {
    border-color: rgba(70, 219, 166, 0.3);
    background: rgba(70, 219, 166, 0.06);
}

.formula-item-result:hover {
    background: rgba(70, 219, 166, 0.1);
    box-shadow: 0 8px 32px rgba(70, 219, 166, 0.15);
}

.formula-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
}

.formula-item-ai .formula-icon {
    background: rgba(70, 219, 166, 0.12);
}

.formula-item-result .formula-icon {
    background: rgba(70, 219, 166, 0.15);
}

.formula-icon svg {
    width: 28px;
    height: 28px;
    color: var(--text-secondary);
}

.formula-item-ai .formula-icon svg {
    color: var(--primary-green);
}

.formula-item-result .formula-icon svg {
    color: var(--primary-green);
}

.formula-item h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 6px 0;
}

.formula-item p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.formula-operator {
    font-size: 36px;
    font-weight: 300;
    color: var(--primary-green);
    opacity: 0.6;
    line-height: 1;
}

/* Corrected Funnel */
.funnel-fixed {
    max-width: 550px;
    margin: 0 auto 64px;
}

.funnel-fixed-title {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.funnel-shape-fixed {
    position: relative;
    overflow: hidden;
}

.level-top-fixed {
    width: 100%;
    background: linear-gradient(135deg, rgba(70, 219, 166, 0.1) 0%, rgba(74, 158, 255, 0.05) 100%);
    border: 1px solid rgba(70, 219, 166, 0.15);
    border-radius: 16px 16px 0 0;
    clip-path: polygon(0% 0%, 100% 0%, 94% 100%, 6% 100%);
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.level-top-fixed .funnel-level-number {
    color: var(--primary-green);
    text-shadow: 0 0 20px rgba(70, 219, 166, 0.2);
}

.level-mid-fixed {
    width: 65%;
    margin: 0 auto;
    background: rgba(70, 219, 166, 0.08);
    border: 1px solid rgba(70, 219, 166, 0.15);
    clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 10% 100%);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.level-mid-fixed .funnel-level-number {
    color: var(--primary-green);
    opacity: 0.8;
}

.level-bottom-fixed {
    width: 38%;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(70, 219, 166, 0.15) 0%, rgba(70, 219, 166, 0.08) 100%);
    border: 1px solid rgba(70, 219, 166, 0.3);
    border-radius: 0 0 12px 12px;
    clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 20% 100%);
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.level-bottom-fixed .funnel-level-number {
    color: var(--primary-green);
    text-shadow: 0 0 30px rgba(70, 219, 166, 0.4);
    font-size: 52px;
}

/* Step rows (check marks) between funnel levels */
.funnel-step-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 0;
}

.step-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(70, 219, 166, 0.15);
    border: 1px solid rgba(70, 219, 166, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 11px;
}

.step-label {
    font-size: 14px;
    color: var(--primary-green);
    font-weight: 500;
    opacity: 0.8;
}

/* Closing quote */
.solucion-closing {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.solucion-closing blockquote {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    padding: 0;
    border: none;
    font-style: italic;
}

@media (max-width: 767px) {
    .formula-visual {
        gap: 16px;
    }

    .formula-item {
        min-width: 100%;
    }

    .formula-operator {
        font-size: 28px;
    }

    .solucion-closing blockquote {
        font-size: 18px;
    }

    .level-bottom-fixed .funnel-level-number {
        font-size: 40px;
    }
}

/* ============================================
   CAPABILITIES SECTION
   ============================================ */

.capabilities-section {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cap-card {
    padding: 36px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(70, 219, 166, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cap-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(70, 219, 166, 0.15);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2), 0 0 40px rgba(70, 219, 166, 0.05);
}

.cap-card:hover::before {
    opacity: 1;
}

/* Icon wrapper with ring */
.cap-icon-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cap-icon-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1.5px solid rgba(70, 219, 166, 0.15);
    animation: ringPulse 4s ease-in-out infinite;
}

.cap-card:hover .cap-icon-ring {
    border-color: rgba(70, 219, 166, 0.4);
    box-shadow: 0 0 20px rgba(70, 219, 166, 0.1), inset 0 0 20px rgba(70, 219, 166, 0.05);
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.08); opacity: 1; }
}

/* SVG icon with line-draw animation */
.cap-svg {
    width: 32px;
    height: 32px;
    color: var(--primary-green);
    position: relative;
    z-index: 1;
}

.cap-svg path,
.cap-svg circle,
.cap-svg rect,
.cap-svg line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 2.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cap-svg path:nth-child(2) { transition-delay: 0.3s; }
.cap-svg path:nth-child(3) { transition-delay: 0.6s; }
.cap-svg path:nth-child(4) { transition-delay: 0.9s; }
.cap-svg circle:nth-of-type(2) { transition-delay: 0.4s; }
.cap-svg circle:nth-of-type(3) { transition-delay: 0.7s; }
.cap-svg rect { transition-delay: 0.2s; }

.cap-card.animated .cap-svg path,
.cap-card.animated .cap-svg circle,
.cap-card.animated .cap-svg rect,
.cap-card.animated .cap-svg line {
    stroke-dashoffset: 0;
}

.cap-card:hover .cap-svg {
    filter: drop-shadow(0 0 8px rgba(70, 219, 166, 0.4));
}

/* Card text */
.cap-card h4 {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 10px 0;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.cap-card p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .cap-card {
        padding: 28px 24px;
    }
}

/* ============================================
   VERTICALES / CASOS DE USO
   ============================================ */

.verticales-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(70, 219, 166, 0.02) 50%, var(--bg-dark) 100%);
}

/* 4-Column Grid */
.verticales-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

/* Card with animated gradient border */
.vertical-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease;
}

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

.vertical-card-border {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: conic-gradient(
        from var(--border-angle, 0deg),
        transparent 40%,
        rgba(70, 219, 166, 0.4) 50%,
        transparent 60%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateBorder 6s linear infinite;
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.vertical-card:hover .vertical-card-border {
    opacity: 1;
    animation-duration: 2s;
}

@property --border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotateBorder {
    to { --border-angle: 360deg; }
}

.vertical-card-inner {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 0 28px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.vertical-card:hover .vertical-card-inner {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(70, 219, 166, 0.1);
}

/* Gradient accent bar at top */
.vertical-accent {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green) 0%, rgba(74, 158, 255, 0.6) 100%);
    margin-bottom: 28px;
    border-radius: 0 0 2px 2px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.vertical-card:hover .vertical-accent {
    opacity: 1;
}

/* Card content */
.vertical-card-inner h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 10px 0;
    position: relative;
    z-index: 1;
}

.vertical-card-inner > p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0 0 16px 0;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Mini chat simulation */
.mini-chat-sim {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 14px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.sim-msg {
    padding: 7px 11px;
    border-radius: 10px;
    font-size: 11px;
    line-height: 1.4;
    max-width: 88%;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.sim-msg.visible {
    opacity: 1;
    transform: translateY(0);
}

.sim-user {
    background: rgba(70, 219, 166, 0.12);
    color: var(--primary-green);
    align-self: flex-end;
    border-bottom-right-radius: 3px;
}

.sim-bot {
    background: rgba(255, 255, 255, 0.07);
    color: var(--text-secondary);
    align-self: flex-start;
    border-bottom-left-radius: 3px;
}

/* Also works in — tags */
.verticales-also {
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.verticales-also-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.verticales-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.verticales-tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.verticales-tag:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    background: rgba(70, 219, 166, 0.06);
}

/* Closing text */
.verticales-closing {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin: 0;
    font-style: italic;
}

@media (max-width: 1199px) {
    .verticales-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .verticales-grid {
        grid-template-columns: 1fr;
    }

    .vertical-watermark {
        font-size: 70px;
    }
}

/* ============================================
   MÉTRICAS / RESULTADOS
   ============================================ */

.metricas-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(70, 219, 166, 0.03) 50%, var(--bg-dark) 100%);
    overflow: hidden;
}

/* Response Time Comparison */
.response-comparison {
    max-width: 700px;
    margin: 0 auto 56px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 28px 32px;
}

.comparison-label {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-align: center;
}

.comparison-bars {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.comp-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.comp-who {
    font-size: 13px;
    color: var(--text-secondary);
    min-width: 120px;
    text-align: right;
}

.comp-who-us {
    color: var(--primary-green);
    font-weight: 600;
}

.comp-track {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    overflow: hidden;
}

.comp-fill {
    height: 100%;
    border-radius: 10px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.comp-fill-us {
    background: linear-gradient(90deg, #46DBA6, #4A9EFF);
}

.comp-fill-them {
    background: rgba(255, 255, 255, 0.15);
}

.comp-value {
    font-size: 14px;
    color: var(--text-secondary);
    min-width: 70px;
    font-weight: 500;
}

.comp-value-us {
    color: var(--primary-green);
    font-weight: 700;
}

/* Metrics Dashboard Grid */
.metricas-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 48px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 28px 20px 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(70, 219, 166, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(70, 219, 166, 0.12);
    transform: translateY(-4px);
}

.metric-card:hover::before {
    opacity: 1;
}

/* Featured center card */
.metric-card-featured {
    background: rgba(70, 219, 166, 0.04);
    border-color: rgba(70, 219, 166, 0.1);
}

.metric-card-featured::before {
    opacity: 0.5;
}

/* Metric visuals */
.metric-visual {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-visual-lg {
    width: 130px;
    height: 90px;
}

.metric-ring {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ring-progress {
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-bars-svg,
.metric-cost-svg,
.metric-pulse-svg {
    position: absolute;
    width: 100%;
    height: 80%;
    opacity: 0.7;
}

.metric-chart-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.chart-line {
    transition: stroke-dashoffset 2.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart-dot {
    transition: opacity 0.4s ease 2.5s;
}

.pulse-line {
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animated states */
.metricas-dashboard.animated .ring-progress {
    stroke-dashoffset: 0;
}

.metricas-dashboard.animated .chart-line {
    stroke-dashoffset: 0;
}

.metricas-dashboard.animated .chart-dot {
    opacity: 1;
}

.metricas-dashboard.animated .pulse-line {
    stroke-dashoffset: 0;
}

/* Metric number */
.metric-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.metric-number-lg {
    font-size: 36px;
}

.metric-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 6px 0;
}

.metric-card p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* Disclaimer */
.metricas-disclaimer {
    text-align: center;
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
    font-style: italic;
    opacity: 0.8;
}

@media (max-width: 1199px) {
    .metricas-dashboard {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .metricas-dashboard {
        grid-template-columns: repeat(2, 1fr);
    }

    .metric-card-featured {
        grid-column: span 2;
    }

    .comp-who {
        min-width: 80px;
        font-size: 11px;
    }

    .response-comparison {
        padding: 20px;
    }
}

/* ============================================
   INTELIGENCIA COMERCIAL
   ============================================ */

.inteligencia-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.inteligencia-sub {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Mock Dashboard Window */
.intel-dashboard {
    max-width: 900px;
    margin: 0 auto 56px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(70, 219, 166, 0.03);
}

.intel-dash-header {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.intel-dash-dots {
    display: flex;
    gap: 6px;
    margin-right: 16px;
}

.intel-dash-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.intel-dash-dots span:first-child { background: #ff5f57; }
.intel-dash-dots span:nth-child(2) { background: #ffbd2e; }
.intel-dash-dots span:nth-child(3) { background: #28ca41; }

.intel-dash-title {
    flex: 1;
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
}

.intel-dash-live {
    font-size: 11px;
    color: #46DBA6;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #46DBA6;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(70, 219, 166, 0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(70, 219, 166, 0); }
}

.intel-dash-body {
    padding: 24px;
}

/* Stats row */
.intel-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.intel-stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.intel-stat-num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 4px;
}

.intel-stat-label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Query bar */
.intel-query-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.intel-query-text {
    font-size: 14px;
    color: var(--text-primary);
    flex: 1;
}

.intel-query-cursor {
    color: var(--primary-green);
    animation: cursorBlink 1s step-end infinite;
    font-weight: 300;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Response */
.intel-response {
    background: rgba(70, 219, 166, 0.04);
    border: 1px solid rgba(70, 219, 166, 0.1);
    border-radius: 10px;
    padding: 16px 20px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.intel-response.visible {
    opacity: 1;
    transform: translateY(0);
}

.intel-response-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.intel-response-text strong {
    color: var(--primary-green);
}

/* Intelligence Features */
.intel-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.intel-feature {
    text-align: center;
    padding: 28px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.intel-feature:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(70, 219, 166, 0.1);
    transform: translateY(-4px);
}

.intel-feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--primary-green);
    opacity: 0.8;
}

.intel-feature-icon svg {
    width: 100%;
    height: 100%;
}

.intel-feature:hover .intel-feature-icon {
    opacity: 1;
}

.intel-feature h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.intel-feature p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Positioning quote */
.intel-quote {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    border: none;
    padding: 0;
    margin: 0;
    font-style: italic;
}

@media (max-width: 991px) {
    .intel-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .intel-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .intel-features {
        grid-template-columns: 1fr;
    }

    .intel-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .intel-dash-body {
        padding: 16px;
    }
}

/* ============================================
   STICKY CTA BAR
   ============================================ */

.sticky-cta-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
    z-index: 999;
    transition: bottom 0.3s ease;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

.sticky-cta-bar.visible {
    bottom: 0;
}

.sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-cta-text {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sticky-logo {
    height: 32px;
}

.sticky-cta-text span {
    font-size: 16px;
    font-weight: 600;
}

.sticky-cta-buttons {
    display: flex;
    gap: 12px;
}

.btn-sticky-primary,
.btn-sticky-secondary {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-sticky-primary {
    background: var(--primary-green);
    color: var(--bg-dark);
}

.btn-sticky-primary:hover {
    background: #3bc896;
    transform: translateY(-2px);
}

.btn-sticky-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-sticky-secondary:hover {
    border-color: var(--primary-green);
    background: rgba(70, 219, 166, 0.1);
}

/* ============================================
   AGENTES SELECTOR
   ============================================ */

.agentes-selector {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
    transition: background 0.6s ease;
}

.agentes-selector.kairo-active {
    background: radial-gradient(circle at top, rgba(70, 219, 166, 0.05) 0%, var(--bg-dark) 50%);
}

.agentes-selector.zephyr-active {
    background: radial-gradient(circle at top, rgba(74, 158, 255, 0.05) 0%, var(--bg-dark) 50%);
}

.agentes-selector.lyra-active {
    background: radial-gradient(circle at top, rgba(139, 92, 246, 0.05) 0%, var(--bg-dark) 50%);
}

.agentes-selector.nexus-active {
    background: radial-gradient(circle at top, rgba(255, 107, 53, 0.05) 0%, var(--bg-dark) 50%);
}

.agentes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.agente-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.agente-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: 0 20px 60px rgba(70, 219, 166, 0.2);
}

.agente-card.active {
    background: rgba(70, 219, 166, 0.1);
    border-color: var(--primary-green);
    box-shadow: 0 20px 60px rgba(70, 219, 166, 0.3);
    animation: cardPulse 0.6s ease-out;
}

@keyframes cardPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.agente-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
    position: relative;
}

.kairo-avatar {
    background: linear-gradient(135deg, #46DBA6 0%, #3bc896 100%);
    box-shadow: 0 10px 30px rgba(70, 219, 166, 0.3);
}

.zephyr-avatar {
    background: linear-gradient(135deg, #4A9EFF 0%, #3b8ae6 100%);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.3);
}

.lyra-avatar {
    background: linear-gradient(135deg, #8B5CF6 0%, #7c4de6 100%);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.nexus-avatar {
    background: linear-gradient(135deg, #FF6B35 0%, #e65c2f 100%);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.avatar-letter {
    font-size: 32px;
    font-weight: 700;
}

.avatar-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: #46DBA6;
    border: 3px solid var(--bg-dark);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.agente-card:hover .avatar-circle {
    transform: scale(1.1);
}

.agente-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    transition: all 0.3s ease;
}

.agente-card:hover .agente-icon {
    transform: rotate(5deg) scale(1.1);
}

.agente-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.agente-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.agente-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-green);
    color: var(--bg-dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.agente-details-container {
    position: relative;
    min-height: 800px;
    margin-bottom: 60px;
}

.agente-details {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
    padding-bottom: 40px;
}

.agente-details.active {
    opacity: 1;
    visibility: visible;
}

.agente-info {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.agente-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.agente-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.agente-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

.agente-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 4px 0 0 0;
}

.agente-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.agente-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.metric-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.metric-item h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.metric-item p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.agente-integrations,
.agente-use-cases {
    margin-bottom: 24px;
}

.agente-integrations h4,
.agente-use-cases h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.integration-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.integration-badges .badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-secondary);
}

.agente-use-cases ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.agente-use-cases li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.agente-use-cases ul li i {
    color: var(--primary-green);
    margin-right: 8px;
}

.agente-use-cases li i {
    color: var(--primary-green);
}

/* ============================================
   AGENTE SIDEBAR (pricing + trial form)
   ============================================ */

.agente-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.agente-pricing-compact {
    padding: 32px 24px;
    background: linear-gradient(135deg, rgba(70, 219, 166, 0.15) 0%, rgba(70, 219, 166, 0.05) 100%);
    border: 3px solid var(--primary-green);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(70, 219, 166, 0.2);
}

.agente-pricing-compact .price-amount {
    margin-bottom: 12px;
}

.agente-pricing-compact .currency {
    font-size: 32px;
    color: var(--primary-green);
    font-weight: 700;
}

.agente-pricing-compact .price {
    font-size: 72px;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    text-shadow: 0 0 30px rgba(70, 219, 166, 0.3);
}

.agente-pricing-compact .period {
    font-size: 24px;
    color: var(--primary-green);
    font-weight: 600;
}

.agente-pricing-compact .price-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-weight: 500;
}

.btn-agent-buy-full {
    display: block;
    width: 100%;
    padding: 18px;
    background: var(--primary-green);
    border: none;
    color: var(--bg-dark);
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    margin: 20px 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(70, 219, 166, 0.4);
}

.btn-agent-buy-full:hover {
    background: #3bc896;
    border-color: #3bc896;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(70, 219, 166, 0.3);
}

.agente-trial-form {
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.agente-trial-form h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: white;
}

.agent-trial-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.agent-trial-form input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 15px;
    transition: all 0.3s ease;
}

.agent-trial-form input:focus {
    outline: none;
    border-color: var(--primary-green);
    background: rgba(255, 255, 255, 0.08);
}

.agent-trial-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-trial-agent {
    width: 100%;
    padding: 14px;
    background: var(--primary-green);
    border: none;
    border-radius: 10px;
    color: var(--bg-dark);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.btn-trial-agent:hover {
    background: #3bc896;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(70, 219, 166, 0.3);
}

.btn-trial-agent i {
    margin-right: 8px;
}

.trial-note {
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 12px;
    margin-bottom: 0;
}

/* ============================================
   AGENTE PRICING (dentro de cada agente) - LEGACY
   ============================================ */

.agente-pricing {
    margin-top: 40px;
    padding: 30px;
    background: rgba(70, 219, 166, 0.05);
    border: 2px solid var(--primary-green);
    border-radius: 16px;
    text-align: center;
}

.pricing-header {
    margin-bottom: 24px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.agente-pricing .currency {
    font-size: 24px;
    color: var(--text-secondary);
    font-weight: 600;
}

.agente-pricing .price {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.agente-pricing .period {
    font-size: 18px;
    color: var(--text-secondary);
}

.price-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.pricing-ctas {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.btn-agent-trial,
.btn-agent-buy {
    flex: 1;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-agent-trial {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.btn-agent-trial:hover {
    background: var(--primary-green);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.btn-agent-buy {
    background: var(--primary-green);
    border: 2px solid var(--primary-green);
    color: var(--bg-dark);
}

.btn-agent-buy:hover {
    background: #3bc896;
    border-color: #3bc896;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(70, 219, 166, 0.3);
}

.pricing-note {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    font-style: italic;
}

.agente-demo-video {
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.demo-placeholder {
    text-align: center;
}

.demo-placeholder i {
    font-size: 64px;
    color: var(--primary-green);
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-placeholder i:hover {
    transform: scale(1.1);
    color: #3bc896;
}

.demo-placeholder p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* ============================================
   POTENCIA SECTION
   ============================================ */

.potencia-section {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    margin: 80px 40px 0;
}

.potencia-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.potencia-video-bg video {
    width: 110%;
    height: 110%;
    object-fit: cover;
    margin: -5% 0 0 -5%;
}

.potencia-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 18, 0.88);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    pointer-events: none;
}


.potencia-content {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin: 48px 0;
}

.comparison-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comparison-column h4 i {
    font-size: 24px;
}

.comparison-column:first-child h4 i {
    color: #ff3b30;
}

.comparison-column.highlight {
    background: rgba(70, 219, 166, 0.05);
    border: 1px solid rgba(70, 219, 166, 0.2);
    border-radius: 16px;
    padding: 24px;
}

.comparison-column.highlight h4 i {
    color: var(--primary-green);
}

.comparison-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-column ul li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-column ul li:last-child {
    border-bottom: none;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.result-item {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-green);
}

.result-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-green);
    transition: all 0.3s ease;
}

.result-item:hover .result-icon svg {
    stroke: #3bc896;
    transform: scale(1.1);
}

.result-item h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.result-item p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   CASOS DE USO BENTO GRID
   ============================================ */

.casos-uso-bento {
    padding: 120px 0;
    background: var(--bg-dark);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.bento-item {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bento-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: 0 20px 60px rgba(70, 219, 166, 0.2);
}

.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item.large-horizontal {
    grid-column: span 4;
}

.bento-item.medium {
    grid-row: span 1;
}

.bento-item.small {
    grid-column: span 1;
}

.bento-content {
    position: relative;
    z-index: 2;
}

.bento-category {
    display: inline-block;
    background: rgba(70, 219, 166, 0.1);
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.bento-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.bento-problem,
.bento-solution {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
}

.bento-results {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.result-badge {
    background: rgba(70, 219, 166, 0.1);
    border: 1px solid rgba(70, 219, 166, 0.3);
    color: var(--primary-green);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.bento-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.bento-stats .stat {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.bento-visual {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.03);
    z-index: 1;
}

.bento-item.small .bento-visual {
    font-size: 80px;
}

/* ============================================
   CTA FINAL
   ============================================ */

.cta-final {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(70, 219, 166, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-green);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 16px 0;
}

.cta-content h2 {
    font-size: 44px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.cta-sub {
    font-size: 18px;
    color: var(--text-secondary);
    margin: 0 0 36px 0;
    line-height: 1.6;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.btn-primary-lg {
    padding: 18px 36px !important;
    font-size: 17px !important;
}

.cta-trust {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    opacity: 0.7;
}

@media (max-width: 767px) {
    .cta-content h2 { font-size: 28px; }
    .cta-buttons { flex-direction: column; align-items: center; }
}

/* ============================================
   FOOTER
   ============================================ */

.footer-agentes {
    background: rgba(0, 0, 0, 0.6);
    padding: 70px 0 30px;
    position: relative;
}

.footer-glow-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(70, 219, 166, 0.3), transparent);
}

.footer-logo {
    height: 36px;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.footer-tagline a {
    color: var(--primary-green);
    text-decoration: none;
}

.footer-tagline a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(70, 219, 166, 0.1);
    border-color: rgba(70, 219, 166, 0.2);
    color: var(--primary-green);
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget ul li a:hover {
    color: var(--primary-green);
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-contact-list li i {
    color: var(--primary-green);
    width: 16px;
    text-align: center;
    font-size: 14px;
}

.footer-contact-list li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list li a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--primary-green);
}

@media (max-width: 767px) {
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ============================================
   TRY IT NOW SECTION
   ============================================ */

.try-it-now {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(70, 219, 166, 0.05) 100%);
}

.try-it-content {
    max-width: 900px;
    margin: 0 auto;
}

.try-it-form {
    margin: 60px 0 40px;
}

.trial-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.trial-form input,
.trial-form select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.trial-form input:focus,
.trial-form select:focus {
    outline: none;
    border-color: var(--primary-green);
    background: rgba(255, 255, 255, 0.08);
}

.btn-trial {
    padding: 16px 32px;
    background: var(--primary-green);
    border: none;
    border-radius: 12px;
    color: var(--bg-dark);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-trial:hover {
    background: #3bc896;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(70, 219, 166, 0.3);
}

.btn-trial i {
    margin-right: 8px;
}

.trial-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trial-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.trial-feature i {
    color: var(--primary-green);
    font-size: 18px;
}

.trial-preview {
    margin-top: 40px;
    padding: 40px;
    background: rgba(70, 219, 166, 0.1);
    border: 1px solid var(--primary-green);
    border-radius: 20px;
    text-align: center;
}

.preview-icon {
    font-size: 64px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.preview-loading {
    margin-top: 20px;
}

.loading-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loading-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: var(--primary-green);
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% { left: -30%; }
    100% { left: 100%; }
}

/* ============================================
   INTEGRATIONS SECTION
   ============================================ */

.integrations-section {
    padding: 120px 0;
    background: var(--bg-dark);
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    margin-top: 60px;
}

.integration-category h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.integration-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.integration-logo {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.integration-logo:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-green);
    transform: translateY(-4px);
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
}

.logo-placeholder i {
    font-size: 32px;
    color: var(--primary-green);
}

.logo-placeholder span {
    font-size: 11px;
    color: var(--text-secondary);
    text-align: center;
}

.integration-cta {
    text-align: center;
    margin-top: 60px;
    font-size: 16px;
    color: var(--text-secondary);
}

.integration-cta a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.integration-cta a:hover {
    text-decoration: underline;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(74, 158, 255, 0.05) 100%);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 40px 0 60px;
}

.toggle-label {
    font-size: 16px;
    color: var(--text-secondary);
}

.discount-badge {
    background: var(--primary-green);
    color: var(--bg-dark);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 8px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    transition: 0.4s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background: var(--primary-green);
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: 0 20px 60px rgba(70, 219, 166, 0.2);
}

.pricing-card.featured {
    background: rgba(70, 219, 166, 0.05);
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 40px;
    background: var(--primary-green);
    color: var(--bg-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-header p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 32px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.currency {
    font-size: 24px;
    color: var(--text-secondary);
}

.amount {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-green);
}

.period {
    font-size: 16px;
    color: var(--text-secondary);
}

.custom-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li i {
    color: var(--primary-green);
    font-size: 16px;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--primary-green);
    color: var(--bg-dark);
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: #3bc896;
    transform: translateY(-2px);
}

.pricing-card.featured .btn-pricing {
    background: white;
    color: var(--bg-dark);
}

.pricing-faq-link {
    text-align: center;
    font-size: 16px;
    color: var(--text-secondary);
}

.pricing-faq-link a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.pricing-faq-link a:hover {
    text-decoration: underline;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 120px 0;
    background: var(--bg-dark);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-green);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-green);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-green);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

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

@media (max-width: 991px) {
    .hero-content-left h1 {
        font-size: 42px;
    }
    
    .agentes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .agente-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sticky-cta-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-item.large,
    .bento-item.large-horizontal {
        grid-column: span 2;
    }
    
    .potencia-content {
        padding: 60px 30px;
    }
}

@media (max-width: 767px) {
    .hero-content-left h1 {
        font-size: 36px;
    }
    
    .hero-content-left p {
        font-size: 16px;
    }
    
    .agentes-grid {
        grid-template-columns: 1fr;
    }
    
    .agente-metrics {
        grid-template-columns: 1fr;
    }
    
    .chat-messages {
        min-height: 250px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-item.large,
    .bento-item.large-horizontal,
    .bento-item.medium {
        grid-column: span 1;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .potencia-content {
        padding: 50px 0;
    }
    
    .trial-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .integrations-grid {
        grid-template-columns: 1fr;
    }
    
    .integration-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

/* ============================================
   AGENT TYPE CARDS
   ============================================ */

.agentes-tipos {
    padding: 120px 0;
    background: var(--bg-dark);
}

.tipo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px 28px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tipo-card:hover {
    border-color: rgba(70, 219, 166, 0.2);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.tipo-card.featured {
    border-color: rgba(70, 219, 166, 0.25);
    background: rgba(70, 219, 166, 0.04);
}

.tipo-card.custom {
    border-style: dashed;
    border-color: rgba(74, 158, 255, 0.2);
}

.tipo-card.custom:hover {
    border-color: rgba(74, 158, 255, 0.4);
}

.tipo-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-1);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.tipo-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 14px;
    background: rgba(70, 219, 166, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    overflow: hidden;
    flex-shrink: 0;
}

.tipo-icon svg {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px;
    max-height: 24px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.tipo-card.custom .tipo-icon {
    background: rgba(74, 158, 255, 0.08);
}

.tipo-card.custom .tipo-icon svg {
    color: #4A9EFF;
}

.tipo-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.tipo-role {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 12px 0;
}

.tipo-card.custom .tipo-role {
    color: #4A9EFF;
}

.tipo-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 16px 0;
    flex: 1;
}

.tipo-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.tipo-features li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 5px 0;
    padding-left: 18px;
    position: relative;
}

.tipo-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-green);
}

.tipo-card.custom .tipo-features li::before {
    background: #4A9EFF;
}

.tipo-cta {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(70, 219, 166, 0.3);
    border-radius: 12px;
    background: transparent;
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: auto;
}

.tipo-cta:hover {
    background: rgba(70, 219, 166, 0.08);
    border-color: var(--primary-green);
}

.tipo-card.custom .tipo-cta {
    border-color: rgba(74, 158, 255, 0.3);
    color: #4A9EFF;
}

.tipo-card.custom .tipo-cta:hover {
    background: rgba(74, 158, 255, 0.08);
    border-color: #4A9EFF;
}

.tipo-card.featured .tipo-cta {
    background: var(--gradient-1);
    border-color: transparent;
    color: white;
}

.tipo-card.featured .tipo-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ============================================
   SIMPLE PRICING BLOCK
   ============================================ */

.pricing-simple {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(70, 219, 166, 0.03) 100%);
}

.pricing-simple-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
}

.pricing-simple-eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-green);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 24px 0;
}

.pricing-simple-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.pricing-desde {
    font-size: 16px;
    color: var(--text-secondary);
    margin-right: 8px;
}

.pricing-currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

.pricing-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -2px;
    line-height: 1;
}

.pricing-period {
    font-size: 16px;
    color: var(--text-secondary);
    margin-left: 6px;
}

.pricing-simple-note {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 28px 0;
    line-height: 1.5;
}

.pricing-simple-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.pricing-simple-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-secondary);
}

.pricing-simple-includes li svg {
    color: var(--primary-green);
    flex-shrink: 0;
}

.pricing-simple-cta {
    display: block;
    width: 100%;
    padding: 16px 40px;
    border: none;
    border-radius: 14px;
    background: var(--gradient-1);
    color: white;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    margin-bottom: 14px;
}

.pricing-simple-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(70, 219, 166, 0.3);
}

.pricing-simple-trust {
    font-size: 13px;
    color: var(--text-secondary);
    opacity: 0.7;
    margin: 0;
}

@media (max-width: 767px) {
    .pricing-number { font-size: 42px; }
    .pricing-simple-box { padding: 36px 24px; }
}

/* ============================================
   HERO DEMO MESSAGES (Visual Preview)
   ============================================ */

.hero-demo-messages {
    padding: 18px;
    min-height: 280px;
    max-height: 340px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(0, 0, 0, 0.15);
}

.hero-demo-messages .hb-wrapper {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-demo-messages .hb-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-demo-cta {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.hero-try-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: 12px;
    background: var(--gradient-1);
    color: white;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    width: 100%;
    justify-content: center;
}

.hero-try-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(70, 219, 166, 0.25);
}

/* ============================================
   FLOATING CHAT WIDGET
   ============================================ */

.mc-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

/* FAB */
.mc-fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #46DBA6 0%, #4A9EFF 100%);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(70, 219, 166, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    z-index: 10001;
}

.mc-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(70, 219, 166, 0.45);
}

.mc-fab-sparkle {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fabPulseGlow 3s ease-in-out infinite;
}

@keyframes fabPulseGlow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.mc-fab::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #46DBA6, #4A9EFF);
    opacity: 0;
    z-index: -1;
    animation: fabRing 3s ease-in-out infinite;
}

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

.mc-fab-close { display: none; }
.mc-fab.open .mc-fab-chat { display: none; }
.mc-fab.open .mc-fab-close { display: block; }
.mc-fab.open::after { display: none; }

/* Panel */
.mc-panel {
    position: absolute;
    bottom: 76px;
    right: 0;
    width: 380px;
    max-height: 560px;
    background: #12121a;
    border-radius: 20px;
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(16px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.mc-panel.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Header */
.mc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: linear-gradient(135deg, #0f1628 0%, #1a1a2e 100%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mc-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mc-avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #46DBA6, #4A9EFF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.mc-header h4 {
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.mc-header p {
    font-size: 12px;
    color: #6b8aaf;
    margin: 2px 0 0 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mc-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.mc-close-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.mc-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Wizard */
.mc-wizard {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 22px;
    background: #0e0e16;
    min-height: 340px;
}

.mc-wizard-inner {
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.mc-wizard-icon {
    font-size: 38px;
    margin-bottom: 10px;
}

.mc-wizard-inner h3 {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px 0;
}

.mc-wizard-inner p {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 22px 0;
    line-height: 1.5;
}

.mc-wizard-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mc-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #2a2a3a;
    border-radius: 12px;
    background: #1a1a28;
    color: #e0e0e0;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.mc-input:focus { border-color: #46DBA6; }
.mc-input::placeholder { color: #4b5563; }

.mc-start-btn {
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #46DBA6, #4A9EFF);
    color: white;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.15s, opacity 0.15s;
}

.mc-start-btn:hover { transform: translateY(-1px); opacity: 0.95; }
.mc-start-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.mc-wizard-note {
    display: block;
    font-size: 11px;
    color: #4b5563;
    margin-top: 14px;
}

/* Chat */
.mc-chat {
    display: none;
    flex-direction: column;
    flex: 1;
    min-height: 500px;
    height: 400px;
}

.mc-chat.active {
    display: flex;
}

.mc-body {
    flex: 1;
    padding: 14px 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #0e0e16;
    scroll-behavior: smooth;
}

.mc-body::-webkit-scrollbar { width: 4px; }
.mc-body::-webkit-scrollbar-track { background: transparent; }
.mc-body::-webkit-scrollbar-thumb { background: #2a2a3a; border-radius: 4px; }

.mc-footer {
    padding: 10px 14px 12px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    gap: 8px;
    background: #12121a;
}

.mc-chat-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #2a2a3a;
    border-radius: 20px;
    outline: none;
    font-size: 13px;
    font-family: inherit;
    background: #1a1a28;
    color: #e0e0e0;
    transition: border-color 0.2s;
}

.mc-chat-input::placeholder { color: #555; }
.mc-chat-input:focus { border-color: #46DBA6; }

.mc-send-btn {
    background: linear-gradient(135deg, #46DBA6, #4A9EFF);
    color: white;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s;
    flex-shrink: 0;
}

.mc-send-btn:hover { transform: scale(1.06); }
.mc-send-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* Reuse bubble styles from hero-bot section (.hb-*) */

/* Responsive — fullscreen on mobile */
@media (max-width: 520px) {
    .mc-widget { bottom: 16px; right: 16px; }
    .mc-fab { width: 54px; height: 54px; }

    .mc-panel {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        max-height: 100vh;
        height: 100vh;
        border-radius: 0;
        z-index: 10002;
    }

    .mc-panel.open ~ .mc-fab,
    .mc-widget .mc-panel.open + .mc-fab { display: none; }

    .mc-chat {
        height: auto;
        flex: 1;
        min-height: 0;
    }

    .mc-body {
        flex: 1;
        min-height: 0;
    }

    .mc-wizard {
        min-height: 0;
        flex: 1;
    }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 10000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 32px;
    color: #ffffff;
}

@media (max-width: 520px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }

    .whatsapp-float i {
        font-size: 28px;
    }
}
