:root {
    --bg-dark: #050505;
    --bg-card: #0F0F12;
    --border-color: #1F1F24;
    --text-main: #ffffff;
    --text-muted: #A1A1AA;
    
    --neon-cyan: #00e5ff;
    --neon-pink: #FF6584;
    --neon-purple: #7C6FFF;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-dark);
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 {
    font-family: var(--font-heading);
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(to right, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ─── UTILITIES ─── */
.section-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(124, 111, 255, 0.08);
    border: 1px solid rgba(124, 111, 255, 0.2);
    color: var(--neon-purple);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
    background: rgba(5, 5, 5, 0.75);
    backdrop-filter: blur(20px);
    transition: all 0.3s;
}

.navbar.scrolled {
    height: 75px;
    background: rgba(5, 5, 5, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-login {
    color: var(--text-main) !important;
    font-weight: 700 !important;
}

.btn-primary-small {
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-purple) 100%);
    color: white !important;
    padding: 12px 28px;
    border-radius: 100px;
    border: none;
    font-weight: 800 !important;
    box-shadow: 0 4px 15px rgba(255, 101, 132, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 101, 132, 0.4);
}

/* ─── HERO SECTION ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 140px 8% 80px;
    text-align: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.15; /* Sutil y elegante */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(124, 111, 255, 0.05) 0%, rgba(5,5,5,1) 90%);
    z-index: 1;
}

.hero-bg {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(40px, 6.5vw, 84px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 24px;
    line-height: 0.95;
}

.hero-subtext {
    font-size: clamp(16px, 1.8vw, 21px);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 48px;
    font-weight: 400;
    line-height: 1.5;
}

.btn-giant {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-purple) 100%);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    padding: 22px 52px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(124, 111, 255, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-giant:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124, 111, 255, 0.5);
}

/* ─── INFO STRIP ─── */
.info-strip {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: #08080A;
}

.info-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.info-col {
    padding: 60px 40px;
    text-align: center;
    border-right: 1px solid var(--border-color);
}

.info-col:last-child {
    border-right: none;
}

.info-col i {
    font-size: 36px;
    display: block;
    margin-bottom: 24px;
}

.icon-cyan { color: var(--neon-cyan); text-shadow: 0 0 15px rgba(0,229,255,0.25); }
.icon-pink { color: var(--neon-pink); text-shadow: 0 0 15px rgba(255,101,132,0.25); }
.icon-purple { color: var(--neon-purple); text-shadow: 0 0 15px rgba(124,111,255,0.25); }

.info-col h3 {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.info-col p {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
}

/* ─── ECOSYSTEM & SIMULATOR ─── */
.ecosystem {
    padding: 140px 8%;
    max-width: 1400px;
    margin: 0 auto;
}

.ecosystem-header {
    margin-bottom: 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 30px;
}

.ecosystem-header h2 {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 900;
    text-transform: uppercase;
}

.ecosystem-desc {
    color: var(--text-muted);
    max-width: 480px;
    font-size: 16px;
}

/* 📲 WIDGET SIMULADOR INTERACTIVO */
.simulator-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    background: radial-gradient(circle at bottom right, rgba(0, 229, 255, 0.05) 0%, transparent 50%);
    border-radius: 36px;
    border: 1px solid var(--border-color);
    padding: 60px;
    margin-top: 60px;
}

.simulator-info h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 18px;
}

.simulator-info p {
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.simulator-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sim-step-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}

.sim-step-row.active {
    background: rgba(124, 111, 255, 0.08);
    border-color: rgba(124, 111, 255, 0.3);
}

.sim-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    color: var(--text-muted);
}

.sim-step-row.active .sim-step-num {
    background: var(--neon-purple);
    color: white;
    box-shadow: 0 0 10px rgba(124, 111, 255, 0.4);
}

.sim-step-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.sim-step-text p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

/* Teléfono interactivo */
.sim-phone-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sim-phone {
    width: 340px;
    height: 600px;
    background: #0E0E11;
    border: 8px solid #27272A;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
}

.sim-phone-header {
    height: 70px;
    background: #141417;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sim-phone-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
    color: black;
}

