/* ===============================================
   ZIII - Modern Design System (Tailwind-inspired)
   =============================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --green-400: #4ade80;
    --green-600: #16a34a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--slate-800);
    background: white;
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--blue-100);
}

/* ===============================================
   Navbar
   =============================================== */

#navbar {
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 16px 0;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

#navbar.scrolled .nav-logo img {
    height: 65px;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    cursor: pointer;
}

.nav-logo img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(37, 99, 235, 0.15));
}

.nav-logo img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.25));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu button {
    background: none;
    border: none;
    color: var(--slate-600);
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-menu button:hover {
    color: var(--blue-700);
}

.nav-menu .btn-cta {
    background: var(--blue-600);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
}

.nav-menu .btn-cta:hover {
    background: var(--blue-700);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--slate-600);
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.dropdown-toggle:hover {
    color: var(--blue-700);
}

.dropdown-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 8px;
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 12px);
}

.dropdown-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.dropdown-item:hover {
    background: var(--blue-50);
}

.dropdown-item.coming-soon {
    cursor: not-allowed;
    opacity: 0.6;
}

.dropdown-item.coming-soon:hover {
    background: var(--slate-50);
}

.dropdown-item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    border-radius: 10px;
    color: white;
    flex-shrink: 0;
}

.dropdown-item.coming-soon .dropdown-item-icon {
    background: var(--slate-300);
}

.dropdown-item-icon i {
    width: 20px;
    height: 20px;
}

.dropdown-item-content {
    flex: 1;
}

.dropdown-item-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--slate-800);
    margin-bottom: 2px;
}

.dropdown-item-desc {
    font-size: 13px;
    color: var(--slate-500);
    line-height: 1.4;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--slate-700);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--slate-100);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 16px 24px;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu.active {
    display: flex;
    animation: slideDown 0.3s ease;
}

.mobile-menu button {
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    color: var(--slate-700);
    padding: 12px 0;
    border-bottom: 1px solid var(--slate-50);
    cursor: pointer;
}

/* Mobile Dropdown */
.mobile-dropdown {
    border-bottom: 1px solid var(--slate-50);
}

.mobile-dropdown-toggle {
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    color: var(--slate-700);
    padding: 12px 0;
    cursor: pointer;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-icon {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px 0 12px 16px;
}

.mobile-dropdown-menu.active {
    display: flex;
    animation: slideDown 0.3s ease;
}

.mobile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    background: var(--slate-50);
    text-decoration: none;
    color: var(--slate-700);
    font-size: 15px;
    transition: background 0.2s ease;
}

.mobile-dropdown-item:hover {
    background: var(--blue-50);
}

.mobile-dropdown-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.mobile-dropdown-item.disabled:hover {
    background: var(--slate-50);
}

.mobile-dropdown-item i {
    width: 20px;
    height: 20px;
    color: #06b6d4;
}

.mobile-dropdown-item.disabled i {
    color: var(--slate-400);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================================
   Hero Section
   =============================================== */

#hero {
    position: relative;
    padding: 128px 0 80px;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, var(--blue-50), transparent);
    opacity: 0.7;
    z-index: -1;
}

.hero-blob {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background: var(--blue-100);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: -1;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 0.7s ease;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    border-radius: 9999px;
    color: var(--blue-700);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 32px;
}

.ping {
    position: relative;
    width: 8px;
    height: 8px;
    background: var(--blue-500);
    border-radius: 50%;
}

.ping::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--blue-400);
    border-radius: 50%;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--slate-900);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--blue-600);
}

.hero-description {
    font-size: 18px;
    color: var(--slate-600);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-600);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--blue-700);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background: white;
    color: var(--slate-700);
    padding: 14px 32px;
    border: 1px solid var(--slate-200);
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--slate-50);
}

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease 0.2s both;
}

.hero-carousel {
    position: relative;
    overflow: hidden;
    min-height: 540px;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 540px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-indicators {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--slate-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--blue-600);
    width: 32px;
    border-radius: 6px;
}

.indicator:hover {
    background: var(--blue-400);
}

.hero-card {
    position: relative;
    background: white;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: rotate(1deg);
    transition: transform 0.5s ease;
}

.hero-card:hover {
    transform: rotate(0deg);
}

.hero-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.floating-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--slate-100);
    max-width: 300px;
    animation: float 3s ease-in-out infinite;
}

.badge-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.icon-check {
    background: #dcfce7;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-check i {
    color: var(--green-600);
    width: 20px;
    height: 20px;
}

.badge-title {
    font-weight: 700;
    color: var(--slate-800);
}

