/* =====================================================
   AGLEILSON RODRIGUES - ESTRATEGISTA EMPRESARIAL
   MODERN EXECUTIVE DESIGN
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
    /* Dark Theme - Professional Blue Palette */
    --bg-primary: #0a0e1a;
    --bg-secondary: #0f1420;
    --bg-elevated: #141825;
    --bg-card: #1a1f2e;
    
    /* Blue Accents */
    --blue-primary: #3b82f6;
    --blue-light: #60a5fa;
    --blue-dark: #2563eb;
    --cyan: #06b6d4;
    --cyan-light: #22d3ee;
    
    /* Orange/Gold Accent */
    --orange-primary: #f97316;
    --orange-light: #fb923c;
    --gold: #fbbf24;
    
    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-disabled: #64748b;
    
    /* Borders */
    --border-subtle: rgba(148, 163, 184, 0.1);
    --border-medium: rgba(148, 163, 184, 0.2);
    --border-strong: rgba(59, 130, 246, 0.3);
    
    /* Accent */
    --accent: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.4);
    
    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --container-max: 1280px;
    --section-padding: 100px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* =====================================================
   NAVIGATION
   ===================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blue-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: -4px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-primary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

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

.nav-cta {
    background: var(--blue-primary);
    color: var(--text-primary) !important;
    padding: 0.65rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* =====================================================
   HERO SPLIT SECTION
   ===================================================== */

.hero-split {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 45% 55%;
    margin-top: 80px;
}

.hero-image-side {
    position: relative;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 1;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: grayscale(10%);
    opacity: 1;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.5) 0%, rgba(59, 130, 246, 0.15) 100%);
}

.hero-stats {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    display: flex;
    gap: 1rem;
    z-index: 10;
    flex-wrap: nowrap;
}

.stat-item {
    background: rgba(26, 31, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-medium);
    flex: 1;
    min-width: 0;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--blue-primary);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.813rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.3;
}

.hero-content-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background: var(--bg-primary);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    width: fit-content;
    margin-bottom: 2rem;
}

.hero-badge svg {
    color: var(--blue-light);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.highlight {
    color: var(--blue-light);
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-pillars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.pillar svg {
    color: var(--blue-primary);
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--blue-primary);
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid var(--blue-primary);
}

.btn-primary:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-primary svg {
    transition: var(--transition);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid var(--border-medium);
}

.btn-secondary:hover {
    border-color: var(--blue-primary);
    background: var(--bg-card);
}

/* =====================================================
   SECTION HEADERS
   ===================================================== */

.section-intro {
    margin-bottom: 4rem;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--blue-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    line-height: 1.8;
}

.section-intro.center .section-desc {
    margin: 0 auto;
}

/* =====================================================
   EXPERTISE SECTION
   ===================================================== */

.expertise {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.expertise-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

.expertise-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--border-strong);
    background: rgba(26, 31, 46, 0.8);
}

.card-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: #60a5fa !important;
    line-height: 1;
    margin-bottom: 1rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--blue-primary);
}

.expertise-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.expertise-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.expertise-list {
    list-style: none;
}

.expertise-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.65rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.expertise-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--blue-light);
    font-weight: 700;
}

/* =====================================================
   PROCESS TIMELINE
   ===================================================== */

.process {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.process .section-tag {
    color: var(--blue-light);
}

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

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: var(--transition);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: var(--blue-primary);
    border: 4px solid var(--bg-card);
    border-radius: 50%;
    flex-shrink: 0;
}

.marker-line {
    width: 2px;
    flex-grow: 1;
    background: var(--bg-card);
    margin-top: 1rem;
}

.timeline-item:last-child .marker-line {
    display: none;
}

.timeline-content {
    padding-bottom: 1rem;
}

.timeline-number {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--blue-light);
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* =====================================================
   SERVICES ECOSYSTEM SECTION
   ===================================================== */

.services-ecosystem {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.ecosystem-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 800px;
    margin: 4rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9);
    transition: var(--transition);
}

.ecosystem-wrapper.visible {
    opacity: 1;
    transform: scale(1);
}

.ecosystem-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.ecosystem-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--blue-primary), var(--cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
    border: 3px solid var(--bg-secondary);
}

.ecosystem-center h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.ecosystem-center span {
    display: block;
    font-size: 1.75rem;
}

.ecosystem-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.25rem;
    text-decoration: none;
    transition: var(--transition);
    z-index: 5;
}

