:root {
    --primary: #F47708;
    --primary-dark: #e06600;
    --primary-light: #ff9a3c;
    --dark: #1a1a2e;
    --dark-2: #16213e;
    --dark-3: #0f3460;
    --text: #333;
    --text-light: #666;
    --text-muted: #999;
    --bg-light: #f8f9fc;
    --white: #fff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
}

::selection { background: var(--primary); color: #fff; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-orange { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.bg-gradient-blue { background: linear-gradient(135deg, #2196f3, #64b5f6); }
.bg-gradient-green { background: linear-gradient(135deg, #4caf50, #81c784); }

/* ========== LOGO TEXT ========== */
.logo-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
    flex-shrink: 0;
    transition: var(--transition);
}

.logo-text:hover .logo-icon {
    transform: rotate(-8deg) scale(1.05);
    box-shadow: 0 4px 15px rgba(244,119,8,0.4);
}

.logo-name {
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 1px;
    transition: var(--transition);
}

.logo-name strong {
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar.scrolled .logo-name { color: var(--text); }

.footer-brand .logo-text { margin-bottom: 4px; }
.footer-brand .logo-name { font-size: 26px; }

/* ========== NAVBAR ========== */
.navbar {
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar-brand img { transition: var(--transition); }
.navbar.scrolled .navbar-brand img { height: 35px; }

.navbar .nav-link {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    padding: 8px 16px !important;
    transition: var(--transition);
    font-size: 14px;
    border-radius: var(--radius-sm);
}

.navbar.scrolled .nav-link { color: var(--text); }
.navbar .nav-link:hover, .navbar .nav-link.active {
    color: var(--primary) !important;
}

.btn-aliado {
    background: var(--primary) !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 8px 20px !important;
    font-weight: 600 !important;
}

.btn-aliado:hover { background: var(--primary-dark) !important; transform: translateY(-2px); }

.navbar-toggler {
    border: 2px solid rgba(255,255,255,0.3);
    padding: 6px 10px;
    transition: var(--transition);
}
.navbar-toggler:focus { box-shadow: none; border-color: var(--primary); }
.navbar.scrolled .navbar-toggler { border-color: var(--primary); }
.navbar-toggler-icon { filter: brightness(0) invert(1); width: 20px; height: 20px; }
.navbar.scrolled .navbar-toggler-icon { filter: none; }

/* ========== HERO ========== */
.hero-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(244,119,8,0.3);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

.hero-row { min-height: 100vh; }

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(244,119,8,0.15);
    color: var(--primary-light);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(244,119,8,0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }

.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244,119,8,0.3);
}

.btn-outline-custom {
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    background: transparent;
}

.btn-outline-custom:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: nowrap;
}

.stat-item {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.hero-image-col {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244,119,8,0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.hero-image {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: hero-float 6s ease-in-out infinite;
    object-fit: contain;
}

.hero-image-wrapper {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    z-index: 3;
    animation: float-card 4s ease-in-out infinite;
}

.floating-card i { color: var(--primary); font-size: 18px; }

.card-1 { top: 20%; right: 0; animation-delay: 0s; }
.card-2 { bottom: 25%; left: 0; animation-delay: 2s; }

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.hero-wave svg { display: block; width: 100%; height: auto; }

/* ========== SECTIONS ========== */
.section-padding { padding: 100px 0; }
.bg-light { background: var(--bg-light); }

.section-header { margin-bottom: 60px; }

.section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(244,119,8,0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.section-tag.light {
    background: rgba(244,119,8,0.2);
    color: var(--primary-light);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== SERVICE CARDS ========== */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    color: #fff;
}

.service-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* ========== FEATURE CARDS ========== */
.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(244,119,8,0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.feature-card h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.feature-card::after {
    content: 'Probar';
    display: block;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s;
}

.feature-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* ========== SHOWCASE / FACTURACION ========== */
.showcase-image {
    position: relative;
}

.showcase-image img {
    transition: var(--transition);
}

.check-list { display: flex; flex-direction: column; gap: 14px; }

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
}

.check-item i { color: var(--primary); font-size: 20px; }

/* ========== DARK SECTION ========== */
.bg-dark-section {
    background: linear-gradient(135deg, var(--dark), var(--dark-2));
}

.device-list { display: flex; flex-direction: column; gap: 20px; }

.device-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}

.device-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(8px);
}

.device-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(244,119,8,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 22px;
    flex-shrink: 0;
}

.device-item h5 {
    font-size: 16px;
    margin-bottom: 2px;
    color: #fff;
}

.device-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

/* ========== PRICING (estilo comparativo) ========== */
.planes-scroll {
    position: relative;
    overflow: hidden;
}

.planes-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 0 20px;
}

.planes-track::-webkit-scrollbar { display: none; }

.plan-col {
    flex: 0 0 220px;
    scroll-snap-align: start;
}

.planes-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.planes-prev, .planes-next {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: var(--white);
    color: var(--text);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.planes-prev:hover, .planes-next:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.plan-card-v2 {
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-card-v2:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(244,119,8,0.1);
    transform: translateY(-4px);
}

.plan-card-top {
    padding: 20px 16px 10px;
    text-align: center;
}

.plan-card-top h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
    text-transform: uppercase;
}

.plan-card-price {
    text-align: center;
    padding: 10px 16px 16px;
    border-bottom: 1px solid #f0f0f0;
}

.plan-card-price .amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
}