.sim-phone-name {
    font-size: 14px;
    font-weight: 700;
}

.sim-phone-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sim-msg-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.sim-cards-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sim-card-item {
    background: #18181C;
    border: 2px solid #27272A;
    border-radius: 12px;
    padding: 12px 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}

.sim-card-item:hover, .sim-card-item.selected {
    border-color: var(--neon-cyan);
    background: rgba(0, 229, 255, 0.04);
}

.sim-card-item h5 {
    font-size: 13px;
    font-weight: 700;
}

.sim-card-item span {
    font-size: 11px;
    color: var(--text-muted);
}

.sim-card-item .price {
    color: var(--neon-cyan);
    font-weight: 700;
}

/* Slots de tiempo */
.sim-slots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.sim-slot-btn {
    background: #18181C;
    border: 2px solid #27272A;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.sim-slot-btn:hover, .sim-slot-btn.selected {
    border-color: var(--neon-purple);
    background: rgba(124, 111, 255, 0.04);
}

/* Pantalla final de éxito */
.sim-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    animation: fadeUp 0.5s ease-out forwards;
}

.sim-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

.sim-success h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.sim-success p {
    font-size: 13px;
    color: var(--text-muted);
    max-width: 220px;
}

.sim-success-btn {
    margin-top: 30px;
    background: var(--neon-purple);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

/* ─── CONTRAST SECTION (CAOS VS PAZ) ─── */
.contrast-section {
    padding: 120px 8%;
    max-width: 1400px;
    margin: 0 auto;
}

.contrast-section h2 {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
}

.contrast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contrast-card {
    background: #0E0E11;
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.contrast-card.caos {
    border-top: 3px solid var(--neon-pink);
    background: linear-gradient(180deg, rgba(255, 101, 132, 0.02) 0%, rgba(5,5,5,0) 100%);
}

.contrast-card.paz {
    border-top: 3px solid var(--neon-cyan);
    background: linear-gradient(180deg, rgba(0, 229, 255, 0.02) 0%, rgba(5,5,5,0) 100%);
}

.contrast-card h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 24px;
}

.caos-color { color: var(--neon-pink); }
.paz-color { color: var(--neon-cyan); }

.contrast-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contrast-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #ddd;
}

.contrast-list li i {
    font-size: 20px;
    margin-top: 2px;
}

.contrast-list .ri-close-line { color: var(--neon-pink); }
.contrast-list .ri-checkbox-circle-fill { color: var(--neon-cyan); }

/* ─── PRICING ─── */
.pricing {
    padding: 140px 8%;
    background: #08080A;
}

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

.pricing-header h2 {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.pricing-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    flex: 1 0 320px;
    padding: 50px;
    background: #0E0E11;
    border: 1px solid var(--border-color);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

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

.pricing-card.recommended {
    background: linear-gradient(180deg, #12121E 0%, #08080C 100%);
    border: 2px solid var(--neon-purple);
    position: relative;
    box-shadow: 0 15px 30px rgba(124, 111, 255, 0.1);
}

.recommended-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-purple);
    color: white;
    padding: 6px 20px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.2);
}