.ecosystem-item.featured {
    width: 160px;
    height: 160px;
    border-width: 3px;
    border-color: var(--blue-primary);
    background: var(--bg-elevated);
}

/* Posicionamento circular dos items */
.ecosystem-item[style*="--position: 1"] {
    transform: translate(-50%, -50%) translate(0, -320px);
}

.ecosystem-item[style*="--position: 2"] {
    transform: translate(-50%, -50%) translate(0, 320px);
}

.ecosystem-item[style*="--position: 3"] {
    transform: translate(-50%, -50%) translate(280px, -190px);
}

.ecosystem-item[style*="--position: 4"] {
    transform: translate(-50%, -50%) translate(280px, 190px);
}

.ecosystem-item[style*="--position: 5"] {
    transform: translate(-50%, -50%) translate(-280px, -190px);
}

.ecosystem-item[style*="--position: 6"] {
    transform: translate(-50%, -50%) translate(-280px, 190px);
}

.ecosystem-item[style*="--position: 7"] {
    transform: translate(-50%, -50%) translate(190px, 0);
}

.ecosystem-item[style*="--position: 8"] {
    transform: translate(-50%, -50%) translate(-190px, 0);
}

.ecosystem-item:hover {
    border-color: var(--blue-primary);
    background: var(--bg-elevated);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
    transform: translate(-50%, -50%) translate(var(--tx, 0), var(--ty, 0)) scale(1.1);
}

.ecosystem-item[style*="--position: 1"]:hover {
    --tx: 0;
    --ty: -320px;
}

.ecosystem-item[style*="--position: 2"]:hover {
    --tx: 0;
    --ty: 320px;
}

.ecosystem-item[style*="--position: 3"]:hover {
    --tx: 280px;
    --ty: -190px;
}

.ecosystem-item[style*="--position: 4"]:hover {
    --tx: 280px;
    --ty: 190px;
}

.ecosystem-item[style*="--position: 5"]:hover {
    --tx: -280px;
    --ty: -190px;
}

.ecosystem-item[style*="--position: 6"]:hover {
    --tx: -280px;
    --ty: 190px;
}

.ecosystem-item[style*="--position: 7"]:hover {
    --tx: 190px;
    --ty: 0;
}

.ecosystem-item[style*="--position: 8"]:hover {
    --tx: -190px;
    --ty: 0;
}

.ecosystem-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: var(--blue-primary);
    transition: var(--transition);
}

.ecosystem-item.featured .ecosystem-icon {
    width: 60px;
    height: 60px;
}

.ecosystem-item:hover .ecosystem-icon {
    background: var(--blue-primary);
    color: var(--text-primary);
    border-color: var(--blue-primary);
    transform: rotate(15deg) scale(1.1);
}

.ecosystem-item h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.ecosystem-item.featured h4 {
    font-size: 1.1rem;
}

.ecosystem-item p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.ecosystem-item.featured p {
    font-size: 0.8rem;
}

/* =====================================================
   CTA SECTION
   ===================================================== */

.cta-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.cta-content {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 5rem 4rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    opacity: 0;
    transform: scale(0.95);
    transition: var(--transition);
}

.cta-content.visible {
    opacity: 1;
    transform: scale(1);
}