.plan-card-price .period {
    font-size: 12px;
    color: var(--text-muted);
}

.plan-card-features {
    padding: 12px 14px;
    flex: 1;
}

.pf-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #f8f8f8;
    font-size: 12px;
}

.pf-row:last-child { border-bottom: none; }

.pf-name {
    color: var(--text-light);
    flex: 1;
}

.pf-check { width: 24px; text-align: center; flex-shrink: 0; }
.pf-yes { color: #4caf50; font-size: 14px; }
.pf-no { color: #e74c3c; font-size: 14px; }

.plan-card-action {
    padding: 14px;
    text-align: center;
}

.plan-card-action .btn {
    width: 100%;
    padding: 10px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
}

.custom-plan-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow);
    border: 2px dashed rgba(244,119,8,0.3);
}

.custom-plan-box h4 { font-weight: 700; margin-bottom: 8px; }

/* ========== BUSINESS CARDS ========== */
.business-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.04);
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.business-card i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.business-card h6 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

/* ========== CLIENTS CAROUSEL ========== */
.clients-carousel {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-track {
    display: flex;
    animation: scroll-clients 30s linear infinite;
    width: max-content;
}

.client-logo {
    flex-shrink: 0;
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    margin: 0 10px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.client-logo:hover { filter: grayscale(0); opacity: 1; }
.client-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

@keyframes scroll-clients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== FOOTER ========== */
.footer-section {
    background: linear-gradient(135deg, var(--dark), var(--dark-2));
    padding: 80px 0 30px;
    color: rgba(255,255,255,0.7);
}

.footer-brand p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; }

.social-links { display: flex; gap: 12px; margin-top: 16px; }

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links { list-style: none; padding: 0; }

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

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--primary-light); padding-left: 5px; }

.footer-contact { list-style: none; padding: 0; }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-contact i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

