/* Reset e Configurações Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variáveis CSS - Design System Vendramini Informática */
:root {
    /* Cores Principais */
    --background: hsl(220, 13%, 9%);
    --foreground: hsl(180, 100%, 90%);
    --card: hsl(220, 13%, 12%);
    --card-foreground: hsl(180, 100%, 90%);
    --primary: hsl(180, 100%, 50%);
    --primary-foreground: hsl(220, 13%, 9%);
    --secondary: hsl(220, 13%, 15%);
    --secondary-foreground: hsl(180, 100%, 90%);
    --muted: hsl(220, 13%, 15%);
    --muted-foreground: hsl(180, 20%, 65%);
    --accent: hsl(120, 100%, 50%);
    --accent-foreground: hsl(220, 13%, 9%);
    --destructive: hsl(0, 84.2%, 60.2%);
    --destructive-foreground: hsl(210, 40%, 98%);
    --border: hsl(220, 13%, 20%);
    --input: hsl(220, 13%, 15%);
    --ring: hsl(180, 100%, 50%);

    /* Cores Customizadas Vendramini */
    --primary-cyan: hsl(180, 100%, 50%);
    --primary-green: hsl(120, 100%, 50%);
    --dark-bg: hsl(220, 13%, 9%);
    --darker-bg: hsl(220, 13%, 6%);
    --card-bg: hsl(220, 13%, 12%);
    --text-primary: hsl(180, 100%, 90%);
    --text-secondary: hsl(180, 20%, 65%);

    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary-cyan), var(--primary-green));
    --gradient-hero: linear-gradient(135deg, hsl(var(--primary-cyan) / 0.1), hsl(var(--primary-green) / 0.1));
    --gradient-card: linear-gradient(135deg, var(--card-bg), var(--darker-bg));
    --gradient-background: linear-gradient(135deg, hsl(var(--primary-cyan) / 0.15), hsl(var(--primary-green) / 0.15));

    /* Sombras */
    --shadow-cyan: 0 0 30px hsl(var(--primary-cyan) / 0.3);
    --shadow-green: 0 0 30px hsl(var(--primary-green) / 0.3);
    --shadow-elegant: 0 10px 40px -10px hsl(var(--primary-cyan) / 0.2);

    /* Animações */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Bordas */
    --radius: 0.75rem;
}

/* Estilos Globais */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--background);
    background-image: var(--gradient-background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utilitários */
.hidden {
    display: none !important;
}

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

.text-white {
    color: white;
}

/* Botões */
.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-cyan);
}

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

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: hsl(var(--background) / 0.95);
    backdrop-filter: blur(10px);
    z-index: 50;
    border-bottom: 1px solid var(--border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.logo-text h2 {
    font-size: 1.25rem;
    font-weight: bold;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin: 0;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.nav-desktop button {
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.nav-desktop button:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--foreground);
}

.nav-mobile {
    display: block;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.nav-mobile button {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--foreground);
    padding: 0.5rem 0;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.nav-mobile button:hover {
    color: var(--primary);
}

.nav-mobile .btn-outline {
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
    padding-bottom: 3rem;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 0.5;
}

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

.hero h1 {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: var(--muted-foreground);
    margin-bottom: 3rem;
    line-height: 1.5;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: hsl(var(--card) / 0.5);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    font-size: 0.875rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--background);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0 auto;
}

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

.service-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition-smooth);
}

.service-card:hover {
    box-shadow: var(--shadow-elegant);
    transform: translateY(-4px) scale(1.02);
}

