/* ============================================
   DESIGN INSPIRADO EM SITES CORPORATIVOS PREMIUM
   Grupo JET - Conectividade Empresarial
   ============================================ */

:root {
    /* Cores Corporativas Grupo JET */
    --primary: #FF6600;
    --primary-dark: #E55A00;
    --primary-light: #FF8533;
    --secondary: #1A1A1A;
    --secondary-light: #2D2D2D;
    --dark: #0A0A0A;
    
    /* Neutros */
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Poppins', sans-serif;
    
    /* Sizes - Escala reduzida */
    --text-xs: 0.6875rem;    /* 11px */
    --text-sm: 0.8125rem;    /* 13px */
    --text-base: 0.875rem;   /* 14px */
    --text-lg: 0.9375rem;    /* 15px */
    --text-xl: 1rem;         /* 16px */
    --text-2xl: 1.125rem;    /* 18px */
    --text-3xl: 1.375rem;    /* 22px */
    --text-4xl: 1.75rem;     /* 28px */
    --text-5xl: 2.25rem;     /* 36px */
    --text-6xl: 3rem;        /* 48px */
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Effects */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 100px; /* Compensa o header fixo */
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

@media (min-width: 1536px) {
    .container {
        max-width: 1400px;
    }
}

/* ============================================
   HEADER MODERN CLEAN - Tecnologia Sutil
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(120%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 0 30px rgba(255, 102, 0, 0.03);
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Sutil accent line tech */
.header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 102, 0, 0.3) 50%, 
        transparent 100%);
    opacity: 0.5;
}

/* Canvas Sutil - Tech Minimalista */
.fiber-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.08;
    mix-blend-mode: multiply;
}

.navbar {
    padding: var(--space-5) 0;
    position: relative;
    z-index: 2;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
}

/* ============================================
   LOGO MODERN CLEAN - Elegante e Sutil
   ============================================ */
.logo-premium {
    position: relative;
    padding: var(--space-2);
}

/* Sutil glow minimalista */
.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.08) 0%, transparent 70%);
    filter: blur(15px);
    z-index: -1;
    transition: all 0.4s ease;
}

.logo-premium:hover .logo-glow {
    background: radial-gradient(circle, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
    filter: blur(20px);
}

@keyframes logoGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.logo-img {
    height: 150px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

/* Logo como link clicável */
.logo-premium {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.logo-premium:hover .logo-img {
    transform: scale(1.03);
    filter: drop-shadow(0 2px 8px rgba(255, 102, 0, 0.15));
}

.logo-premium:active .logo-img {
    transform: scale(0.98);
}

/* Sem efeitos extras - design clean */
.logo-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* ============================================
   MENU TECH - Links Holográficos Avançados
   ============================================ */
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    list-style: none;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--gray-700);
    padding: var(--space-2) var(--space-4);
    border-radius: 6px;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

/* Sutil background hover */
.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 102, 0, 0.06);
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover::before {
    opacity: 1;
}

/* Ponto moderno e sutil */
.link-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-link:hover .link-dot {
    opacity: 1;
    transform: scale(1);
}

.nav-link.active .link-dot {
    opacity: 1;
    transform: scale(1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

/* Linha sutil inferior */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* ============================================
   BOTÃO MODERN CLEAN
   ============================================ */
.btn-phone {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: var(--primary);
    color: var(--white);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.2);
}

.btn-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 102, 0, 0.3);
    background: var(--primary-dark);
}

.btn-phone i {
    transition: transform 0.3s ease;
}

.btn-phone:hover i {
    transform: scale(1.1);
}

/* Botão Intranet */
.btn-intranet {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    text-decoration: none;
    overflow: hidden;
}

.btn-intranet::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-intranet:hover::before {
    left: 100%;
}

.btn-intranet:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.btn-intranet i {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.btn-intranet:hover i {
    transform: scale(1.1) rotate(5deg);
}

.intranet-text {
    font-weight: 600;
}

/* ============================================
   MOBILE MENU BUTTON
   ============================================ */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.mobile-menu-btn span {
    width: 26px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.mobile-menu-btn span::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    border-radius: 3px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mobile-menu-btn:hover span::after {
    transform: scaleX(1);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ============================================
   HERO - Full Screen com Imagem de Conectividade
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.97) 100%),
        url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    padding-top: 100px;
}

