﻿:root {

    --primary: #06b6d4;
    --primary-dark: #0891b2;
    --primary-light: #22d3ee;
    --secondary: #10b981;
    --accent: #f59e0b;


    --dark: #ffffff;
    --dark-2: #e2e8f0;
    --dark-3: #cbd5e1;
    --grey: #94a3b8;
    --grey-light: #64748b;
    --white: #0a0a0a;
    --background: #0f1419;
    --card-bg: rgba(20, 25, 35, 0.7);


    --gradient-primary: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);


    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;


    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;


    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);


    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);


    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}



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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: #0a0a0a;

}

body {
    font-family: var(--font-primary);
    color: var(--dark);
    background: transparent;

    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    color: var(--grey);
    line-height: 1.8;
}

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

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



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(79, 70, 229, 0.1) 100%);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.section-header h2 {
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}



.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #ffffff !important;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}



.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #0a0a0a;

    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition);
    box-shadow: 0 4px 30px rgba(6, 182, 212, 0.1);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(6, 182, 212, 0.2);
    background: #0a0a0a;

    border-bottom: 1px solid rgba(6, 182, 212, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--dark);
}

.logo-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
}

.logo-subtitle {
    font-size: 1.1rem;
    color: var(--grey);
    font-weight: 500;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-3);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

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

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsivo - Mobile Menu */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-left: 1px solid rgba(6, 182, 212, 0.3);
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 20px rgba(6, 182, 212, 0.2);
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.125rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    }

    .header-content .btn {
        display: none;
    }
}


.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
    z-index: 2;
    background: transparent;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;

    z-index: -1;
}

.matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.35;
    filter: blur(1px);
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(79, 70, 229, 0.1) 100%);
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
    margin-bottom: 60px;
}

.hero h1 {
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    color: var(--dark) !important;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--dark-2) !important;
    margin-bottom: var(--spacing-xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-2xl);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 600px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--grey);
    font-weight: 500;
}



.services {
    position: relative;
    background: transparent;

    overflow: hidden;
    z-index: 2;
}


.services-bg {
    display: none;
}

.services-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    padding: var(--spacing-lg);
    background: rgba(20, 25, 35, 0.6);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(6, 182, 212, 0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    will-change: transform;
}




.service-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    transition: all 0.4s ease;
}




.service-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}



/* Todos os cards com a mesma borda azul - sem efeitos especiais */

.service-card p {
    color: var(--grey);
    line-height: 1.6;
}

/* Responsivo - Service Cards Mobile */
@media (max-width: 768px) {
    .service-card {
        min-height: 180px;
        padding: var(--spacing-lg);
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
    }
}




.portfolio {
    background: transparent;
    position: relative;
    z-index: 2;
}

.portfolio .section-header p {
    color: #ffffff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    display: block;
    background: rgba(20, 25, 35, 0.6);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(6, 182, 212, 0.2);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    will-change: transform;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.3);
    border-color: rgba(6, 182, 212, 0.5);
}

.project-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

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

.project-overlay .btn:hover {
    transform: scale(1.05);
}

.project-content {
    padding: var(--spacing-md);
}

.project-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
}

.project-content h3 {
    margin-bottom: var(--spacing-sm);
}

.project-content p {
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-md);
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    padding: 0.25rem 0.75rem;
    background: var(--background);
    color: var(--grey);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
}



.tech-stack {
    background: var(--background);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.tech-item {
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.tech-item h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
}

.tech-item p {
    font-size: 0.875rem;
}



.pricing {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.pricing-header {
    text-align: center;
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--background);
    margin-bottom: var(--spacing-lg);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--grey);
    margin-right: 0.25rem;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    ---webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-description {
    font-size: 0.875rem;
    color: var(--grey);
}

.features-list {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.features-list li {
    padding: 0.75rem 0;
    color: var(--dark-3);
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--background);
}

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



.contact {
    background: transparent;
    position: relative;
    z-index: 2;
}

.contact .section-header p {
    color: #ffffff;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--spacing-xl);
}

.contact-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: rgba(20, 25, 35, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(6, 182, 212, 0.2);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    will-change: transform;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(6, 182, 212, 0.6);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.4);
}

.contact-card-email:hover {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
}

.contact-card-whatsapp {
    border-color: rgba(37, 211, 102, 0.3);
}

.contact-card-whatsapp::before {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, transparent 100%);
}

.contact-card-whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.7);
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.5);
}

.contact-card-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
}

.contact-card-email .contact-card-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(147, 51, 234, 0.2) 100%);
}

.contact-card-whatsapp .contact-card-icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-light);
}

