/* =================================
   RESET E VARIÁVEIS GLOBAIS
   ================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    zoom: 0.9; /* Reduzir zoom geral */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

:root {
    --primary-dark: #0c1527;
    --secondary-dark: #172239;
    --accent-blue: #3b82f6;
    --bright-green: #10b981;
    --yellow-accent: #fbbf24;
    --purple-accent: #8b5cf6;
    --cyan-accent: #06b6d4;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --dark-gray: #64748b;
    --text-light: #94a3b8;
    --text-medium: #64748b;
    --gradient-blue-start: #1e40af;
    --gradient-blue-mid: #3b82f6;
    --gradient-green-mid: #0891b2;
    --gradient-green-end: #059669;
    
    /* Tamanhos reduzidos */
    --container-max-width: 1200px;
    --section-padding: 4rem 0;
    --card-padding: 1.5rem;
}

/* =================================
   BODY E BACKGROUND
   ================================= */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: var(--primary-dark);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Gradientes de fundo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -3;
    background: 
        radial-gradient(circle at 15% 25%, rgba(59, 130, 246, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(16, 185, 129, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 50% 10%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 40%, rgba(6, 182, 212, 0.12) 0%, transparent 35%),
        radial-gradient(circle at 10% 80%, rgba(251, 191, 36, 0.08) 0%, transparent 40%);
}

/* Pontos flutuantes animados */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.6) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.5) 2px, transparent 2px),
        radial-gradient(circle at 60% 40%, rgba(139, 92, 246, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 90% 20%, rgba(6, 182, 212, 0.5) 1px, transparent 1px),
        radial-gradient(circle at 30% 80%, rgba(251, 191, 36, 0.3) 1px, transparent 1px);
    background-size: 200px 200px, 250px 250px, 180px 180px, 220px 220px, 160px 160px;
    animation: float 30s ease-in-out infinite;
}

/* =================================
   ANIMAÇÕES GLOBAIS
   ================================= */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-20px) rotate(1deg) scale(1.02); }
    50% { transform: translateY(-10px) rotate(-0.5deg) scale(0.98); }
    75% { transform: translateY(-15px) rotate(0.8deg) scale(1.01); }
}

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

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes glow {
    from { box-shadow: 0 4px 15px rgba(251, 191, 36, 0.2); }
    to { box-shadow: 0 4px 25px rgba(251, 191, 36, 0.4); }
}

/* =================================
   UTILITÁRIOS
   ================================= */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.highlight {
    color: #22d3ee;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
}

.highlight-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.gradient-text-primary {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 25%, #0891b2 60%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.3));
}

.gradient-text-secondary {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 25%, #10b981 60%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
}