/* Overlay de conectividade */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&q=80'),
        linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 26, 0.80) 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    opacity: 0.6;
    z-index: 0;
}

/* Efeitos de luz laranja */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 102, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 102, 0, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 102, 0, 0.08) 0%, transparent 60%);
    z-index: 0;
    mix-blend-mode: screen;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-6xl);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-6);
}

.hero-title .highlight {
    color: var(--primary);
}

.hero-description {
    font-size: var(--text-xl);
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: var(--space-8);
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-12);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    padding-top: var(--space-12);
    margin-top: var(--space-12);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-8) var(--space-6);
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.05) 0%, rgba(229, 90, 0, 0.02) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 102, 0, 0.15);
    border-radius: 16px;
    transition: var(--transition);
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(229, 90, 0, 0.05) 100%);
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(255, 102, 0, 0.2);
}

.stat-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    font-size: 28px;
    color: var(--white);
    box-shadow: 0 8px 16px rgba(255, 102, 0, 0.25);
    margin-bottom: var(--space-5);
    transition: var(--transition);
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotateY(180deg);
    box-shadow: 0 12px 24px rgba(255, 102, 0, 0.4);
}

.stat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-3);
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 1rem;
    color: var(--white);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-sublabel {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

/* ============================================
   BUTTONS - Minimalistas
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

/* ============================================
   MODAL VÍDEO
   ============================================ */
.modal-video {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: var(--space-6);
}

.modal-video.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 1100px;
    border-radius: 8px;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Placeholder do Vídeo */
.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: var(--space-8);
}

.placeholder-content {
    text-align: center;
    max-width: 500px;
    color: var(--white);
}

.placeholder-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: var(--space-6);
    opacity: 0.8;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.placeholder-content h3 {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--white);
}

.placeholder-content p {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--gray-300);
    margin-bottom: var(--space-3);
}

.placeholder-note {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid var(--primary);
    border-radius: 20px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary);
    margin-top: var(--space-4);
}

/* ============================================
   SECTIONS - Clean Layout
   ============================================ */
section {
    padding: var(--space-20) 0;
    scroll-margin-top: 100px; /* Garante espaço para o header fixo */
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-16);
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: var(--space-4);
}

.section-title .highlight {
    color: var(--primary);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================
   SOBRE - Timeline Horizontal
   ============================================ */
.section-sobre {
    background: var(--gray-50);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
    max-width: 1200px;
    margin: 0 auto var(--space-12);
}

.timeline-item {
    position: relative;
    padding: var(--space-8);
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.timeline-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--secondary);
    margin-bottom: var(--space-3);
    font-weight: 600;
}

.timeline-content p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: var(--text-base);
}

.video-cta-section {
    text-align: center;
}

/* ============================================
   INFRAESTRUTURA - Grid Cards
   ============================================ */
.section-infraestrutura {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-infraestrutura::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.97);
    z-index: 0;
}

.section-infraestrutura .container {
    position: relative;
    z-index: 1;
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-6);
}

.infra-card {
    position: relative;
    padding: var(--space-8);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    transition: var(--transition);
}

.infra-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: var(--transition);
}

.infra-card:hover::before {
    height: 100%;
}

.infra-card:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-lg);
}

.infra-icon {
    width: 70px;
    height: 70px;
    background: var(--gray-100);
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-4xl);
    margin-bottom: var(--space-5);
}

.infra-card h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--secondary);
    margin-bottom: var(--space-3);
    font-weight: 600;
}

.infra-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============================================
   SERVIÇOS - Split Layout
   ============================================ */
.section-servicos {
    background: var(--white);
}

/* Cards com Imagem de Fundo */
.service-card-image {
    position: relative;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.service-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
    transition: var(--transition);
}

.service-card-image:hover::before {
    background: linear-gradient(to top, rgba(255,102,0,0.9) 0%, rgba(255,102,0,0.5) 100%);
}

.service-card-image-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-6);
    color: var(--white);
    z-index: 1;
}

.service-card-image-content h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-2);
    font-weight: 600;
}

.service-card-image-content p {
    font-size: var(--text-sm);
    line-height: 1.6;
    opacity: 0.95;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-5);
}

.service-card {
    padding: var(--space-6);
    background: var(--gray-50);
    border-radius: 8px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.service-card:hover {
    background: var(--white);
    border-color: var(--gray-300);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--secondary);
    margin-bottom: var(--space-2);
    font-weight: 600;
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: var(--space-4);
    line-height: 1.6;
    font-size: var(--text-sm);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--gray-700);
    padding: var(--space-2);
    background: var(--white);
    border-radius: 4px;
}

