/* 
    Professional POS - Main Stylesheet
    Theme: Modern, Sleek Dark-Glass, Tailored Colors
*/

:root {
    /* Color Palette (Deep Space & Vibrant Accents) */
    --clr-bg: #09090E;
    --clr-surface: rgba(22, 22, 33, 0.7);
    --clr-surface-hover: rgba(35, 35, 50, 0.8);
    --clr-surface-border: rgba(255, 255, 255, 0.08);

    --clr-primary: #5c62ff;
    /* Vibrant Indigo */
    --clr-primary-hover: #4a50e0;
    --clr-primary-glow: rgba(92, 98, 255, 0.4);

    --clr-secondary: #00e5ff;
    /* Cyan */
    --clr-accent-orange: #ff7b00;
    --clr-accent-green: #00d26a;
    --clr-accent-pink: #f92d7a;
    --clr-accent-yellow: #fbbc04;

    --clr-text: #f1f1f5;
    --clr-text-muted: #9aa0a6;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --container-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Effects */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --glass-backdrop: blur(16px);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Background Gradients */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 15% 50%, rgba(92, 98, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(0, 229, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

.mt-3 {
    margin-top: 1rem;
}

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

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-secondary), var(--clr-primary));
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--clr-text);
    border: 1px solid var(--clr-surface-border);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--clr-text-muted);
}

.btn-white {
    background: #fff;
    color: var(--clr-bg);
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* =========================================
   Navbar
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(9, 9, 14, 0.85);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border-bottom: 1px solid var(--clr-surface-border);
    padding: 15px 0;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--clr-secondary), var(--clr-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-right: 8px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-list {
    display: flex;
    gap: 24px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-text-muted);
}

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

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    padding-top: 150px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
}

.top-left {
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(92, 98, 255, 0.4) 0%, rgba(9, 9, 14, 0) 70%);
}