.badge-text {
    font-size: 14px;
    color: var(--slate-500);
}

.floating-badge.metrics {
    background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 100%);
    color: white;
}

.floating-badge.metrics .badge-title {
    color: white;
}

.floating-badge.metrics .badge-text {
    color: var(--slate-300);
}

.icon-check.stats {
    background: rgba(59, 130, 246, 0.2);
}

.icon-check.stats i {
    color: var(--blue-400);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===============================================
   Products Section
   =============================================== */

#productos {
    padding: 96px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.products-bg-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.products-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

#productos .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

#productos .section-label {
    color: #06b6d4;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    font-size: 14px;
}

#productos .section-title {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

#productos .section-subtitle {
    color: var(--slate-300);
    font-size: 18px;
}

.highlight-cyan {
    color: #06b6d4;
}

.product-showcase {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.product-hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #06b6d4;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #06b6d4;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.feature-icon i {
    width: 28px;
    height: 28px;
}

.feature-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 16px;
    color: var(--slate-300);
    line-height: 1.7;
}

.product-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-secondary-outline {
    padding: 14px 28px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #06b6d4;
    color: #06b6d4;
    transform: translateY(-2px);
}

.btn-secondary-outline i {
    width: 20px;
    height: 20px;
}

.product-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.stat-badge > i {
    width: 40px;
    height: 40px;
    color: #06b6d4;
    flex-shrink: 0;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.stat-desc {
    font-size: 14px;
    color: var(--slate-400);
}

/* Products Responsive */
@media (max-width: 768px) {
    #productos .section-title {
        font-size: 32px;
    }
    
    .product-hero-card {
        padding: 32px 24px;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 16px;
    }
    
    .product-cta {
        flex-direction: column;
    }
    
    .product-cta button {
        width: 100%;
        justify-content: center;
    }
    
    .product-stats {
        grid-template-columns: 1fr;
    }
}

/* ===============================================
   Services Section
   =============================================== */

#servicios {
    padding: 96px 0;
    background: var(--slate-50);
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.section-label {
    color: var(--blue-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--slate-600);
    font-size: 18px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--slate-100);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: var(--blue-600);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--blue-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--blue-600);
}

.service-icon i {
    color: var(--blue-600);
    width: 32px;
    height: 32px;
    transition: color 0.3s ease;
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--slate-600);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    color: var(--blue-600);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 8px;
}

.service-link i {
    width: 16px;
    height: 16px;
}

/* ===============================================
   About Section
   =============================================== */

#nosotros {
    position: relative;
    padding: 80px 0;
    background: var(--slate-900);
    color: white;
    overflow: hidden;
}

.pattern-overlay {
    position: absolute;
    inset: 0;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
}

.about-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-content h3 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 24px;
}

.about-description {
    color: #cbd5e1;
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-list i {
    color: var(--blue-400);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.about-list span {
    color: #e2e8f0;
}

.stats-card {
    background: var(--slate-800);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--slate-700);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: center;
}

.stat-item {
    padding: 16px;
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--blue-400);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--slate-400);
}

/* ===============================================
   Contact Section
   =============================================== */

#contacto {
    padding: 96px 0;
    background: white;
}

.contact-wrapper {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-card {
    background: var(--blue-50);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
}

.contact-info {
    background: var(--blue-600);
    padding: 56px;
    color: white;
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
}

.contact-intro {
    color: #dbeafe;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.detail-item i {
    margin-top: 4px;
    color: #bfdbfe;
    width: 20px;
    height: 20px;
}

.detail-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #bfdbfe;
    font-weight: 600;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 48px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.social-icon i {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background: white;
    color: var(--blue-600);
}

.contact-form-wrapper {
    background: white;
    padding: 56px;
    flex: 3;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--slate-200);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    color: var(--slate-800);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background: var(--slate-900);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-submit:hover {
    background: var(--slate-800);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

/* Form Status Messages */
#contactFormStatus,
#demoFormStatus {
    margin: 16px 0;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    line-height: 1.5;
    animation: slideDown 0.3s ease;
}

#contactFormStatus:empty,
#demoFormStatus:empty {
    display: none;
    margin: 0;
    padding: 0;
}

.success-message,
.error-message {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.success-message {
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.3);
}