.footer-divider { border-color: rgba(255,255,255,0.08); margin: 40px 0 20px; }

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

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

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ========== SCROLL TOP ========== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 34px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(244,119,8,0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ========== ANIMATIONS ========== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-up"].animated { opacity: 1; transform: translateY(0); }
[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-right"].animated { opacity: 1; transform: translateX(0); }
[data-animate="fade-left"] { transform: translateX(30px); }
[data-animate="fade-left"].animated { opacity: 1; transform: translateX(0); }
[data-animate="zoom-in"] { transform: scale(0.9); }
[data-animate="zoom-in"].animated { opacity: 1; transform: scale(1); }

/* ========== SOPORTE PAGE ========== */
.soporte-hero {
    background: linear-gradient(135deg, var(--dark), var(--dark-3));
    padding: 140px 0 80px;
    text-align: center;
    color: #fff;
}

.soporte-content { padding: 60px 0; }

.soporte-sidebar .nav-pills .nav-link {
    color: var(--text);
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
    transition: var(--transition);
}

.soporte-sidebar .nav-pills .nav-link:hover { background: rgba(244,119,8,0.08); color: var(--primary); }
.soporte-sidebar .nav-pills .nav-link.active { background: var(--primary); color: #fff; }

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.video-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

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

/* Tablet */
@media (max-width: 991px) {
    .hero-row { min-height: auto; }
    .hero-section { min-height: auto; }
    .hero-content { padding: 100px 0 20px; text-align: center; }
    .hero-subtitle { max-width: 100%; margin: 0 auto 24px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image-col { padding-top: 10px; }
    .hero-image { max-width: 320px; margin: 0 auto; display: block; }
    .floating-card { display: none; }
    .hero-glow { width: 220px; height: 220px; }

    .navbar-collapse {
        background: var(--white);
        border-radius: var(--radius);
        padding: 16px;
        margin-top: 12px;
        box-shadow: var(--shadow-lg);
    }
    .navbar-collapse .nav-link {
        color: var(--text) !important;
        padding: 12px 16px !important;
        border-radius: 8px;
    }
    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link.active {
        color: var(--primary) !important;
        background: rgba(244,119,8,0.06);
    }

    .soporte-sidebar { margin-bottom: 20px; }
    .soporte-sidebar .sticky-lg-top { position: static !important; }
    .soporte-sidebar .nav { flex-direction: row !important; flex-wrap: wrap; gap: 6px; }
    .soporte-sidebar .nav-link { padding: 10px 14px !important; font-size: 13px; }
}

/* Mobile */
@media (max-width: 767px) {
    body { font-size: 14px; }
    .container { padding-left: 16px; padding-right: 16px; max-width: 100%; }
    .row { margin-left: 0; margin-right: 0; }
    .section-padding { padding: 40px 0; }
    .section-header { margin-bottom: 24px; }
    .section-title { font-size: 1.3rem; }
    .section-desc { font-size: 13px; padding: 0; }
    .section-tag { font-size: 10px; padding: 4px 10px; }

    .navbar { padding: 8px 0; }
    .navbar-brand .logo-icon { width: 28px; height: 28px; font-size: 11px; border-radius: 7px; }
    .navbar-brand .logo-name { font-size: 16px; }
    .logo-text { gap: 6px; }
    .navbar-toggler { padding: 4px 8px; }
    .navbar-toggler-icon { width: 18px; height: 18px; }

    .hero-section { overflow: hidden; }
    .hero-content { padding: 75px 0 10px; }
    .hero-badge { font-size: 10px; padding: 4px 10px; margin-bottom: 12px; }
    .hero-title { font-size: 1.4rem; line-height: 1.2; margin-bottom: 12px; }
    .hero-subtitle { font-size: 13px; line-height: 1.5; margin-bottom: 16px; padding: 0 10px; }
    .hero-actions { flex-direction: column; gap: 10px; padding: 0 10px; }
    .hero-actions .btn { width: 100%; justify-content: center; padding: 12px 16px; font-size: 14px; }
    .hero-stats { gap: 12px; margin-top: 8px; justify-content: center; flex-wrap: nowrap; }
    .stat-number { font-size: 16px; }
    .stat-label { font-size: 8px; letter-spacing: 0; }
    .hero-image { max-width: 200px; }
    .hero-image-col { padding-top: 0; padding-bottom: 10px; }
    .hero-image-wrapper { overflow: hidden; }
    .hero-glow { width: 140px; height: 140px; }
    .hero-wave svg { height: 25px; }

    .service-card { padding: 20px 14px; }
    .service-icon { width: 48px; height: 48px; font-size: 20px; margin-bottom: 12px; border-radius: 12px; }
    .service-card h4 { font-size: 15px; margin-bottom: 6px; }
    .service-card p { font-size: 12px; line-height: 1.5; }

    .feature-card { padding: 14px 10px; }
    .feature-card::after { display: none; }
    .feature-icon { width: 36px; height: 36px; font-size: 15px; margin-bottom: 8px; border-radius: 10px; }
    .feature-card h5 { font-size: 11px; margin-bottom: 2px; }
    .feature-card p { font-size: 10px; }

    .showcase-image img { border-radius: 10px !important; }
    .check-item { font-size: 13px; gap: 8px; }
    .check-item i { font-size: 15px; }

    .device-list { gap: 8px; }
    .device-item { padding: 10px; gap: 10px; border-radius: 8px; }
    .device-icon { width: 36px; height: 36px; font-size: 15px; border-radius: 8px; }
    .device-item h5 { font-size: 13px; }
    .device-item p { font-size: 11px; }

    .plan-header { padding: 16px 12px; }
    .plan-header h3 { font-size: 14px; }
    .plan-header .subtitle { font-size: 11px; }
    .plan-price { padding: 12px; }
    .plan-price .amount { font-size: 22px; }
    .plan-price .period { font-size: 11px; }
    .plan-features { padding: 10px 12px; }
    .plan-features li { font-size: 11px; padding: 4px 0; gap: 6px; }
    .plan-features li::before { font-size: 12px; }
    .plan-note { padding: 0 12px 6px; font-size: 9px; }
    .plan-action { padding: 10px 12px; }
    .plan-action .btn { padding: 10px; font-size: 12px; }
    .plan-card.featured::before { display: none; }

    .custom-plan-box { padding: 20px 14px; }
    .custom-plan-box h4 { font-size: 15px; }
    .custom-plan-box p { font-size: 12px; }

    .business-card { padding: 14px 8px; border-radius: 10px; }
    .business-card i { font-size: 22px; margin-bottom: 6px; }
    .business-card h6 { font-size: 11px; }

    .client-logo { width: 110px; height: 50px; padding: 4px 8px; margin: 0 4px; }

    .footer-section { padding: 30px 0 14px; }
    .footer-title { font-size: 14px; margin-bottom: 10px; }
    .footer-brand .logo-name { font-size: 20px; }
    .footer-brand p { font-size: 12px; }
    .footer-links a { font-size: 12px; }
    .footer-contact li { font-size: 11px; gap: 6px; margin-bottom: 8px; }
    .footer-copy { font-size: 11px; text-align: center !important; }
    .footer-divider { margin: 16px 0 10px; }
    .social-links a { width: 34px; height: 34px; border-radius: 8px; font-size: 14px; }

    .whatsapp-float { width: 48px; height: 48px; font-size: 22px; bottom: 16px; right: 16px; }
    .scroll-top { width: 34px; height: 34px; font-size: 12px; bottom: 72px; right: 18px; }

    .soporte-hero { padding: 90px 0 30px; }
    .soporte-hero h1 { font-size: 1.3rem; }
    .soporte-hero p { font-size: 12px; }
    .soporte-content { padding: 20px 0; }
    .soporte-sidebar .nav-link { padding: 7px 10px !important; font-size: 11px; }

    .bg-dark-section { padding: 40px 0; }
    .bg-dark-section .section-title { font-size: 1.2rem; }
}

/* Extra small */
@media (max-width: 380px) {
    .hero-title { font-size: 1.2rem; }
    .hero-subtitle { font-size: 12px; }
    .hero-badge { font-size: 9px; }
    .hero-image { max-width: 180px; }
    .stat-number { font-size: 16px; }
    .stat-label { font-size: 8px; }
    .hero-actions .btn { padding: 10px 14px; font-size: 13px; }
    .section-title { font-size: 1.1rem; }
    .plan-price .amount { font-size: 20px; }
    .feature-card { padding: 10px 6px; }
    .feature-icon { width: 32px; height: 32px; font-size: 14px; }
    .feature-card h5 { font-size: 10px; }
    .business-card { padding: 10px 6px; }
    .business-card i { font-size: 18px; }
    .business-card h6 { font-size: 10px; }
}