.service-features i {
    color: var(--primary);
}

/* ============================================
   SOLUÇÕES - Tabs Minimalistas
   ============================================ */
.section-solucoes {
    background: var(--gray-50);
}

.solutions-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-8);
    overflow-x: auto;
    padding-bottom: var(--space-2);
}

.tab-btn {
    padding: var(--space-3) var(--space-5);
    background: var(--white);
    color: var(--gray-700);
    font-size: var(--text-sm);
    font-weight: 600;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    white-space: nowrap;
    transition: var(--transition);
}

.tab-btn:hover {
    border-color: var(--gray-300);
}

.tab-btn.active {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.solution-content {
    padding: var(--space-10);
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.solution-info h3 {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    color: var(--secondary);
    margin-bottom: var(--space-3);
    font-weight: 700;
}

.solution-subtitle {
    font-size: var(--text-xl);
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--space-5);
}

.solution-info > p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.solution-features {
    display: grid;
    gap: var(--space-4);
}

.feature-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--gray-50);
    border-radius: 6px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--white);
    border-color: var(--gray-200);
}

.feature-item i {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-3xl);
}

.feature-item h4 {
    font-size: var(--text-xl);
    color: var(--secondary);
    margin-bottom: var(--space-2);
    font-weight: 600;
}

.feature-item p {
    color: var(--gray-600);
    font-size: var(--text-sm);
    line-height: 1.6;
}

/* ============================================
   IMAGE BANNER - Full Width com Parallax
   ============================================ */
.image-banner {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.image-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.6);
}

.image-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: var(--space-10);
}

.image-banner h2 {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    color: var(--white);
    font-weight: 700;
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.image-banner p {
    font-size: var(--text-xl);
    color: var(--gray-200);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.image-banner .btn {
    margin-top: var(--space-4);
}

/* ============================================
   SPLIT SECTION - Image + Content
   ============================================ */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.split-section.reverse {
    direction: rtl;
}

.split-section.reverse > * {
    direction: ltr;
}

.split-image {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.split-content {
    display: flex;
    align-items: center;
    padding: var(--space-16) var(--space-10);
    background: var(--white);
}

.split-content-inner {
    max-width: 600px;
}

.split-content h2 {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    color: var(--secondary);
    margin-bottom: var(--space-4);
    font-weight: 700;
    line-height: 1.2;
}

.split-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.split-content ul {
    margin-bottom: var(--space-6);
}

.split-content ul li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    color: var(--gray-700);
}

.split-content ul li i {
    color: var(--primary);
    font-size: var(--text-lg);
}

@media (max-width: 1024px) {
    .split-section {
        grid-template-columns: 1fr;
    }
    
    .split-image {
        min-height: 400px;
    }
}

/* ============================================
   SUPORTE - Dark Section
   ============================================ */
.section-suporte {
    background: var(--secondary);
    color: var(--white);
}

.section-suporte .section-title,
.section-suporte .section-subtitle {
    color: var(--white);
}

.section-suporte .section-subtitle {
    color: var(--gray-400);
}

.suporte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-6);
}

.suporte-card {
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.suporte-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 102, 0, 0.5);
}

.suporte-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-3xl);
    margin: 0 auto var(--space-4);
}

.suporte-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
    font-weight: 600;
}

.suporte-card p {
    opacity: 0.9;
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.suporte-link {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: var(--primary);
    color: var(--white);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
}

.suporte-link:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* ============================================
   CONTATO - Split Layout
   ============================================ */
.section-contato {
    background: var(--white);
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-10);
    max-width: 1200px;
    margin: 0 auto;
}

.contato-info {
    padding: var(--space-10);
    background: var(--secondary);
    color: var(--white);
    border-radius: 8px;
}

.contato-info h3 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-6);
    font-weight: 700;
}

.info-item {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.info-item i {
    font-size: var(--text-2xl);
    color: var(--primary);
    width: 40px;
    text-align: center;
}

.info-item strong {
    display: block;
    margin-bottom: var(--space-1);
    font-size: var(--text-base);
}

.info-item p {
    opacity: 0.9;
    font-size: var(--text-sm);
}

.contato-form {
    padding: var(--space-10);
    background: var(--gray-50);
    border-radius: 8px;
}

.form-group {
    margin-bottom: var(--space-5);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-4);
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-family: inherit;
    font-size: var(--text-base);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============================================
   FOOTER - Minimalista
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: var(--space-16) 0 var(--space-6);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-10);
    margin-bottom: var(--space-10);
}