.error-message {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.success-message i,
.error-message i {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

/* Demo form status styling */
#demoFormStatus .success-message {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

#demoFormStatus .error-message {
    background: rgba(252, 165, 165, 0.15);
    border: 1px solid rgba(252, 165, 165, 0.3);
}

/* Button disabled state */
.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===============================================
   Footer
   =============================================== */

footer {
    background: var(--slate-900);
    color: var(--slate-400);
    padding: 48px 0;
    border-top: 1px solid var(--slate-800);
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-logo img {
    height: 55px;
    width: auto;
    display: block;
}

.footer-brand span {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.footer-text {
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--blue-400);
}

/* ===============================================
   Product Page Styles
   =============================================== */

#product-hero {
    padding: 140px 0 96px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.product-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.product-hero-content h1 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 14px;
    color: white;
}

.mini-badge i {
    width: 16px;
    height: 16px;
}

.product-hero-visual {
    position: relative;
}

.mockup-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.mockup-header {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.mockup-title {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.mockup-content {
    padding: 32px;
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.mockup-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--slate-50);
    border-radius: 12px;
}

.mockup-stat .stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-100);
    color: var(--blue-600);
    border-radius: 10px;
}

.mockup-stat .stat-icon i {
    width: 20px;
    height: 20px;
}

.mockup-stat .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--slate-800);
}

.mockup-stat .stat-label {
    font-size: 12px;
    color: var(--slate-500);
}

.mockup-chart {
    background: var(--slate-50);
    padding: 24px;
    border-radius: 12px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 120px;
}

.chart-bars .bar {
    flex: 1;
    background: linear-gradient(to top, #3b82f6, #60a5fa);
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
}

.chart-bars .bar:hover {
    opacity: 0.8;
}

/* Main Features Section */
#main-features {
    padding: 96px 0;
    background: white;
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background: var(--slate-50);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    background: white;
}

.feature-icon-large {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 24px;
}

.feature-icon-large i {
    width: 36px;
    height: 36px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 16px;
}

.feature-card > p {
    color: var(--slate-600);
    margin-bottom: 24px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--slate-700);
    font-size: 15px;
}

.feature-list li i {
    width: 18px;
    height: 18px;
    color: var(--green-600);
    flex-shrink: 0;
}

/* Modules Section */
#modulos {
    padding: 96px 0;
    background: linear-gradient(180deg, var(--slate-50) 0%, white 100%);
}

.modules-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.module-card {
    background: white;
    border: 2px solid var(--slate-200);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.module-card:hover {
    border-color: #06b6d4;
    box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.1);
    transform: translateY(-4px);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.module-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.module-icon i {
    width: 24px;
    height: 24px;
}

.module-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--slate-800);
}

.module-description {
    color: var(--slate-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

.module-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.module-features span {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--slate-700);
}

.module-features span i {
    width: 16px;
    height: 16px;
    color: #06b6d4;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Benefits Section */
#benefits {
    padding: 96px 0;
    background: white;
}

.benefits-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.benefit-card {
    text-align: center;
    padding: 40px 32px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--blue-100) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--blue-600);
}

.benefit-icon i {
    width: 40px;
    height: 40px;
}

.benefit-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--slate-600);
    line-height: 1.7;
}

/* Use Cases Section */
#use-cases {
    padding: 96px 0;
    background: var(--slate-50);
}

.use-cases-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.use-case-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.use-case-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.use-case-image i {
    width: 40px;
    height: 40px;
}

.use-case-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 12px;
}

.use-case-card p {
    color: var(--slate-600);
    line-height: 1.7;
    font-size: 15px;
}

/* Demo Section */
#demo {
    padding: 96px 0;
    background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
    color: white;
}

.demo-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.demo-content {
    text-align: center;
}

.demo-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.demo-content > p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.demo-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.demo-feature i {
    width: 24px;
    height: 24px;
}

.demo-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.demo-form input::placeholder,
.demo-form select,
.demo-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.15);
}

.demo-form select {
    cursor: pointer;
}

.demo-form select option {
    background: var(--slate-800);
    color: white;
}

.demo-form .btn-submit {
    background: white;
    color: var(--blue-600);
    margin-top: 8px;
}

.demo-form .btn-submit:hover {
    background: var(--blue-50);
    transform: translateY(-2px);
}

/* Product Page Responsive */
@media (max-width: 1024px) {
    .product-hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .product-hero-visual {
        order: -1;
    }
    
    .features-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-hero-content h1 {
        font-size: 36px;
    }
    
    .mockup-stats {
        grid-template-columns: 1fr;
    }
    
    .feature-card,
    .module-card,
    .benefit-card {
        padding: 24px;
    }
    
    .benefits-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-content h2 {
        font-size: 32px;
    }
    
    .demo-form {
        padding: 32px 24px;
    }
    
    .demo-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

/* ===============================================
   Responsive Design
   =============================================== */

@media (max-width: 1024px) {
    .hero-container,
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .contact-card {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-card {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 32px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}