.contact-card-email .contact-card-icon svg {
    color: #60a5fa;
}

.contact-card-whatsapp .contact-card-icon svg {
    color: #34d399;
}

.contact-card-content {
    flex: 1;
    min-width: 0;
}

.contact-card-content h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--grey);
    margin-bottom: 0.25rem;
}

.contact-card-content p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-card-arrow {
    font-size: 1.5rem;
    color: var(--primary-light);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-arrow {
    opacity: 1;
    transform: translateX(5px);
}

.contact-card-whatsapp .contact-card-arrow {
    color: #34d399;
}



.footer {
    background: transparent;
    color: var(--dark);
    padding: var(--spacing-sm) 0 var(--spacing-xs);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    position: relative;
    z-index: 2;
}

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

.footer-brand {
    max-width: 400px;
}

.footer-brand .logo {
    margin-bottom: var(--spacing-md);
}

.footer-brand .logo-name,
.footer-brand .logo-subtitle {
    color: var(--dark);
}

.footer-brand p {
    color: #ffffff;
}

.footer-links h4 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

.footer-links a {
    display: block;
    color: var(--grey);
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: var(--spacing-xs);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #ffffff;
    font-size: 0.875rem;
}



.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: whatsappPulse 3s ease-in-out infinite;
    will-change: transform;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
}

.whatsapp-float svg {
    width: 36px;
    height: 36px;
    fill: white !important;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

@keyframes whatsappPulse {

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

    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    }
}



@media (max-width: 992px) {


    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 200px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 20px 20px;
        gap: 12px;
        box-shadow: var(--shadow-2xl);
        transition: var(--transition);
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

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

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

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

    .header-content>.btn {
        display: none;
    }


    .hero-logo-bg {
        width: 600px;
        height: 600px;
        opacity: 0.2;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }


    .portfolio-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }


    .services-bg {
        width: 1000px;
        height: 1000px;
        opacity: 0.25;
    }
}

@media (max-width: 768px) {


    .container {
        padding: 0 var(--spacing-sm);
    }


    .header-content {
        padding: 0.25rem 0;
    }

    .logo-subtitle {
        font-size: 0.9rem;
    }


    .hero {
        min-height: auto;
        padding: 120px 0 var(--spacing-3xl);
    }

    .hero-badge {
        margin-bottom: 40px;
    }

    .hero-logo-bg {
        width: 500px;
        height: 500px;
        opacity: 0.15;
        filter: blur(3px);
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-sm);
    }

    .hero-stats {
        padding: var(--spacing-lg);
    }

    .stat-number {
        font-size: 1.75rem;
    }


    .btn-lg {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }


    .section-header p {
        font-size: 1rem;
        padding: 0 var(--spacing-sm);
    }


    .services-grid,
    .tech-grid,
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }


    .services-bg {
        width: 800px;
        height: 800px;
        opacity: 0.2;
    }

    .service-card {
        padding: var(--spacing-lg);
    }


    .project-image {
        height: 220px;
    }

    .project-content {
        padding: var(--spacing-md);
    }


    .contact-card {
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
        min-height: 100px;
    }

    .contact-card-icon {
        width: 56px;
        height: 56px;
    }

    .contact-card-icon svg {
        width: 28px;
        height: 28px;
    }

    .contact-card-content p {
        font-size: 1rem;
    }


    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .footer-brand {
        max-width: 100%;
    }


    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }


    .section {
        padding: var(--spacing-2xl) 0;
    }
}