.bottom-right {
    bottom: -150px;
    right: -100px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.2) 0%, rgba(9, 9, 14, 0) 70%);
    width: 500px;
    height: 500px;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 229, 255, 0.1);
    color: var(--clr-secondary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--clr-secondary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--clr-secondary);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.hero-title span {
    background: linear-gradient(135deg, #fff 0%, var(--clr-text-muted) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--clr-surface-border);
    padding-top: 30px;
}

.stat-number {
    font-size: 2rem;
    color: #fff;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

/* Hero UI Mockup */
.hero-visual {
    position: relative;
    perspective: 1000px;
}

.glass-mockup {
    background: rgba(20, 20, 30, 0.6);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    width: 100%;
    height: 400px;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: var(--transition);
    overflow: hidden;
}

.glass-mockup:hover {
    transform: rotateY(-5deg) rotateX(2deg);
}

.mockup-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.mockup-body {
    padding: 20px;
}

.skeleton-nav {
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.skeleton-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.skeleton-main>div {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
}

.skeleton-block {
    height: 150px;
}

.skeleton-line {
    height: 20px;
    width: 100%;
}

.skeleton-line.short {
    width: 60%;
}

.skeleton-sidebar>div {
    background: rgba(255, 255, 255, 0.05);
    height: 50px;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
}

.skeleton-btn.blue {
    background: var(--clr-primary);
    opacity: 0.8;
}

/* Floating Cards Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-card {
    position: absolute;
    background: rgba(25, 25, 35, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--clr-surface-border);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    animation: float 6s ease-in-out infinite;
}

.pos-card {
    bottom: -30px;
    left: -40px;
    animation-delay: 0s;
}

.print-card {
    top: 50px;
    right: -30px;
    animation-delay: -3s;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 229, 255, 0.1);
    color: var(--clr-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.icon-box.purple {
    background: rgba(157, 0, 255, 0.1);
    color: #b752ff;
}

.card-info h4 {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    font-family: var(--font-body);
}

.card-info p {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-info p i {
    color: var(--clr-accent-green);
    font-size: 1.2rem;
}

/* =========================================
   Features Section
   ========================================= */
.features {
    padding: 100px 0;
    position: relative;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-description {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.glass-panel {
    background: var(--clr-surface);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--clr-surface-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
}

.feature-card:hover,
.testimonial-card:hover,
.hw-item:hover,
.faq-item:hover {
    transform: translateY(-5px);
    background: var(--clr-surface-hover);
    border-color: var(--clr-secondary);
    /* cyan border on hover */
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.15);
    /* light cyan glow */
}

/* Add transitions to .hw-item and .faq-item for smooth hover effect */
.hw-item,
.faq-item {
    transition: var(--transition);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(92, 98, 255, 0.1);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    border: 1px solid rgba(92, 98, 255, 0.2);
}

.feature-icon.orange {
    background: rgba(255, 123, 0, 0.1);
    color: var(--clr-accent-orange);
    border-color: rgba(255, 123, 0, 0.2);
}

.feature-icon.green {
    background: rgba(0, 210, 106, 0.1);
    color: var(--clr-accent-green);
    border-color: rgba(0, 210, 106, 0.2);
}

.feature-icon.pink {
    background: rgba(249, 45, 122, 0.1);
    color: var(--clr-accent-pink);
    border-color: rgba(249, 45, 122, 0.2);
}

.feature-icon.yellow {
    background: rgba(251, 188, 4, 0.1);
    color: var(--clr-accent-yellow);
    border-color: rgba(251, 188, 4, 0.2);
}

.feature-icon.teal {
    background: rgba(0, 229, 255, 0.1);
    color: var(--clr-secondary);
    border-color: rgba(0, 229, 255, 0.2);
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.feature-text {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* =========================================
   Social Proof (Testimonials)
   ========================================= */
.social-proof {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(to bottom, transparent, rgba(92, 98, 255, 0.03), transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: var(--clr-accent-yellow);
    margin-bottom: 16px;
    font-size: 1.2rem;
    display: flex;
    gap: 4px;
}

.quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--clr-text);
    margin-bottom: 24px;
    line-height: 1.7;
}

.author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.author h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.author p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

/* =========================================
   Business Tags
   ========================================= */
.businesses-wrap {
    background: rgba(22, 22, 33, 0.4);
    border: 1px solid var(--clr-surface-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 40px;
}

.businesses-wrap h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.business-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.business-tags span,
.business-tags a.btn-tag {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.business-tags span:hover,
.business-tags a.btn-tag:hover {
    background: rgba(0, 229, 255, 0.15);
    /* cyan background */
    border-color: var(--clr-secondary);
    /* cyan border */
    color: #fff;
    transform: translateY(-2px);
}

/* =========================================
   Hardware Compatibility
   ========================================= */
.hardware-section {
    padding: 80px 0;
    border-top: 1px solid var(--clr-surface-border);
}

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

.hardware-text h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.hardware-text p {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--clr-text-muted);
}

.check-list i {
    color: var(--clr-secondary);
    font-size: 1.2rem;
}

.hardware-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hw-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.hw-item i {
    font-size: 2.5rem;
    color: var(--clr-primary);
}

.hw-item span {
    font-weight: 600;
}

/* =========================================
   FAQ Section
   ========================================= */
.faq-section {
    padding: 60px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.faq-item h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: #fff;
}

.faq-item p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* =========================================
   Blog Section
   ========================================= */
.blog-section {
    padding: 80px 0;
    border-top: 1px solid var(--clr-surface-border);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
}

.blog-image {
    height: 180px;
    background: linear-gradient(135deg, rgba(22, 22, 33, 1), rgba(92, 98, 255, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
}

.blog-category {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--clr-secondary);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.blog-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 0.85rem;
    color: #a8aeff;
    margin-bottom: 8px;
    font-weight: 600;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.blog-content h3 a:hover {
    color: var(--clr-secondary);
}

.blog-content p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    color: var(--clr-text);
}

.read-more:hover {
    color: var(--clr-secondary);
    gap: 8px;
}

.mobile-only-btn {
    display: none;
}

/* =========================================
   Banner Distribuidores
   ========================================= */
.distribuidores-banner {
    padding: 60px 0 100px;
}

.banner-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, rgba(92, 98, 255, 0.2), rgba(22, 22, 33, 0.9));
    border: 1px solid rgba(92, 98, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.banner-content h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.banner-content p {
    color: var(--clr-text-muted);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.banner-image i {
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

/* =========================================
   Footer
   ========================================= */
.footer {
    border-top: 1px solid var(--clr-surface-border);
    padding: 80px 0 24px;
    background: rgba(9, 9, 14, 0.6);
}

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

.footer-desc {
    color: var(--clr-text-muted);
    margin: 16px 0 24px;
    font-size: 0.95rem;
    max-width: 300px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clr-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--clr-surface-border);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--clr-secondary), var(--clr-primary));
    border-color: var(--clr-secondary);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #fff;
}

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

.footer-links a {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--clr-secondary);
}

.footer-contact p {
    color: var(--clr-text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--clr-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--clr-surface-border);
    color: var(--clr-text-muted);
    font-size: 0.85rem;
}

/* =========================================
   Floating WhatsApp Button
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* =========================================
   Distribuidores Page
   ========================================= */
.dist-hero {
    padding-top: 150px;
    padding-bottom: 80px;
    background: radial-gradient(circle at center 20%, rgba(0, 229, 255, 0.05) 0%, transparent 60%);
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-100 {
    margin-top: 100px;
}

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

.cyan-text {
    color: var(--clr-secondary);
}

.badge-dot.cyan {
    background: var(--clr-secondary);
    box-shadow: 0 0 10px var(--clr-secondary);
}

.pricing-section {
    padding: 60px 0 100px;
}

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

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--clr-text-muted);
}

.benefits-list i {
    font-size: 1.5rem;
    margin-top: -2px;
}

.pricing-card {
    background: rgba(22, 22, 33, 0.6);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 229, 255, 0.2);
    overflow: hidden;
    position: relative;
    padding: 0;
}

.pulse-border {
    animation: pulse-border 3s infinite;
}

@keyframes pulse-border {
    0% {
        border-color: rgba(0, 229, 255, 0.2);
        box-shadow: 0 0 0 rgba(0, 229, 255, 0);
    }

    50% {
        border-color: rgba(0, 229, 255, 0.6);
        box-shadow: 0 15px 40px rgba(0, 229, 255, 0.15);
    }

    100% {
        border-color: rgba(0, 229, 255, 0.2);
        box-shadow: 0 0 0 rgba(0, 229, 255, 0);
    }
}

.pricing-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    padding: 40px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-name {
    display: block;
    font-weight: 700;
    color: var(--clr-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 10px;
    color: #fff;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    font-family: var(--font-heading);
}

.period {
    align-self: flex-end;
    margin-bottom: 12px;
    color: var(--clr-text-muted);
}

.plan-desc {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.pricing-body {
    padding: 40px 30px;
}

.investment-box {
    background: rgba(0, 229, 255, 0.05);
    border: 1px dashed var(--clr-secondary);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: left;
}

.investment-box h4 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.investment-box p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.investment-box strong {
    color: var(--clr-secondary);
}

.btn-block {
    display: block;
    width: 100%;
}

/* =========================================
   Soporte Page
   ========================================= */
.support-hero {
    padding-top: 150px;
    padding-bottom: 60px;
    background: radial-gradient(circle at top right, rgba(0, 229, 255, 0.05) 0%, transparent 60%);
}

.pt-100 {
    padding-top: 100px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.support-channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.support-card {
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(22, 22, 33, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: var(--clr-secondary);
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.15);
}

.support-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
}

.support-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px dashed currentColor;
    opacity: 0.3;
    animation: spin 10s linear infinite;
}

.support-icon.orange {
    color: #ff9800;
    background: rgba(255, 152, 0, 0.1);
}

.support-icon.cyan {
    color: var(--clr-secondary);
    background: rgba(0, 229, 255, 0.1);
}

.support-icon.pink {
    color: #e91e63;
    background: rgba(233, 30, 99, 0.1);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.support-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin-top: 10px;
    flex-grow: 1;
}

.downloads-section {
    padding: 60px 0;
}

.downloads-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.download-category {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.category-title {
    font-size: 1.25rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.download-list {
    list-style: none;
    padding: 0;
}

.download-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.download-list li:last-child {
    border-bottom: none;
}

.dl-info h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: #fff;
}

.dl-info p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.dl-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 229, 255, 0.1);
    color: var(--clr-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.dl-btn:hover {
    background: var(--clr-secondary);
    color: #000;
    transform: scale(1.1);
}

/* =========================================
   Soporte Page
   ========================================= */
.support-hero {
    padding-top: 150px;
    padding-bottom: 60px;
    background: radial-gradient(circle at top right, rgba(0, 229, 255, 0.05) 0%, transparent 60%);
}

.pt-100 {
    padding-top: 100px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.support-channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.support-card {
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(22, 22, 33, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: var(--clr-secondary);
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.15);
}

.support-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
}

.support-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px dashed currentColor;
    opacity: 0.3;
    animation: spin 10s linear infinite;
}

.support-icon.orange {
    color: #ff9800;
    background: rgba(255, 152, 0, 0.1);
}

.support-icon.cyan {
    color: var(--clr-secondary);
    background: rgba(0, 229, 255, 0.1);
}

.support-icon.pink {
    color: #e91e63;
    background: rgba(233, 30, 99, 0.1);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.support-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin-top: 10px;
    flex-grow: 1;
}

.downloads-section {
    padding: 60px 0;
}

.downloads-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.download-category {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.category-title {
    font-size: 1.25rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.download-list {
    list-style: none;
    padding: 0;
}

.download-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.download-list li:last-child {
    border-bottom: none;
}

.dl-info h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: #fff;
}

.dl-info p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.dl-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 229, 255, 0.1);
    color: var(--clr-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.dl-btn:hover {
    background: var(--clr-secondary);
    color: #000;
    transform: scale(1.1);
}

/* =========================================
   Blog Page
   ========================================= */
.blog-hero {
    padding-top: 150px;
    padding-bottom: 60px;
    background: radial-gradient(circle at top left, rgba(0, 229, 255, 0.05) 0%, transparent 60%);
}

.blog-archive-section {
    padding: 60px 0 100px;
}

.blog-filters {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-filters .btn {
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--clr-text-muted);
}

.blog-filters .btn:hover,
.blog-filters .btn.active {
    border-color: var(--clr-secondary);
    color: #000;
    background: var(--clr-secondary);
}

.blog-grid-archive {
    margin-bottom: 50px;
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 60px;
    }

    .hardware-container {
        grid-template-columns: 1fr;
    }

    .hardware-text {
        text-align: center;
    }

    .check-list li {
        justify-content: center;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .banner-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .banner-image {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .downloads-grid {
        grid-template-columns: 1fr;
    }

    .support-channels-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--clr-bg);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--clr-surface-border);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        gap: 16px;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .mobile-toggle {
        display: block;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-desc {
        margin: 16px auto 24px;
    }

    .social-links {
        justify-content: center;
    }

    .d-flex-between {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .btn-blog-desktop {
        display: none;
    }

    .mobile-only-btn {
        display: block;
    }
}