.plan-name {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.plan-price {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 8px;
    color: #fff;
}

.plan-price span {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

.plan-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
}

.plan-features {
    list-style: none;
    flex: 1;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #ddd;
    font-weight: 500;
}

.plan-features i {
    color: var(--neon-cyan);
    font-size: 18px;
}

.btn-outline {
    display: block;
    text-align: center;
    padding: 18px;
    border: 2px solid var(--border-color);
    border-radius: 14px;
    color: white;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s, border-color 0.2s;
}

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

.btn-primary {
    display: block;
    text-align: center;
    padding: 18px;
    background: var(--neon-purple);
    color: white;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(124, 111, 255, 0.25);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.btn-primary:hover {
    background: #6a5eff;
    box-shadow: 0 8px 25px rgba(124, 111, 255, 0.4);
    transform: translateY(-2px);
}

/* ─── FOOTER ─── */
.footer {
    padding: 100px 8% 80px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    background: radial-gradient(circle at bottom, rgba(0, 229, 255, 0.04) 0%, transparent 60%);
}

.footer h2 {
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 48px;
    letter-spacing: -1px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.3rem;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.footer-copyright {
    color: #444;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .simulator-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    .contrast-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ─── HAMBURGER BUTTON ─── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    padding: 8px;
    transition: border-color 0.2s;
    z-index: 101;
}

.hamburger span {
    display: block;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE MENU ─── */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 150;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-menu-overlay.open {
    opacity: 1;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: #0d0d10;
    border-left: 1px solid var(--border-color);
    z-index: 200;
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.2s;
}

.mobile-link:last-of-type {
    border-bottom: none;
}

.mobile-link:hover {
    color: var(--text-main);
}

.mobile-cta {
    display: block;
    margin-top: 24px;
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-purple) 100%);
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 16px 24px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(255, 101, 132, 0.25);
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mobile-menu-overlay.open { display: block; }
    .mobile-menu { display: flex; }
    .info-container { grid-template-columns: 1fr; }
    .info-col { border-right: none; border-bottom: 1px solid var(--border-color); }
    .info-col:last-child { border-bottom: none; }
    .footer h2 { margin-bottom: 30px; }
}

/* ─── ROBOT SECRETARY SECTION ─── */
.robot-secretary-section {
    padding: 100px 8%;
    max-width: 1400px;
    margin: 0 auto;
    border-bottom: 1px solid var(--border-color);
    background: radial-gradient(circle at top, rgba(255, 101, 132, 0.03) 0%, transparent 60%);
}

.robot-header {
    text-align: center;
    margin-bottom: 60px;
}

.robot-header h2 {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
}

.robot-header p {
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    font-size: 16px;
}

.robot-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.robot-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
}

.card-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at top right, rgba(255, 101, 132, 0.1) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.barber-card {
    border-color: rgba(255, 101, 132, 0.2);
}

.secretary-card {
    border-color: rgba(0, 229, 255, 0.2);
}

.barber-status, .secretary-status {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 100px;
    width: fit-content;
}

.barber-status {
    color: var(--neon-pink);
}

.secretary-status {
    color: var(--neon-cyan);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--neon-pink);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--neon-pink);
    animation: statusPulse 1.5s infinite;
}

.icon-robot-pulse {
    font-size: 16px;
    animation: robotGlow 2s ease-in-out infinite alternate;
}

.barber-illustration {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 40px 0;
}

.barber-emoji {
    font-size: 64px;
    margin-bottom: 20px;
    animation: barberFloat 3s ease-in-out infinite;
}

.barber-illustration h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}

.barber-illustration p {
    font-size: 14px;
    color: var(--text-muted);
}

.barber-visual-action {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 16px;
}

.haircut-bar {
    height: 6px;
    background: #222;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.haircut-progress {
    height: 100%;
    width: 65%;
    background: linear-gradient(to right, var(--neon-pink), var(--neon-purple));
    border-radius: 3px;
    animation: barberProgress 3s infinite alternate;
}

.barber-visual-action span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
}

/* Terminal logs styles */
.secretary-terminal {
    position: relative;
    z-index: 1;
    background: #050507;
    border: 1px solid #1f1f2e;
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 24px;
    flex: 1;
    min-height: 280px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.6);
}

.terminal-header {
    background: #0d0d14;
    padding: 12px 16px;
    border-bottom: 1px solid #1f1f2e;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 15px 15px 0 0;
}