.service-icon {
    margin-bottom: 1rem;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.service-card p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--muted-foreground);
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* VendraX Section */
.vendrax {
    padding: 5rem 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.vendrax-background {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.vendrax-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.vendrax-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.vendrax-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
}

.vendrax-header h2 {
    font-size: clamp(2.5rem, 6vw, 6rem);
    font-weight: bold;
    margin: 0;
}

.vendrax-header p {
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.vendrax-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.vendrax-badges .badge {
    background: hsl(var(--primary) / 0.2);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.vendrax-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: hsl(var(--card) / 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    box-shadow: var(--shadow-elegant);
    transform: translateY(-4px) scale(1.02);
}

.feature-icon {
    margin: 0 auto 1rem;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.feature-card p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.5;
}

.vendrax-cta {
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-card {
    background: hsl(var(--card) / 0.5);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 64rem;
    margin: 0 auto;
    border: 1px solid var(--border);
}

.cta-card h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.cta-card p {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Projects Section */
.projects {
    padding: 5rem 0;
    background: var(--background);
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card:hover {
    box-shadow: var(--shadow-elegant);
    transform: translateY(-4px) scale(1.02);
}

.project-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 0;
}

.project-header h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--foreground);
    transition: var(--transition-smooth);
}

.project-card:hover .project-header h3 {
    color: var(--primary);
}

.project-language {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.language-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: currentColor;
}

.language-js {
    color: #f0db4f;
}

.language-html {
    color: #e34c26;
}

.project-content {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-content p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.project-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: hsl(var(--primary) / 0.1);
    color: var(--primary);
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
}

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

.project-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.project-buttons .btn-outline {
    flex: 1;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.project-buttons .btn-outline:hover {
    transform: translateY(-2px);
}

.projects-footer {
    text-align: center;
}

/* Portfolio Section */
.portfolio {
    padding: 5rem 0;
    background: var(--gradient-hero);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.portfolio-card {
    background: hsl(var(--card) / 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.portfolio-card:hover {
    box-shadow: var(--shadow-elegant);
    transform: translateY(-4px) scale(1.02);
}

.portfolio-image {
    position: relative;
    height: 13.5rem;
    overflow: hidden;
    flex-shrink: 0;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.08);
}

.portfolio-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: hsl(217.2, 91.2%, 59.8% / 0.2);
    color: hsl(217.2, 91.2%, 59.8%);
    padding: 0.25rem 0.6rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
}

.portfolio-status {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 0.25rem 0.75rem;
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.portfolio-status span {
    color: white;
    font-size: 0.75rem;
}

.portfolio-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.portfolio-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    min-height: 2.5rem;
}

.portfolio-header h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--foreground);
    transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-header h3 {
    color: var(--primary);
}

.portfolio-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.portfolio-content p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    margin-top: auto;
}

.portfolio-content .btn-outline {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.portfolio-cta {
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--background);
}

.contact-content {
    max-width: 32rem;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-header h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.contact-header p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

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

.contact-card {
    background: hsl(var(--card) / 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-card:hover {
    box-shadow: var(--shadow-elegant);
    transform: translateY(-4px) scale(1.02);
}

.contact-icon {
    color: var(--primary);
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

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

.contact-info h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.contact-info p {
    color: var(--muted-foreground);
    word-break: break-all;
    line-height: 1.5;
}

.contact-cta {
    text-align: center;
}

.contact-cta .cta-card {
    background: var(--gradient-hero);
    border: 1px solid var(--border);
}

.contact-cta .cta-card h4 {
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.contact-cta .cta-card p {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--card);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
}

.footer-company {
    grid-column: 1 / -1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    font-size: 1.25rem;
    font-weight: bold;
}

.footer-logo-text h3 {
    font-size: 1.25rem;
    font-weight: bold;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.footer-logo-text p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}

.footer-company p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 28rem;
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--secondary);
    border-radius: 0.5rem;
    color: var(--foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

.footer-links h4,
.footer-contact h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links button {
    background: none;
    border: none;
    color: var(--muted-foreground);
    cursor: pointer;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
    text-align: left;
    padding: 0;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

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

/* Responsividade */
@media (max-width: 767px) {
    .header-content {
        padding: 0.75rem 0;
    }

    .logo {
        gap: 0.5rem;
    }

    .logo-image {
        width: 2.25rem;
        height: 2.25rem;
    }

    .logo-text h2 {
        font-size: 1.05rem;
        white-space: nowrap;
    }

    .logo-text p {
        display: none;
    }

    .nav-mobile {
        max-height: calc(100vh - 75px);
        overflow-y: auto;
    }

    .hero {
        min-height: 100vh;
        padding-top: 6.5rem;
        padding-bottom: 3rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 8.5vw, 3.25rem);
        line-height: 1.15;
        margin-bottom: 1.25rem;
    }

    .hero p {
        font-size: clamp(1rem, 4vw, 1.25rem);
        margin-bottom: 2rem;
    }

    .hero-badges {
        margin-bottom: 2rem;
        gap: 0.5rem;
    }

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

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: clamp(1.85rem, 6.5vw, 2.75rem);
    }
}

@media (max-width: 380px) {
    .logo-text h2 {
        font-size: 0.95rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }

    .nav-desktop {
        display: flex;
    }

    .nav-mobile {
        display: none;
    }

    .services-grid,
    .vendrax-features,
    .projects-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-company {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {

    .services-grid,
    .vendrax-features {
        grid-template-columns: repeat(3, 1fr);
    }

    .projects-grid,
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-company {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-bottom-links {
        margin-top: 0;
    }
}

/* Animações adicionais */
.hero-buttons .btn-primary:hover svg {
    transform: translateX(4px);
}

.service-card:hover,
.feature-card:hover,
.project-card:hover,
.portfolio-card:hover,
.contact-card:hover {
    animation: bounce 0.5s ease-out;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Seleção de texto */
::selection {
    background: hsl(var(--primary) / 0.3);
    color: var(--foreground);
}

/* Focus styles para acessibilidade */
button:focus,
a:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Animação de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.feature-card,
.project-card,
.portfolio-card,
.contact-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Efeito Matrix */
#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

.matrix-letra,
.matrix-letra-simple {
    position: fixed;
    text-align: center;
    font-family: monospace;
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
    text-shadow: 0 0 5px #0F0;
    animation: matrixFade 2s ease-in-out infinite;
}

@keyframes matrixFade {

    0%,
    100% {
        opacity: 0.15;
    }

    50% {
        opacity: 0.25;
    }
}

/* Controles do Matrix (opcional) */
.matrix-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem;
    display: flex;
    gap: 0.5rem;
}

.matrix-controls button {
    background: var(--secondary);
    border: 1px solid var(--border);
    color: var(--foreground);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.matrix-controls button:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

.matrix-controls button.active {
    background: var(--primary);
    color: var(--primary-foreground);
}