.footer-col h4 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
    color: var(--primary);
    font-weight: 600;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.7;
    font-size: var(--text-sm);
}

.footer-col ul li {
    margin-bottom: var(--space-2);
    opacity: 0.8;
    font-size: var(--text-sm);
}

.footer-col ul li a:hover {
    color: var(--primary);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: var(--space-3);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: var(--text-sm);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .logo-img {
        height: 120px;
    }
    
    .hero-title {
        font-size: var(--text-5xl);
    }
    
    .section-title {
        font-size: var(--text-4xl);
    }
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 992px) and (min-width: 769px) {
    .logo-img {
        height: 55px;
    }
    
    .nav-menu {
        gap: var(--space-1);
    }
    
    .nav-menu a {
        padding: var(--space-2) var(--space-3);
        font-size: 0.75rem; /* 12px */
    }
    
    .hero {
        padding-top: 90px;
    }
    
    html {
        scroll-padding-top: 90px;
    }
    
    section {
        scroll-margin-top: 90px;
    }
}

/* ============================================
   CARROSSEL COM IMAGEM DE FUNDO NO HERO
   ============================================ */
.hero-carousel {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-carousel .carousel-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
}

.carousel-slide {
    display: none;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.carousel-slide.active {
    display: flex;
    align-items: center;
    animation: fadeIn 0.8s ease;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 102, 0, 0.3) 100%);
    z-index: 1;
}

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

.carousel-slide .container {
    position: relative;
    z-index: 2;
}

.slide-content-overlay {
    padding: var(--space-16) 0;
    max-width: 900px;
}

.hero-title-overlay {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-6);
    line-height: 1.2;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-title-overlay .highlight {
    color: var(--color-primary);
    text-shadow: 2px 2px 20px rgba(255, 102, 0, 0.8);
}

.hero-subtitle-overlay {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-6);
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

/* Hero Stats Premium - Cards Melhorados */
.hero-stats-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-8);
    padding: 0 var(--space-2);
}

.stat-card-premium {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 102, 0, 0.3);
    border-radius: 20px;
    padding: var(--space-5);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.stat-card-premium:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 102, 0, 0.6);
    box-shadow: 0 20px 60px rgba(255, 102, 0, 0.3), 
                0 0 40px rgba(255, 102, 0, 0.2);
}

.stat-card-premium:hover::before {
    opacity: 1;
}

.stat-icon-premium {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff8533 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-3);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
    transition: all 0.4s ease;
}

.stat-card-premium:hover .stat-icon-premium {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(255, 102, 0, 0.6);
}