.logo-chronos {
    background: linear-gradient(135deg, 
        var(--gradient-blue-start) 0%, 
        var(--gradient-blue-mid) 25%, 
        var(--gradient-green-mid) 60%, 
        var(--gradient-green-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
}

.logo-automate {
    color: var(--text-light);
    font-weight: 400;
}

/* =================================
   HEADER
   ================================= */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(12, 21, 39, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    margin: 0; /* Garantir que não há margin */
    border-top: none; /* Remover qualquer border-top */
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.2rem; /* Reduzido de 1.5rem para 1.2rem */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo h2 {
    font-size: 1rem; /* Reduzido de 1.2rem para 1rem */
    font-weight: 600;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem; /* Reduzido de 2rem para 1.5rem */
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem; /* Reduzido de 0.9rem para 0.8rem */
    transition: all 0.3s ease;
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(90deg, var(--gradient-blue-mid), var(--gradient-green-mid));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #22d3ee;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
    opacity: 1 !important;
    visibility: visible !important;
}

.nav-link:hover::after {
    width: 100%;
}

/* Estado ativo dos links */
.nav-link.active {
    color: #22d3ee !important;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
    opacity: 1 !important;
    visibility: visible !important;
}

.nav-link.active::after {
    width: 100%;
    background: linear-gradient(90deg, #22d3ee, #10b981);
}

.cta-button {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    padding: 0.5rem 1rem; /* Reduzido de 0.6rem 1.2rem para 0.5rem 1rem */
    border-radius: 6px; /* Reduzido de 8px para 6px */
    font-weight: 600;
    border: none;
    font-size: 0.75rem; /* Reduzido de 0.85rem para 0.75rem */
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
    transition: all 0.3s ease;
    color: var(--white);
    margin-left: 0.3rem; /* Reduzido de 0.5rem para 0.3rem */
    position: relative;
    overflow: hidden;
}

/* =================================
   HERO SECTION
   ================================= */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
    overflow: hidden;
    padding: 0;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 1.5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Ícone da Marca Chronos Automate */
.brand-icon-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.chronos-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.2) 0%, 
        rgba(16, 185, 129, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
    margin-right: 1rem;
    position: relative;
    overflow: hidden;
}

.chronos-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

.chronos-icon i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Título Principal */
.hero-title-section {
    margin-bottom: 2.5rem;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.title-line-1 {
    color: var(--white);
    animation-delay: 0.2s;
}

.title-line-2 {
    animation-delay: 0.4s;
    margin: 0.2rem 0;
}

.title-line-3 {
    animation-delay: 0.6s;
}

.hero-description {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    opacity: 0;
    transform: translateY(20px);
}

/* Estatísticas */
.hero-stats {
    display: flex;
    gap: 1.5rem;
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out 1s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    text-align: left;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.2) 0%, 
        rgba(16, 185, 129, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.stat-icon i {
    font-size: 1rem;
    color: #22d3ee;
    filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.5));
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Botões de Ação */
.hero-actions {
    display: flex;
    gap: 1.25rem;
    margin: 1.5rem 0 2.5rem;
    animation: fadeInUp 0.8s ease-out 1.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.btn-hero-primary, .btn-hero-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    overflow: hidden;
    min-width: 180px;
    justify-content: center;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 25%, #0891b2 60%, #059669 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #22d3ee;
    box-shadow: 0 8px 25px rgba(34, 211, 238, 0.3);
    transform: translateY(-2px);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    position: relative;
}

.btn-shine {
    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;
}

.btn-hero-primary:hover .btn-shine {
    left: 100%;
}

/* =================================
   SECTION HEADERS UNIVERSAIS
   ================================= */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.12);
    backdrop-filter: blur(20px);
    color: #3b82f6;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.25);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.section-badge i {
    filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.5));
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.section-description {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* =================================
   SERVICES SECTION - TAMANHOS NORMAIS PARA DESKTOP
   ================================= */
.services {
    padding: var(--section-padding);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem; /* Tamanho normal para desktop */
    margin-bottom: 4rem; /* Tamanho normal para desktop */
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem 2.5rem; /* Tamanho normal para desktop */
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    min-height: 450px; /* Tamanho normal para desktop */
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(16, 185, 129, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.service-featured {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.25);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-icon {
    width: 70px; /* Tamanho normal para desktop */
    height: 70px; /* Tamanho normal para desktop */
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.2) 0%, 
        rgba(16, 185, 129, 0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
}

.service-icon i {
    font-size: 1.75rem; /* Tamanho normal para desktop */
    color: #22d3ee;
    filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.5));
}

.service-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.service-card h3 {
    font-size: 1.5rem; /* Tamanho normal para desktop */
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem; /* Tamanho normal para desktop */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.service-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2rem; /* Tamanho normal para desktop */
    font-size: 1rem; /* Tamanho normal para desktop */
}

.service-features {
    margin-bottom: 2rem; /* Tamanho normal para desktop */
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem; /* Tamanho normal para desktop */
    color: #cbd5e1;
    font-size: 0.9rem; /* Tamanho normal para desktop */
}

.feature-item i {
    color: #22d3ee;
    font-size: 0.875rem;
    filter: drop-shadow(0 0 5px rgba(34, 211, 238, 0.5));
}

.service-cta {
    margin-top: auto;
}

.btn-service {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-service:hover {
    background: rgba(34, 211, 238, 0.15);
    border-color: #22d3ee;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(34, 211, 238, 0.2);
}

/* =================================
   ABOUT SECTION - TAMANHOS NORMAIS PARA DESKTOP
   ================================= */
.value-proposition {
    padding: var(--section-padding);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-journey {
    margin-bottom: 2.5rem;
}

.about-journey-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-journey-block {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(59,130,246,0.10);
    border-radius: 14px;
    padding: 1.5rem 2rem;
    min-width: 240px;
    max-width: 350px;
    flex: 1 1 240px;
    box-shadow: 0 2px 12px rgba(59,130,246,0.06);
    margin-bottom: 1rem;
}

.about-journey-block h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.about-journey-block p {
    color: #cbd5e1;
    font-size: 0.98rem;
    line-height: 1.6;
}

.about-results-cards {
    display: flex;
    gap: 3.5rem; /* Tamanho normal para desktop */
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-result-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(59,130,246,0.12);
    border-radius: 14px;
    padding: 1.2rem 1.5rem; /* Tamanho normal para desktop */
    min-width: 160px; /* Tamanho normal para desktop */
    max-width: 200px; /* Tamanho normal para desktop */
    text-align: center;
    box-shadow: 0 2px 10px rgba(59,130,246,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-result-icon {
    font-size: 1.7rem; /* Tamanho normal para desktop */
    color: #22d3ee;
    margin-bottom: 0.5rem; /* Tamanho normal para desktop */
    filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.25));
}

.about-result-number {
    font-size: 1.5rem; /* Tamanho normal para desktop */
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.2rem; /* Tamanho normal para desktop */
    letter-spacing: -1px;
}

.about-result-label {
    font-size: 0.95rem; /* Tamanho normal para desktop */
    color: var(--text-light);
    font-weight: 500;
}

/* =================================
   CONTACT SECTION - TAMANHOS NORMAIS PARA DESKTOP
   ================================= */
.contact {
    padding: var(--section-padding);
    background: rgba(12, 21, 39, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem; /* Tamanho normal para desktop */
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.contact-info-card h4 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-info-card h4 i {
    color: #22d3ee;
    filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.5));
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem; /* Tamanho normal para desktop */
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.contact-method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.2) 0%, 
        rgba(16, 185, 129, 0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.contact-method-icon i {
    font-size: 1.8rem;
    color: #22d3ee;
    filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.5));
}

.contact-method-content h5 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.contact-method-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.contact-method-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 25%, #0891b2 60%, #059669 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.contact-method-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

/* =================================
   CONTACT SECTION - LAYOUT CENTRALIZADO
   ================================= */
.contact {
    padding: var(--section-padding);
    background: rgba(12, 21, 39, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.contact-content-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 700px;
}

.contact-info-card h4 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-info-card h4 i {
    color: #22d3ee;
    filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.5));
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-method {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.contact-method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.2) 0%, 
        rgba(16, 185, 129, 0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.contact-method-icon i {
    font-size: 1.8rem;
    color: #22d3ee;
    filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.5));
}

.contact-method-content h5 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.contact-method-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.contact-method-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 25%, #0891b2 60%, #059669 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.contact-method-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

/* =================================
   FOOTER - ESTILIZAÇÃO COMPLETA
   ================================= */
.footer {
    background: linear-gradient(135deg, 
        rgba(12, 21, 39, 0.95) 0%, 
        rgba(23, 34, 57, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    padding: 4rem 0 0;
    margin-top: auto;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 400px;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: rgba(34, 211, 238, 0.15);
    border-color: #22d3ee;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 211, 238, 0.3);
}

.social-links a i {
    font-size: 1.25rem;
    filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.5));
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: #22d3ee;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: #22d3ee;
    font-size: 1.25rem;
    margin-top: 0.25rem;
    filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.5));
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    color: var(--text-light);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-info a,
.contact-info span {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #22d3ee;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

.footer-bottom {
    background: rgba(12, 21, 39, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-copyright p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin: 0;
}

.footer-subtitle {
    color: var(--text-light);
    font-size: 0.8rem;
    font-style: italic;
}

/* =================================
   FOOTER RESPONSIVO
   ================================= */

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
    }
    
    .social-links a i {
        font-size: 1.1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Resetar zoom em mobile */
    html {
        zoom: 1 !important;
        font-size: 16px;
        background: var(--primary-dark) !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    body {
        background: var(--primary-dark) !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
    }
    
    /* MANTER FUNDO ANIMADO IGUAL AO DESKTOP */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -3;
        background: 
            radial-gradient(circle at 15% 25%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 85% 75%, rgba(16, 185, 129, 0.25) 0%, transparent 55%),
            radial-gradient(circle at 50% 10%, rgba(139, 92, 246, 0.2) 0%, transparent 60%),
            radial-gradient(circle at 90% 40%, rgba(6, 182, 212, 0.2) 0%, transparent 45%),
            radial-gradient(circle at 10% 80%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 70% 30%, rgba(236, 72, 153, 0.1) 0%, transparent 40%),
            radial-gradient(circle at 30% 60%, rgba(139, 69, 19, 0.08) 0%, transparent 35%);
    }

    /* MANTER PONTOS FLUTUANTES MAIS DETALHADOS */
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -2;
        background-image: 
            radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.8) 3px, transparent 3px),
            radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.7) 2px, transparent 2px),
            radial-gradient(circle at 60% 40%, rgba(139, 92, 246, 0.6) 2px, transparent 2px),
            radial-gradient(circle at 90% 20%, rgba(6, 182, 212, 0.7) 2px, transparent 2px),
            radial-gradient(circle at 30% 80%, rgba(251, 191, 36, 0.5) 2px, transparent 2px),
            radial-gradient(circle at 70% 15%, rgba(236, 72, 153, 0.6) 1px, transparent 1px),
            radial-gradient(circle at 25% 50%, rgba(99, 102, 241, 0.5) 1px, transparent 1px),
            radial-gradient(circle at 85% 85%, rgba(34, 197, 94, 0.4) 2px, transparent 2px),
            radial-gradient(circle at 45% 90%, rgba(168, 85, 247, 0.5) 1px, transparent 1px),
            radial-gradient(circle at 15% 15%, rgba(14, 165, 233, 0.6) 1px, transparent 1px);
        background-size: 
            300px 300px, 
            250px 250px, 
            200px 200px, 
            280px 280px, 
            220px 220px,
            180px 180px,
            160px 160px,
            240px 240px,
            190px 190px,
            170px 170px;
        animation: float 30s ease-in-out infinite;
    }
    
    /* Garantir que header está correto */
    .header {
        top: 0 !important;
        margin-top: 0 !important;
        border-top: none !important;
        position: fixed !important;
        background: rgba(12, 21, 39, 0.95) !important;
    }
    
    /* Navigation */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(12, 21, 39, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
        padding: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo h2 {
        font-size: 1rem;
    }

    .nav-link {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--white);
        padding: 0.8rem 1.5rem;
        border-radius: 8px;
        width: 100%;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
    }

    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    /* Hero - DESIGN IGUAL AO DESKTOP MAS ADAPTADO */
    .hero {
        min-height: 100vh;
        padding: 0;
        background: transparent !important;
        position: relative;
    }

    .hero-container {
        padding: 4rem 1.5rem 2rem;
        min-height: 100vh;
        justify-content: center;
        max-width: 380px;
        margin: 0 auto;
        background: rgba(12, 21, 39, 0.1);
        backdrop-filter: blur(5px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        margin-top: 2rem;
    }

    /* MANTER BRAND ICON SECTION MAIS DESTACADA */
    .brand-icon-section {
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 1.2rem;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        margin-bottom: 2rem;
        backdrop-filter: blur(15px);
        border: 1px solid rgba(59, 130, 246, 0.3);
        box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2);
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Chronos icon mais visível */
    .chronos-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, 
            rgba(59, 130, 246, 0.3) 0%, 
            rgba(16, 185, 129, 0.3) 100%);
        border: 1px solid rgba(59, 130, 246, 0.4);
        box-shadow: 0 6px 24px rgba(59, 130, 246, 0.3);
    }

    .chronos-icon i {
        font-size: 1.5rem;
        filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.7));
    }
    
    /* Título centralizado */
    .hero-title-section {
        margin-bottom: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    /* Card central - NÃO OCUPAR TELA TODA E ESPAÇAMENTO CORRIGIDO */
    .hero-stats {
        flex-direction: row;
        gap: 0.5rem; /* Reduzir gap */
        padding: 1.2rem 0.8rem; /* Ajustar padding */
        margin: 2rem auto;
        justify-content: space-between;
        align-items: center;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(20px);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        max-width: 340px; /* Aumentar largura */
        width: 100%;
    }

    .stat-item {
        flex: 1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.3rem; /* Reduzir gap */
        min-width: 0;
        padding: 0 0.2rem; /* Adicionar padding */
    }

    .stat-divider {
        display: block;
        width: 1px;
        height: 35px; /* Reduzir altura */
        background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
        flex-shrink: 0;
        margin: 0 0.2rem; /* Adicionar margem */
    }

    .stat-icon {
        width: 28px; /* Reduzir tamanho */
        height: 28px;
        margin: 0;
        border-radius: 8px;
    }

    .stat-icon i {
        font-size: 0.8rem; /* Reduzir ícone */
    }

    .stat-number {
        font-size: 1rem;
        line-height: 1.1;
        font-weight: 700;
        display: none; /* Manter escondido */
    }

    .stat-label {
        font-size: 0.65rem; /* Texto menor */
        line-height: 1.1;
        color: var(--text-light);
        font-weight: 500;
        text-align: center;
        white-space: normal; /* Permitir quebra */
        overflow: visible;
        text-overflow: clip;
        max-width: 100%;
        word-break: break-word; /* Quebrar palavras */
        hyphens: auto;
        padding: 0 0.1rem;
        max-height: 2.5rem; /* Limitar altura */
        overflow: hidden;
    }
    
    /* Botões - NÃO OCUPAR TELA TODA */
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        margin: 2rem auto;
        width: 100%;
        max-width: 320px; /* Limitar largura dos botões */
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 12px;
        min-width: auto;
        justify-content: center;
        max-width: 320px; /* Limitar largura máxima */
    }

    .btn-hero-primary {
        background: linear-gradient(135deg, #1e40af 0%, #3b82f6 25%, #0891b2 60%, #059669 100%);
    }

    .btn-hero-secondary {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    /* Services - Cards empilhados */
    .services {
        padding: 3rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem 1.2rem;
        min-height: auto;
        margin-bottom: 0.5rem;
    }

    .service-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon i {
        font-size: 1.2rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 0.8rem;
    }

    .service-description {
        text-align: center;
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.5;
    }

    .service-features {
        margin-bottom: 1.2rem;
    }

    .feature-item {
        justify-content: center;
        text-align: center;
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        gap: 0.5rem;
    }

    .feature-item i {
        font-size: 0.8rem;
    }

    .btn-service {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    /* About - Cards menores */
    .about-results-cards {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-result-card {
        min-width: 100px;
        max-width: 120px;
        padding: 1rem 0.8rem;
    }

    .about-result-icon {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .about-result-number {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }

    .about-result-label {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    /* Contact - Layout simplificado */
    .contact-content-centered {
        padding: 0 1rem;
    }

    .contact-info-card {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-method {
        padding: 1.5rem;
        text-align: center;
    }

    .contact-method-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
    }

    .contact-method-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    /* Footer - Simplificado */
    .footer {
        padding: 2.5rem 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .footer-logo h3 {
        font-size: 1.2rem;
    }

    .footer-description {
        font-size: 0.9rem;
        max-width: none;
    }

    .social-links {
        justify-content: center;
        gap: 1.5rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-links {
        gap: 0.5rem;
    }

    .footer-links a {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }

    .footer-contact {
        gap: 1rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }

    .contact-item i {
        margin-top: 0;
    }

    .footer-bottom {
        padding: 1.5rem 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .footer-copyright {
        align-items: center;
    }

    .footer-copyright p {
        font-size: 0.8rem;
    }

    .footer-subtitle {
        font-size: 0.7rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 0;
    }
    
    .footer-content {
        gap: 1rem;
        grid-template-columns: 1fr 1fr; /* Mantém 2 colunas */
    }
    
    .footer-brand {
        margin-bottom: 0.5rem;
    }
    
    .footer-logo h3 {
        font-size: 1rem;
    }
    
    .footer-description {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
    }
    
    .social-links a i {
        font-size: 0.8rem;
    }

    .footer-section h4 {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-links a {
        font-size: 0.75rem;
    }
    
    .contact-item {
        gap: 0.4rem;
    }
    
    .contact-item i {
        font-size: 0.9rem;
    }
    
    .contact-info a,
    .contact-info span {
        font-size: 0.75rem;
    }

    .contact-label {
        font-size: 0.65rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-container {
        padding: 4rem 1rem 2rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: 1.2rem;
        justify-content: center;
    }

    .stat-divider {
        display: block;
        height: 35px;
    }

    .stat-item {
        flex-direction: column;
        min-width: 120px;
    }

    .btn-hero_primary,
    .btn-hero-secondary {
        width: auto;
        flex: 1;
    }
}

/* Mobile - Footer mais compacto */
@media (max-width: 768px) {
    /* Footer - Layout mais compacto com itens lado a lado */
    .footer {
        padding: 2rem 0 0;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 colunas no mobile */
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    /* Brand section ocupa as 2 colunas */
    .footer-brand {
        grid-column: 1 / -1; /* Ocupa toda a largura */
        margin-bottom: 1rem;
    }

    .footer-logo h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .footer-description {
        font-size: 0.85rem;
        max-width: none;
        margin: 0 auto 1rem;
        line-height: 1.4;
    }

    .social-links {
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
    }

    .social-links a i {
        font-size: 0.9rem;
    }

    /* Navegação e Contato lado a lado */
    .footer-section {
        text-align: center;
    }

    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .footer-links {
        gap: 0.3rem;
    }

    .footer-links a {
        font-size: 0.8rem;
        padding: 0.3rem 0;
    }

    .footer-contact {
        gap: 0.8rem;
    }

    .contact-item {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 0.5rem;
    }

    .contact-item i {
        margin-top: 0;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .contact-info {
        text-align: left;
    }

    .contact-label {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
    }

    .contact-info a,
    .contact-info span {
        font-size: 0.8rem;
        line-height: 1.2;
    }

    .footer-bottom {
        padding: 1rem 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .footer-copyright {
        align-items: center;
    }

    .footer-copyright p {
        font-size: 0.75rem;
    }

    .footer-subtitle {
        font-size: 0.65rem;
    }
}

/* Extra Small Mobile - Layout ainda mais compacto */
@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 0 0;
    }
    
    .footer-content {
        gap: 1rem;
        grid-template-columns: 1fr 1fr; /* Mantém 2 colunas */
    }
    
    .footer-brand {
        margin-bottom: 0.5rem;
    }
    
    .footer-logo h3 {
        font-size: 1rem;
    }
    
    .footer-description {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
    }
    
    .social-links a i {
        font-size: 0.8rem;
    }

    .footer-section h4 {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-links a {
        font-size: 0.75rem;
    }
    
    .contact-item {
        gap: 0.4rem;
    }
    
    .contact-item i {
        font-size: 0.9rem;
    }
    
    .contact-info a,
    .contact-info span {
        font-size: 0.75rem;
    }

    .contact-label {
        font-size: 0.65rem;
    }
}