@media (max-width: 576px) {


    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
        --spacing-3xl: 4rem;
        font-size: 15px;
    }


    .container {
        padding: 0 1rem;
    }


    h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    h3 {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }

    p {
        font-size: 0.9375rem;
    }


    .logo-name {
        font-size: 1.125rem;
    }

    .logo-subtitle {
        font-size: 0.875rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .nav {
        width: 180px;
        padding: 70px 18px 18px;
    }


    .hero {
        padding: 100px 0 var(--spacing-2xl);
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 30px;
    }

    .hero-logo-bg {
        width: 400px;
        height: 400px;
        opacity: 0.12;
        filter: blur(4px);
    }

    .hero-subtitle {
        font-size: 1.075rem;
        margin-bottom: var(--spacing-lg);
    }

    .hero-cta {
        margin-bottom: var(--spacing-xl);
    }

    .hero-stats {
        padding: var(--spacing-md);
        gap: var(--spacing-sm);
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8125rem;
    }


    .section {
        padding: 2.5rem 0;
    }

    .section-header {
        margin-bottom: var(--spacing-xl);
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .section-header h2 {
        margin-bottom: 0.75rem;
    }

    .section-header p {
        font-size: 0.9375rem;
    }


    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }


    .services-bg {
        width: 600px;
        height: 600px;
        opacity: 0.18;
        filter: blur(3px);
    }

    .services-grid {
        gap: var(--spacing-sm);
    }

    .service-card {
        padding: var(--spacing-md);
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .service-card p {
        font-size: 0.875rem;
    }


    .portfolio-grid {
        gap: var(--spacing-lg);
    }

    .project-image {
        height: 200px;
    }

    .project-content {
        padding: var(--spacing-sm);
    }

    .project-category {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }

    .project-content h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .project-content p {
        font-size: 0.875rem;
        margin-bottom: var(--spacing-sm);
    }

    .tech-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }


    .pricing-card {
        padding: var(--spacing-lg);
    }

    .pricing-header h3 {
        font-size: 1.25rem;
    }

    .amount {
        font-size: 3rem;
    }

    .currency {
        font-size: 1.25rem;
    }

    .features-list li {
        padding: 0.6rem 0;
        font-size: 0.875rem;
    }


    .contact-content {
        gap: var(--spacing-md);
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: var(--spacing-md);
        gap: var(--spacing-sm);
    }

    .contact-card-icon {
        width: 52px;
        height: 52px;
    }

    .contact-card-icon svg {
        width: 26px;
        height: 26px;
    }

    .contact-card-content h4 {
        font-size: 0.8125rem;
    }

    .contact-card-content p {
        font-size: 0.9375rem;
        white-space: normal;
        word-break: break-word;
    }

    .contact-card-arrow {
        font-size: 1.25rem;
    }


    .footer {
        padding: var(--spacing-xl) 0 var(--spacing-md);
    }

    .footer-content {
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-lg);
    }

    .footer-links h4 {
        font-size: 0.9375rem;
        margin-bottom: var(--spacing-sm);
    }

    .footer-links a {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    .footer-bottom p {
        font-size: 0.8125rem;
    }


    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 18px;
        right: 18px;
    }

    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}


@media (max-width: 400px) {
    :root {
        font-size: 14px;
    }

    .container {
        padding: 0 0.875rem;
    }

    .hero {
        padding: 90px 0 var(--spacing-xl);
    }

    .hero-logo-bg {
        width: 320px;
        height: 320px;
        opacity: 0.1;
    }

    .services-bg {
        width: 500px;
        height: 500px;
        opacity: 0.15;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

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

    .logo-subtitle {
        font-size: 0.8125rem;
    }

    .section {
        padding: 2rem 0;
    }

    .service-card,
    .contact-card,
    .pricing-card {
        padding: 1rem;
    }

    .project-image {
        height: 180px;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}


@media (max-width: 992px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 var(--spacing-xl);
    }

    .hero-logo-bg {
        width: 400px;
        height: 400px;
    }

    .services-bg {
        width: 700px;
        height: 700px;
    }

    .section {
        padding: var(--spacing-xl) 0;
    }
}


@media (hover: none) and (pointer: coarse) {


    .btn {
        min-height: 44px;
        padding: 0.75rem 1.5rem;
    }

    .nav-link {
        padding: 0.5rem 0;
    }

    .contact-card {
        min-height: 80px;
    }


    .service-card:hover,
    .project-card:hover,
    .contact-card:hover,
    .btn:hover {
        transform: none;
    }


    .service-card:active {
        transform: scale(0.98);
    }

    .project-card:active {
        transform: scale(0.98);
    }

    .contact-card:active {
        transform: scale(0.98);
    }

    .btn:active {
        transform: scale(0.95);
    }
}



.header {
    border-bottom: none !important;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4) !important;
}

.header.scrolled {
    box-shadow: 0 5px 20px rgba(6, 182, 212, 0.6) !important;
}

.footer {
    border-top: 3px solid #06b6d4 !important;
}

/* ============================================
   OTIMIZAÇÕES DE PERFORMANCE
   ============================================ */

/* Reduzir backdrop-filter em mobile (muito pesado) */
@media (max-width: 768px) {

    .service-card,
    .project-card,
    .contact-card {
        backdrop-filter: blur(5px);
    }

    .nav {
        backdrop-filter: blur(10px);
    }
}

/* Desabilitar animações para usuários que preferem movimento reduzido */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .matrix-canvas {
        display: none;
    }
}

/* Desabilitar canvas em telas pequenas (mobile) */
@media (max-width: 768px) {
    .matrix-canvas {
        display: none !important;
    }
}