.cta-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-text p {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-cta-primary {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--blue-primary);
    color: var(--text-primary);
    padding: 1.25rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-cta-primary:hover {
    background: var(--blue-dark);
    transform: translateX(8px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-cta-primary svg {
    flex-shrink: 0;
    color: var(--cyan-light);
}

.btn-label {
    font-weight: 700;
    font-size: 1.125rem;
    display: block;
    line-height: 1.2;
}

.btn-sublabel {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: block;
}

.btn-cta-secondary {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid var(--border-medium);
    transition: var(--transition);
    font-weight: 600;
}

.btn-cta-secondary:hover {
    border-color: var(--blue-primary);
    background: var(--bg-elevated);
}

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

.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--blue-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.footer-cta p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.footer-btn {
    display: inline-block;
    background: var(--blue-primary);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-btn:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-credits {
    display: flex;
    gap: 2rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */

[data-scroll] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-scroll].visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-split {
        grid-template-columns: 1fr;
    }
    
    .hero-image-side {
        min-height: 60vh;
    }
    
    .hero-content-side {
        padding: 3rem 2rem;
    }
    
    .hero-stats {
        bottom: 30px;
        left: 30px;
        right: 30px;
        gap: 0.75rem;
    }
    
    .stat-item {
        padding: 1rem 1.25rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .ecosystem-wrapper {
        height: 700px;
        max-width: 700px;
    }
    
    .ecosystem-center {
        width: 160px;
        height: 160px;
    }
    
    .ecosystem-center h3 {
        font-size: 1.25rem;
    }
    
    .ecosystem-center span {
        font-size: 1.5rem;
    }
    
    .ecosystem-item {
        width: 120px;
        height: 120px;
        padding: 1rem;
    }
    
    .ecosystem-item.featured {
        width: 140px;
        height: 140px;
    }
    
    /* Ajuste de posições para tablet */
    .ecosystem-item[style*="--position: 1"] {
        transform: translate(-50%, -50%) translate(0, -280px);
    }
    
    .ecosystem-item[style*="--position: 2"] {
        transform: translate(-50%, -50%) translate(0, 280px);
    }
    
    .ecosystem-item[style*="--position: 3"] {
        transform: translate(-50%, -50%) translate(240px, -165px);
    }
    
    .ecosystem-item[style*="--position: 4"] {
        transform: translate(-50%, -50%) translate(240px, 165px);
    }
    
    .ecosystem-item[style*="--position: 5"] {
        transform: translate(-50%, -50%) translate(-240px, -165px);
    }
    
    .ecosystem-item[style*="--position: 6"] {
        transform: translate(-50%, -50%) translate(-240px, 165px);
    }
    
    .ecosystem-item[style*="--position: 7"] {
        transform: translate(-50%, -50%) translate(165px, 0);
    }
    
    .ecosystem-item[style*="--position: 8"] {
        transform: translate(-50%, -50%) translate(-165px, 0);
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 0.5rem;
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
    
    .stat-item {
        padding: 0.875rem 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.688rem;
    }
    
    .process-timeline {
        padding: 1rem 0;
    }
    
    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
    }
    
    .ecosystem-wrapper {
        height: 600px;
        max-width: 100%;
        margin: 3rem auto 0;
    }
    
    .ecosystem-center {
        width: 120px;
        height: 120px;
    }
    
    .ecosystem-center h3 {
        font-size: 1rem;
    }
    
    .ecosystem-center span {
        font-size: 1.15rem;
    }
    
    .ecosystem-item {
        width: 90px;
        height: 90px;
        padding: 0.75rem;
    }
    
    .ecosystem-item.featured {
        width: 110px;
        height: 110px;
    }
    
    .ecosystem-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 0.5rem;
    }
    
    .ecosystem-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .ecosystem-item.featured .ecosystem-icon {
        width: 40px;
        height: 40px;
    }
    
    .ecosystem-item h4 {
        font-size: 0.75rem;
    }
    
    .ecosystem-item p {
        font-size: 0.65rem;
    }
    
    .ecosystem-item.featured h4 {
        font-size: 0.85rem;
    }
    
    .ecosystem-item.featured p {
        font-size: 0.7rem;
    }
    
    /* Posições mobile - círculo menor */
    .ecosystem-item[style*="--position: 1"] {
        transform: translate(-50%, -50%) translate(0, -220px);
    }
    
    .ecosystem-item[style*="--position: 2"] {
        transform: translate(-50%, -50%) translate(0, 220px);
    }
    
    .ecosystem-item[style*="--position: 3"] {
        transform: translate(-50%, -50%) translate(190px, -130px);
    }
    
    .ecosystem-item[style*="--position: 4"] {
        transform: translate(-50%, -50%) translate(190px, 130px);
    }
    
    .ecosystem-item[style*="--position: 5"] {
        transform: translate(-50%, -50%) translate(-190px, -130px);
    }
    
    .ecosystem-item[style*="--position: 6"] {
        transform: translate(-50%, -50%) translate(-190px, 130px);
    }
    
    .ecosystem-item[style*="--position: 7"] {
        transform: translate(-50%, -50%) translate(130px, 0);
    }
    
    .ecosystem-item[style*="--position: 8"] {
        transform: translate(-50%, -50%) translate(-130px, 0);
    }
    
    .ecosystem-lines circle {
        r: 220px;
    }
    
    .ecosystem-lines circle:last-child {
        r: 150px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 0 1.25rem;
    }
    
    .hero-content-side {
        padding: 2rem 1.25rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .cta-content {
        padding: 2rem 1.5rem;
    }
}