.stat-icon-premium i {
    font-size: 1.75rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.stat-content-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number-premium {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 102, 0, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.stat-plus-premium {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--space-2);
    display: inline-block;
    text-shadow: 0 2px 8px rgba(255, 102, 0, 0.6);
}

.stat-label-premium {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-sublabel-premium {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    line-height: 1.4;
}

.stat-status-premium {
    font-size: 0.65rem;
    color: #4ade80;
    font-weight: 600;
    margin-top: var(--space-1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
}

.stat-status-premium::before {
    content: '✓';
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #4ade80;
    color: white;
    border-radius: 50%;
    font-size: 0.65rem;
    line-height: 14px;
    text-align: center;
    font-weight: bold;
}

/* Stats Overlay no Primeiro Slide */
.hero-stats-overlay {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-10);
}

.stat-item-overlay {
    text-align: center;
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item-overlay:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-icon-overlay {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: var(--space-3);
    text-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
}

.stat-number-overlay {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-2);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.stat-label-overlay {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Destaques de Infraestrutura Técnica */
.hero-infra-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
    align-items: center;
    margin-top: var(--space-6);
    padding: var(--space-5) var(--space-6);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.infra-highlight-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: white;
    font-size: var(--text-sm);
    white-space: nowrap;
}

.infra-highlight-item i {
    color: var(--color-primary);
    font-size: var(--text-base);
}

.infra-highlight-item strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* Botões Overlay */
.hero-buttons-overlay {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.btn-hero {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Badge e Título dos Produtos */
.slide-badge-overlay {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: var(--space-2) var(--space-5);
    border-radius: 50px;
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
}

.slide-title-overlay {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-5);
    line-height: 1.2;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.slide-description-overlay {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: var(--space-8);
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

.slide-description-overlay strong {
    color: white;
    font-weight: 600;
}

.slide-features-overlay {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.feature-item-overlay {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-5);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: var(--text-base);
    color: white;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item-overlay i {
    color: var(--color-primary);
    font-size: 1.25rem;
}

.slide-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    background: linear-gradient(135deg, var(--color-neutral-50) 0%, var(--color-neutral-100) 100%);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.slide-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    color: var(--color-neutral-400);
    padding: var(--space-8);
    text-align: center;
}

.image-placeholder i {
    font-size: 5rem;
    opacity: 0.5;
}

.image-placeholder span {
    font-size: var(--text-lg);
    font-weight: 500;
}

/* Botões de Navegação do Carrossel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: white;
    border: none;
    border-radius: 50%;
    color: var(--color-primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 102, 0, 0.4);
}

.carousel-btn-prev {
    left: -30px;
}

.carousel-btn-next {
    right: -30px;
}

/* Indicadores do Carrossel */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    margin-top: var(--space-6);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-neutral-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: var(--color-neutral-500);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--color-primary);
    width: 40px;
    border-radius: 6px;
}

/* ============================================
   SEÇÃO DE PRODUTOS DETALHADOS
   ============================================ */
.products-detailed {
    padding: var(--space-24) 0;
    background: linear-gradient(180deg, var(--color-neutral-50) 0%, #ffffff 100%);
}

.products-detailed .section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    margin-bottom: var(--space-20);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.product-detail.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.product-detail.reverse {
    direction: rtl;
}

.product-detail.reverse > * {
    direction: ltr;
}

.product-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.product-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.product-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, var(--color-neutral-100) 0%, var(--color-neutral-200) 100%);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.product-badge.cloud {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.product-badge.peplink {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.product-badge.smart {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.product-badge i {
    font-size: 1rem;
}

.product-content {
    padding: var(--space-6);
}

.product-category {
    display: inline-block;
    color: var(--color-primary);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-3);
}

.product-title {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-neutral-900);
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.product-description {
    font-size: var(--text-lg);
    color: var(--color-neutral-700);
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

.product-description strong {
    color: var(--color-neutral-900);
    font-weight: 600;
}

.product-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-6) 0;
}

.product-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    font-size: var(--text-base);
    color: var(--color-neutral-700);
    border-bottom: 1px solid var(--color-neutral-200);
}

.product-benefits li:last-child {
    border-bottom: none;
}

.product-benefits i {
    color: var(--color-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.product-detail .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .logo-img {
        height: 120px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 280px;
        max-width: 85vw;
        max-height: calc(100vh - 76px);
        background: var(--white);
        flex-direction: column;
        padding: var(--space-4);
        transition: var(--transition);
        box-shadow: var(--shadow-xl);
        align-items: stretch;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        padding: var(--space-4);
        text-align: center;
    }
    
    .nav-contact {
        display: flex;
        flex-direction: column;
        gap: var(--space-2);
        padding: var(--space-4);
        background: rgba(0, 0, 0, 0.05);
        border-top: 1px solid rgba(255, 102, 0, 0.1);
    }
    
    .btn-intranet,
    .btn-phone {
        width: 100%;
        justify-content: center;
    }
    
    .intranet-text {
        display: inline;
    }
    
    .hero {
        min-height: auto;
        padding: var(--space-12) 0 var(--space-10);
    }
    
    html {
        scroll-padding-top: 80px;
    }
    
    section {
        scroll-margin-top: 80px;
    }
    
    .hero-title {
        font-size: var(--text-4xl);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
    }
    
    .stat-item {
        padding: var(--space-6) var(--space-4);
    }
    
    .stat-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin-bottom: var(--space-4);
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .contato-wrapper {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        grid-template-columns: 1fr;
    }
    
    /* Hero Carousel - Responsive Tablet */
    .hero-carousel {
        min-height: 70vh;
    }
    
    .hero-title-overlay {
        font-size: 2.5rem;
    }
    
    .slide-title-overlay {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-overlay,
    .slide-description-overlay {
        font-size: var(--text-lg);
    }
    
    .hero-stats-overlay {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
    
    .stat-number-overlay {
        font-size: 2.5rem;
    }
    
    .stat-icon-overlay {
        font-size: 2.5rem;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .carousel-btn-prev {
        left: 10px;
    }
    
    .carousel-btn-next {
        right: 10px;
    }
    
    /* Products Detailed - Responsive Tablet */
    .product-detail {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        margin-bottom: var(--space-16);
    }
    
    .product-detail.reverse {
        direction: ltr;
    }
    
    .product-image img {
        height: 400px;
    }
    
    .product-content {
        padding: var(--space-4);
    }
    
    .product-title {
        font-size: var(--text-3xl);
    }
    
    .product-description {
        font-size: var(--text-base);
    }
}

/* Tablet Responsivo */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-stats-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
    }
    
    .stat-card-premium {
        padding: var(--space-4);
    }
    
    .stat-icon-premium {
        width: 50px;
        height: 50px;
    }
    
    .stat-icon-premium i {
        font-size: 1.5rem;
    }
    
    .stat-number-premium {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-3xl);
    }
    
    .section-title {
        font-size: var(--text-3xl);
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }
    
    .stat-item {
        padding: var(--space-5) var(--space-4);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    .stat-sublabel {
        font-size: 0.75rem;
    }
    
    /* Hero Carousel - Responsive Mobile */
    .hero-carousel {
        min-height: 100vh;
    }
    
    .carousel-slide {
        min-height: 100vh;
    }
    
    .slide-content-overlay {
        padding: var(--space-8) 0;
    }
    
    .hero-title-overlay {
        font-size: 2rem;
    }
    
    .slide-title-overlay {
        font-size: 2rem;
    }
    
    .hero-subtitle-overlay,
    .slide-description-overlay {
        font-size: var(--text-base);
        margin-bottom: var(--space-4);
    }
    
    .hero-stats-premium {
        grid-template-columns: 1fr;
        gap: var(--space-3);
        margin-bottom: var(--space-5);
        padding: 0;
    }
    
    .stat-card-premium {
        padding: var(--space-4);
        border-radius: 16px;
    }
    
    .stat-icon-premium {
        width: 50px;
        height: 50px;
        margin-bottom: var(--space-3);
    }
    
    .stat-icon-premium i {
        font-size: 1.5rem;
    }
    
    .stat-number-premium {
        font-size: 2rem;
    }
    
    .stat-label-premium {
        font-size: 0.9rem;
    }
    
    .stat-sublabel-premium {
        font-size: 0.75rem;
    }
    
    .hero-stats-overlay {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }
    
    .stat-item-overlay {
        padding: var(--space-4);
    }
    
    .stat-number-overlay {
        font-size: 2rem;
    }
    
    .stat-icon-overlay {
        font-size: 2rem;
    }
    
    .stat-label-overlay {
        font-size: var(--text-sm);
    }
    
    .hero-infra-highlights {
        flex-direction: column;
        gap: var(--space-2);
        padding: var(--space-4);
        margin-top: var(--space-4);
    }
    
    .infra-highlight-item {
        font-size: 0.875rem;
        justify-content: center;
    }
    
    .hero-buttons-overlay {
        flex-direction: column;
    }
    
    .btn-hero {
        width: 100%;
        text-align: center;
    }
    
    .slide-features-overlay {
        flex-direction: column;
        gap: var(--space-2);
    }
    
    .feature-item-overlay {
        width: 100%;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-btn-prev {
        left: 5px;
    }
    
    .carousel-btn-next {
        right: 5px;
    }
    
    /* Products Detailed - Responsive Mobile */
    .products-detailed {
        padding: var(--space-16) 0;
    }
    
    .products-detailed .section-header {
        margin-bottom: var(--space-12);
    }
    
    .product-detail {
        margin-bottom: var(--space-12);
    }
    
    .product-image img {
        height: 300px;
    }
    
    .product-title {
        font-size: var(--text-2xl);
    }
    
    .product-description {
        font-size: var(--text-sm);
    }
    
    .product-benefits {
        margin-bottom: var(--space-4);
    }
    
    .product-benefits li {
        font-size: var(--text-sm);
        padding: var(--space-2) 0;
    }
    
    .product-benefits i {
        font-size: 1rem;
    }
}

/* ============================================
   RESPONSIVIDADE AUTOMÁTICA - BREAKPOINTS ADICIONAIS
   ============================================ */

/* Extra Small Mobile (320px - 374px) */
@media (max-width: 374px) {
    .logo-img {
        height: 50px;
    }
    
    .hero-title-overlay,
    .slide-title-overlay {
        font-size: 1.75rem;
    }
    
    .hero-subtitle-overlay,
    .slide-description-overlay {
        font-size: 0.875rem;
    }
    
    .stat-card-premium {
        padding: var(--space-3);
    }
    
    .stat-number-premium {
        font-size: 1.75rem;
    }
    
    .btn-hero {
        font-size: var(--text-sm);
        padding: var(--space-3) var(--space-4);
    }
}

/* Small Mobile (375px - 479px) */
@media (min-width: 375px) and (max-width: 479px) {
    .logo-img {
        height: 55px;
    }
    
    .hero-title-overlay {
        font-size: 1.875rem;
    }
    
    .stat-card-premium {
        padding: var(--space-4);
    }
}

/* Medium Mobile (480px - 639px) */
@media (min-width: 480px) and (max-width: 639px) {
    .logo-img {
        height: 60px;
    }
    
    .hero-stats-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
    }
    
    .stat-card-premium {
        padding: var(--space-4);
    }
}

/* Large Mobile / Small Tablet (640px - 767px) */
@media (min-width: 640px) and (max-width: 767px) {
    .logo-img {
        height: 70px;
    }
    
    .hero-stats-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
    
    .hero-title-overlay {
        font-size: 2.25rem;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .logo-img {
        height: 90px;
    }
    
    .nav-menu {
        gap: var(--space-2);
    }
    
    .hero-stats-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-5);
    }
    
    .stat-card-premium {
        padding: var(--space-5);
    }
}

/* Tablet Landscape (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .logo-img {
        height: 110px;
    }
    
    .hero-stats-premium {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .stat-card-premium {
        padding: var(--space-5);
    }
}

/* Small Desktop (1200px - 1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
    .logo-img {
        height: 130px;
    }
    
    .container {
        max-width: 1140px;
    }
}

/* Large Desktop (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .logo-img {
        height: 140px;
    }
    
    .container {
        max-width: 1320px;
    }
}

/* Extra Large Desktop (1920px+) */
@media (min-width: 1920px) {
    .logo-img {
        height: 150px;
    }
    
    .container {
        max-width: 1600px;
    }
    
    .hero-title-overlay {
        font-size: 3.5rem;
    }
    
    .stat-number-premium {
        font-size: 3rem;
    }
}

/* ============================================
   ORIENTAÇÃO DO DISPOSITIVO
   ============================================ */

/* Landscape Mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-carousel {
        min-height: 100vh;
    }
    
    .slide-content-overlay {
        padding: var(--space-6) 0;
    }
    
    .hero-stats-premium {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-3);
    }
    
    .stat-card-premium {
        padding: var(--space-3);
    }
    
    .stat-number-premium {
        font-size: 1.5rem;
    }
    
    .stat-label-premium {
        font-size: 0.75rem;
    }
}

/* Landscape Tablet */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .hero-stats-premium {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .nav-menu {
        gap: var(--space-1);
    }
    
    .nav-link {
        padding: var(--space-2) var(--space-3);
        font-size: 0.8125rem;
    }
}

/* ============================================
   TOUCH DEVICES - Melhorias de Usabilidade
   ============================================ */
@media (hover: none) and (pointer: coarse) {
    /* Aumentar áreas de toque para mobile */
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .btn {
        min-height: 48px;
        padding: var(--space-3) var(--space-6);
    }
    
    .carousel-btn {
        min-width: 48px;
        min-height: 48px;
    }
    
    .mobile-menu-btn {
        min-width: 48px;
        min-height: 48px;
    }
    
    /* Remover hover effects em touch devices */
    .nav-link:hover::before {
        opacity: 0;
    }
    
    .stat-card-premium:hover {
        transform: none;
        border-color: rgba(255, 102, 0, 0.2);
    }
}

/* ============================================
   HIGH DPI / RETINA DISPLAYS
   ============================================ */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ============================================
   PREFERÊNCIAS DO USUÁRIO
   ============================================ */

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark Mode Support (futuro) */
@media (prefers-color-scheme: dark) {
    /* Preparado para implementação futura */
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .nav-link {
        font-weight: 600;
    }
    
    .btn {
        border-width: 2px;
    }
    
    .stat-card-premium {
        border-width: 2px;
    }
}