.terminal-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.terminal-header .dot.red { background: #ff5f56; }
.terminal-header .dot.yellow { background: #ffbd2e; }
.terminal-header .dot.green { background: #27c93f; }

.terminal-title {
    font-size: 10px;
    color: #555566;
    font-weight: 700;
    letter-spacing: 1px;
    margin-left: auto;
}

.terminal-body {
    padding: 16px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    color: #4ef064;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 280px;
    scroll-behavior: smooth;
}

.log-entry {
    display: flex;
    flex-direction: row;
    gap: 8px;
    animation: logFadeIn 0.3s forwards;
    line-height: 1.4;
}

.log-time {
    color: #555577;
    white-space: nowrap;
}

.log-tag {
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 9px;
    text-transform: uppercase;
    white-space: nowrap;
}

.log-tag.sistema { background: rgba(255,255,255,0.08); color: #fff; }
.log-tag.reserva { background: rgba(0, 229, 255, 0.15); color: var(--neon-cyan); }
.log-tag.pago { background: rgba(255, 101, 132, 0.15); color: var(--neon-pink); }
.log-tag.agenda { background: rgba(124, 111, 255, 0.15); color: var(--neon-purple); }
.log-tag.whatsapp { background: rgba(34, 197, 94, 0.15); color: #22c55e; }

.log-text {
    color: #d1d1e0;
}

.log-text strong {
    color: #fff;
}

.log-entry.pago-exito .log-text {
    color: #22c55e;
    text-shadow: 0 0 10px rgba(34,197,94,0.3);
}

/* Animaciones */
@keyframes statusPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes robotGlow {
    from { text-shadow: 0 0 5px rgba(0, 229, 255, 0.2); }
    to { text-shadow: 0 0 15px rgba(0, 229, 255, 0.8); }
}

@keyframes barberFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

@keyframes barberProgress {
    0% { width: 40%; }
    100% { width: 85%; }
}

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

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

/* ─── PUBLIC LINK SECTION ─── */
.public-link-section {
    padding: 100px 8%;
    max-width: 1400px;
    margin: 0 auto;
    border-bottom: 1px solid var(--border-color);
    background: radial-gradient(circle at bottom, rgba(0, 229, 255, 0.02) 0%, transparent 60%);
}

.public-link-header {
    text-align: center;
    margin-bottom: 65px;
}

.public-link-header h2 {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
}

.public-link-header p {
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
    font-size: 16px;
}

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

/* Mockup Instagram */
.mockup-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.instagram-mockup {
    background: #000;
    border: 1px solid #1c1c24;
    border-radius: 28px;
    width: 350px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 229, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.ig-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 14px;
}

.ig-username {
    font-weight: 700;
}

.ig-profile {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 16px;
}

.ig-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border: 2px solid #000;
    padding: 3px;
}

.ig-stats {
    display: flex;
    gap: 16px;
    flex: 1;
    justify-content: space-between;
    text-align: center;
}

.ig-stats div {
    display: flex;
    flex-direction: column;
}

.ig-stats strong {
    font-size: 14px;
    color: #fff;
    font-weight: 700;
}

.ig-stats span {
    font-size: 10px;
    color: #777;
}

.ig-bio {
    font-size: 12.5px;
    line-height: 1.5;
    color: #eee;
    margin-bottom: 20px;
}

.ig-name {
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 4px;
}

.ig-bio p {
    color: #bbb;
}

.ig-link-glow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    background: rgba(0, 229, 255, 0.08);
    padding: 8px 14px;
    border-radius: 100px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    margin-top: 10px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: igLinkPulse 2s infinite;
}

.ig-link-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.35);
}

.ig-action-arrow {
    text-align: center;
    color: var(--neon-cyan);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    animation: bounceArrow 1.5s infinite;
}

/* Features Columns */
.features-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item-glow {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 20px;
    transition: all 0.3s;
}

.feature-item-glow:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.feat-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.cyan-glow { background: rgba(0, 229, 255, 0.1); color: var(--neon-cyan); border: 1px solid rgba(0, 229, 255, 0.2); }
.pink-glow { background: rgba(255, 101, 132, 0.1); color: var(--neon-pink); border: 1px solid rgba(255, 101, 132, 0.2); }
.purple-glow { background: rgba(124, 111, 255, 0.1); color: var(--neon-purple); border: 1px solid rgba(124, 111, 255, 0.2); }
.green-glow { background: rgba(34, 197, 94, 0.1); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.2); }

.feat-text h3 {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.feat-text p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Animations */
@keyframes igLinkPulse {
    0% { box-shadow: 0 0 15px rgba(0, 229, 255, 0.15); }
    50% { box-shadow: 0 0 25px rgba(0, 229, 255, 0.4); }
    100% { box-shadow: 0 0 15px rgba(0, 229, 255, 0.15); }
}

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@media (max-width: 992px) {
    .public-link-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
