/* Variáveis */
:root {
    /* Cores */
    --color-primary: #2563EB;
    --color-primary-dark: #1E40AF;
    --color-primary-light: #60A5FA;
    --color-secondary: #0F172A;
    --color-text: #1E293B;
    --color-text-light: #64748B;
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #94A3B8;
    --color-background: #030712;
    --color-white: #FFFFFF;
    --color-border: #1E293B;
    --color-glow: rgba(37, 99, 235, 0.5);
    --color-success: #46A66F;
    
    /* Aliases para compatibilidade */
    --primary: #2563EB;
    --primary-light: #60A5FA;
    --accent: #60A5FA;
    --success: #46A66F;
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    
    /* Tipografia */
    --font-family: 'Space Grotesk', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.5;
    
    /* Espaçamento */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* Bordas */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 1rem;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(37, 99, 235, 0.1);
    --shadow-md: 0 4px 6px rgba(37, 99, 235, 0.15);
    --shadow-lg: 0 8px 16px rgba(37, 99, 235, 0.2);
    --shadow-glow: 0 0 20px var(--color-glow);

    /* Transições */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset e Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: var(--line-height-base);
    color: var(--color-white);
    background-color: var(--color-background);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    cursor: none;
}

/* Cursor Personalizado */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s;
}

.cursor-follower {
    width: 24px;
    height: 24px;
    background: var(--color-glow);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.6s, background 0.3s;
}

/* Grid Background */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--color-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    z-index: -1;
}

/* Floating Tools */
.floating-tools {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.tool-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(37, 99, 235, 0.6);
    font-size: 18px;
    backdrop-filter: blur(10px);
    animation: floatTool 8s infinite ease-in-out;
    transition: all 0.3s ease;
}

.tool-icon[data-tool="figma"] {
    background: rgba(242, 78, 30, 0.1);
    border-color: rgba(242, 78, 30, 0.2);
    color: rgba(242, 78, 30, 0.6);
    animation-delay: 0s;
}

.tool-icon[data-tool="webflow"] {
    background: rgba(79, 62, 188, 0.1);
    border-color: rgba(79, 62, 188, 0.2);
    color: rgba(79, 62, 188, 0.6);
    animation-delay: 2s;
}

.tool-icon[data-tool="protopie"] {
    background: rgba(225, 48, 108, 0.1);
    border-color: rgba(225, 48, 108, 0.2);
    color: rgba(225, 48, 108, 0.6);
    animation-delay: 4s;
}

.tool-icon[data-tool="flutterflow"] {
    background: rgba(2, 132, 199, 0.1);
    border-color: rgba(2, 132, 199, 0.2);
    color: rgba(2, 132, 199, 0.6);
    animation-delay: 6s;
}

@keyframes floatTool {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-25px) rotate(-1deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-10px) rotate(1deg);
        opacity: 0.6;
    }
}

/* Responsividade dos ícones flutuantes */
@media (max-width: 1024px) {
    .tool-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .tool-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
        opacity: 0.3;
    }
    
    .floating-tools {
        opacity: 0.7;
    }
}

@media (max-width: 480px) {
    .tool-icon {
        display: none;
    }
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    position: relative;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
}

/* Seções Padrão */
section {
    padding: var(--spacing-2xl) 0;
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3rem 0;
    }
}

.section__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
}

@media (max-width: 768px) {
    .section__header {
        margin: 0 auto 3rem;
    }
}

@media (max-width: 480px) {
    .section__header {
        margin: 0 auto 2rem;
    }
}

.section__title {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

@media (max-width: 768px) {
    .section__title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .section__title {
        font-size: 1.75rem;
    }
}

.section__subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
}

@media (max-width: 768px) {
    .section__subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .section__subtitle {
        font-size: 1rem;
    }
}

.highlight-word {
    color: var(--color-primary-light);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.highlight-word::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-primary-light);
    transform: scaleX(0);
    animation: highlightExpand 0.8s ease-out 2s forwards;
}

@keyframes highlightExpand {
    to {
        transform: scaleX(1);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--color-border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nav__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo-image {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.nav__logo:hover .logo-image {
    opacity: 0.9;
    transform: scale(1.05);
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-white);
    position: relative;
    text-decoration: none;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
    display: none; /* Esconder logo texto */
}

.logo:hover {
    opacity: 0.9;
}

/* Menu */
.nav__menu {
    display: flex;
    gap: var(--spacing-xl);
    list-style: none;
}

.nav__link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: var(--spacing-xs) 0;
}

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

.nav__link:hover::after {
    width: 100%;
}

/* Botão de Contato */
.nav__link--contact {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav__link--contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 1rem;
    color: var(--color-white);
    transition: transform 0.3s ease;
}

.contact-text {
    position: relative;
    z-index: 1;
    color: var(--color-white);
    font-weight: 600;
    transition: transform 0.3s ease;
}

.nav__link--contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

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

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

.nav__link--contact:hover .contact-text {
    transform: translateX(3px);
}

.nav__link--contact:active {
    transform: translateY(0);
}

/* Hamburger Menu */
.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

/* Responsividade do Header */
@media (max-width: 1024px) {
    .nav__menu {
        gap: var(--spacing-lg);
    }
    
    .nav__link--contact .contact-text {
        display: none;
    }
    
    .nav__link--contact {
        padding: var(--spacing-sm);
        width: 40px;
        height: 40px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 0;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .nav__toggle {
        display: block;
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(3, 7, 18, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        gap: 2rem;
        transition: right 0.3s ease;
        border-left: 1px solid var(--color-border);
    }
    
    .nav__menu.active {
        right: 0;
    }
    
    .nav__link {
        font-size: 1.1rem;
        padding: 1rem 0;
        width: 100%;
        text-align: center;
    }
    
    .nav__link--contact {
        margin-top: 2rem;
        width: 200px;
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    .nav__link--contact .contact-text {
        display: block;
    }
    
    /* Hamburger Animation */
    .nav__toggle.active .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav__toggle.active .hamburger span:nth-child(2) {
        opacity: 0;
    }
    
    .nav__toggle.active .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.8rem 0;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .nav__menu {
        width: 100%;
        right: -100%;
    }
    
    .hamburger span {
        width: 20px;
    }
}

/* Hero - Versão Melhorada */
.hero {
    padding: calc(var(--spacing-2xl) * 2) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(3rem, 8vw, 6rem);
    align-items: center;
    max-width: 1400px;
    width: 100%;
}

.hero__content {
    max-width: 700px;
    z-index: 2;
    position: relative;
}

.hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 500px;
}

/* Hero Features Grid */
.hero__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 3vw, 2rem);
    margin: var(--spacing-2xl) 0;
    max-width: 600px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    color: var(--color-white);
    font-size: 1rem;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-3px);
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature i {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature span {
    line-height: 1.5;
    font-weight: 500;
}

/* CTA Buttons Grid */
.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
    align-items: center;
}

/* Cyber Sphere Melhorada */
.cyber-sphere {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sphere-container {
    position: relative;
    width: 280px;
    height: 280px;
}

.sphere {
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 30% 30%, 
        rgba(96, 165, 250, 0.8), 
        rgba(37, 99, 235, 0.6),
        rgba(30, 64, 175, 0.4)
    );
    border-radius: 50%;
    box-shadow: 
        0 0 60px rgba(37, 99, 235, 0.4),
        0 0 120px rgba(37, 99, 235, 0.2),
        inset 0 0 60px rgba(96, 165, 250, 0.3);
    animation: pulse 4s infinite ease-in-out;
    position: relative;
}

.sphere::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 25%;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    filter: blur(8px);
}

.sphere-rings {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 340px;
    height: 340px;
    border: 2px solid rgba(96, 165, 250, 0.3);
    border-radius: 50%;
    animation: rotate 15s linear infinite;
}

.sphere-rings::before,
.sphere-rings::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50%;
}

.sphere-rings::before {
    width: 300px;
    height: 300px;
    animation: rotate 10s linear infinite reverse;
}

.sphere-rings::after {
    width: 260px;
    height: 260px;
    animation: rotate 8s linear infinite;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.element {
    position: absolute;
    font-size: 1.8rem;
    color: rgba(96, 165, 250, 0.6);
    animation: float 4s infinite ease-in-out;
}

.element:nth-child(1) {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.element:nth-child(2) {
    bottom: 20%;
    left: 5%;
    animation-delay: 1.5s;
}

.element:nth-child(3) {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

/* Cyber Cards */
.cyber-card {
    position: relative;
    background: linear-gradient(45deg, var(--color-secondary), var(--color-background));
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.cyber-card__glows {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.glow-1,
.glow-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--color-primary);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.1;
    transition: var(--transition);
}

.glow-1 {
    top: -100px;
    left: -100px;
}

.glow-2 {
    bottom: -100px;
    right: -100px;
}

.cyber-card:hover {
    transform: translateY(-10px);
}

.cyber-card:hover .glow-1,
.cyber-card:hover .glow-2 {
    opacity: 0.2;
}

.cyber-card__content {
    position: relative;
    padding: var(--spacing-xl);
    z-index: 1;
}

.cyber-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--color-primary-dark), var(--color-primary));
    color: var(--color-white);
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-lg);
    font-size: 1.5rem;
    position: relative;
}

.cyber-card__icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--color-primary), transparent);
    border-radius: inherit;
    z-index: -1;
}

/* Tech Hexagons */
.tech-hexagon {
    position: relative;
    width: 100%;
    padding-top: 115%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(45deg, var(--color-secondary), var(--color-background));
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.tech-hexagon__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    text-align: center;
}

.tech-hexagon:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.tech-hexagon i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.tech-hexagon h3 {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.tech-hexagon p {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

/* Cyber Form */
.cyber-form {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(45deg, var(--color-secondary), var(--color-background));
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
}

.input__wrapper {
    position: relative;
    margin-top: var(--spacing-xs);
}

.input__wrapper input,
.input__wrapper textarea {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-md) calc(var(--spacing-md) * 2 + 1em);
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    color: var(--color-white);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
}

.input__wrapper textarea {
    height: 150px;
    resize: vertical;
}

.input__wrapper i {
    position: absolute;
    left: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary);
}

.input__line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.input__wrapper input:focus ~ .input__line,
.input__wrapper textarea:focus ~ .input__line {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--color-secondary);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    margin-top: auto;
    border-top: 1px solid var(--color-border);
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer__brand p {
    color: var(--color-text-light);
    margin-top: var(--spacing-md);
}

.footer-logo {
    height: 35px;
    width: auto;
    transition: var(--transition);
}

.footer-logo:hover {
    opacity: 0.9;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.footer__group h4 {
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
    font-size: 1.125rem;
}

.footer__group ul {
    list-style: none;
}

.footer__group ul li:not(:last-child) {
    margin-bottom: var(--spacing-md);
}

.footer__group a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer__group a:hover {
    color: var(--color-white);
}

.footer__social {
    display: flex;
    gap: var(--spacing-md);
}

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

.footer__social a:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
}

.footer__bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--color-text-light);
}

/* Responsividade do Footer */
@media (max-width: 1024px) {
    .footer__content {
        grid-template-columns: 1fr 1.5fr;
        gap: 2rem;
    }

    .footer__links {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 2rem;
    }

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

    .footer__brand {
        text-align: center;
    }

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

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

    .footer__group a {
        font-size: 0.9rem;
    }

    .footer__social {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer__social a {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1.5rem;
    }

    .footer__content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-logo {
        height: 30px;
    }

    .footer__links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer__group h4 {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .footer__group a {
        font-size: 0.85rem;
        justify-content: center;
    }

    .footer__group ul li:not(:last-child) {
        margin-bottom: 0.8rem;
    }

    .footer__social a {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .footer__bottom {
        font-size: 0.8rem;
        padding-top: 1rem;
    }
}

/* Animações */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 1200px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 5vw, 4rem);
        text-align: center;
        max-width: 900px;
    }

    .hero__content {
        order: 1;
        max-width: 100%;
    }

    .hero__visual {
        order: 2;
        height: 400px;
    }

    .hero__stats {
        justify-content: center;
        gap: var(--spacing-lg);
    }

    .hero__cta {
        justify-content: center;
    }

    .hero__features {
        max-width: 100%;
        margin: var(--spacing-xl) auto var(--spacing-2xl);
        justify-content: center;
    }

    .sphere-container {
        width: 240px;
        height: 240px;
    }

    .tech-orbits {
        width: 300px;
        height: 300px;
    }

    .orbit-1 {
        width: 250px;
        height: 250px;
    }

    .orbit-2 {
        width: 200px;
        height: 200px;
    }

    .orbit-3 {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: calc(var(--spacing-xl) * 1.5) 0;
        min-height: auto;
    }

    .hero .container {
        gap: var(--spacing-2xl);
    }

    .hero__badge {
        font-size: 0.8rem;
        padding: 0.8rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .hero__text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .hero__text::before {
        display: none;
    }

    .hero__stats {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: center;
        margin: 2rem 0;
    }

    .stat-item {
        width: 100%;
        max-width: 200px;
    }

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

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

    .hero__features {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        margin: var(--spacing-lg) auto;
    }

    .hero__visual {
        height: 300px;
    }

    .sphere-container {
        width: 200px;
        height: 200px;
    }

    .sphere-rings {
        top: -20px;
        left: -20px;
        width: 240px;
        height: 240px;
    }

    .sphere-pulse {
        top: -30px;
        left: -30px;
        width: 260px;
        height: 260px;
    }

    .floating-elements .element {
        font-size: 1.4rem;
    }

    .tech-orbits {
        width: 250px;
        height: 250px;
    }

    .orbit-1 {
        width: 200px;
        height: 200px;
    }

    .orbit-2 {
        width: 160px;
        height: 160px;
    }

    .orbit-3 {
        width: 120px;
        height: 120px;
    }

    .floating-orb {
        display: none;
    }
}

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

    .hero {
        padding: 6rem 0 4rem;
    }

    .hero .container {
        gap: 2rem;
    }

    .hero__badge {
        font-size: 0.75rem;
        padding: 0.6rem 1.2rem;
    }

    .hero__text {
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero__stats {
        margin: 1.5rem 0;
    }

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

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

    .hero__visual {
        height: 250px;
    }

    .sphere-container {
        width: 180px;
        height: 180px;
    }

    .tech-orbits {
        width: 200px;
        height: 200px;
    }

    .orbit-1 {
        width: 160px;
        height: 160px;
    }

    .orbit-2 {
        width: 130px;
        height: 130px;
    }

    .orbit-3 {
        width: 100px;
        height: 100px;
    }

    .section__title {
        font-size: 2rem;
    }

    .section__subtitle {
        font-size: 1rem;
    }
}

/* Botões */
.hero__cta {
    display: flex;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    overflow: hidden;
    background: transparent;
}

.button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--button-bg, linear-gradient(45deg, var(--color-primary), var(--color-primary-dark)));
    border-radius: inherit;
    transition: var(--transition);
}

.button__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    color: var(--button-color, var(--color-white));
}

.button i {
    font-size: 1.25em;
    transition: transform 0.3s ease;
}

.button:hover i {
    transform: translateX(4px);
}

.button--primary {
    --button-bg: linear-gradient(45deg, var(--color-primary), var(--color-primary-dark));
    --button-color: var(--color-white);
}

.button--primary:hover::before {
    opacity: 0.9;
    transform: scale(1.05);
}

.button--secondary {
    --button-bg: transparent;
    --button-color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.button--secondary::before {
    background: var(--color-primary);
    opacity: 0;
}

.button--secondary:hover::before {
    opacity: 1;
}

.button--secondary:hover .button__content {
    color: var(--color-white);
}

/* Responsividade dos botões */
@media (max-width: 768px) {
    .hero__cta {
        flex-direction: column;
        gap: var(--spacing-lg);
        align-items: stretch;
    }

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

/* Nichos - Nova versão */
.niches {
    background: var(--color-background);
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.niches::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0.3;
}

.niches__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.niche-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.niche-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.niche-item:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(37, 99, 235, 0.1);
}

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

.niche-item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-lg);
}

.niche-item__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
}

.niche-item__icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.niche-item:hover .niche-item__icon::after {
    opacity: 1;
}

.niche-item__icon i {
    font-size: 1.75rem;
    color: var(--color-white);
    transition: transform 0.3s ease;
}

.niche-item:hover .niche-item__icon i {
    transform: scale(1.1) rotate(5deg);
}

.niche-item__badge {
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.niche-item__content {
    margin-bottom: var(--spacing-lg);
}

.niche-item__content h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    transition: color 0.3s ease;
}

.niche-item:hover .niche-item__content h3 {
    background: linear-gradient(45deg, var(--color-white), var(--color-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.niche-item__content p {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 1rem;
}

.niche-item__features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.feature-tag {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: var(--color-primary-light);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.niche-item:hover .feature-tag {
    background: rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.feature-tag:nth-child(2) {
    transition-delay: 0.1s;
}

.feature-tag:nth-child(3) {
    transition-delay: 0.2s;
}

/* Remover estilos antigos dos nichos */
.niche-card,
.niche-card__decoration,
.niche-card__glows,
.niche-card__content,
.niche-card__icon,
.niche-card__features {
    display: none;
}

/* Responsividade para nichos */
@media (max-width: 1024px) {
    .niches__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .niche-item {
        padding: 1.5rem;
    }

    .niche-item__icon {
        width: 48px;
        height: 48px;
    }

    .niche-item__icon i {
        font-size: 1.5rem;
    }

    .niche-item__content h3 {
        font-size: 1.35rem;
    }

    .niche-item__content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .niches {
        padding: 6rem 0;
    }

    .niches__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .niche-item {
        padding: 1.5rem;
    }

    .niche-item__header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }

    .niche-item__badge {
        align-self: flex-end;
    }

    .niche-item__icon {
        width: 48px;
        height: 48px;
    }

    .niche-item__icon i {
        font-size: 1.5rem;
    }

    .niche-item__content h3 {
        font-size: 1.25rem;
    }

    .niche-item__content p {
        font-size: 0.9rem;
    }

    .feature-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .niches {
        padding: 4rem 0;
    }

    .niches__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .niche-item {
        padding: 1.25rem;
    }

    .niche-item__icon {
        width: 40px;
        height: 40px;
    }

    .niche-item__icon i {
        font-size: 1.25rem;
    }

    .niche-item__content h3 {
        font-size: 1.1rem;
    }

    .niche-item__content p {
        font-size: 0.85rem;
    }

    .feature-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Tecnologias - Nova versão */
.tech {
    padding: 8rem 0;
    position: relative;
    background: 
        radial-gradient(circle at 20% 80%, rgba(79, 62, 188, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(145, 119, 242, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(34, 30, 64, 0.3) 0%, transparent 50%);
    overflow: hidden;
}

.tech::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/tech/n8n-workflow-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.tech > .container {
    position: relative;
    z-index: 1;
}

.tech__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.tech-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--color-primary), 
        var(--color-primary-light), 
        var(--color-primary)
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.tech-card:hover::before {
    transform: translateX(0);
}

.tech-card:hover {
    transform: translateY(-8px);
    border-color: rgba(79, 62, 188, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(79, 62, 188, 0.2);
}

.tech-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.tech-card__icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(79, 62, 188, 0.3);
}

.tech-card__category {
    background: rgba(79, 62, 188, 0.2);
    color: var(--color-primary-light);
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(79, 62, 188, 0.3);
}

.tech-card__content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
    font-weight: 600;
}

.tech-card__content p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

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

.tech-tag {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-primary-light);
    padding: 0.4rem 0.8rem;
    border-radius: 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(79, 62, 188, 0.2);
    border-color: var(--color-primary);
}

/* Responsividade para tecnologias */
@media (max-width: 1200px) {
    .tech__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .tech {
        padding: 6rem 0;
    }

    .tech__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .tech-card {
        padding: 1.5rem;
    }

    .tech-card__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .tech-card__category {
        align-self: flex-end;
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .tech-card__icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.25rem;
    }

    .tech-card__content h3 {
        font-size: 1.25rem;
    }

    .tech-card__content p {
        font-size: 0.85rem;
    }

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

@media (max-width: 480px) {
    .tech {
        padding: 4rem 0;
    }

    .tech-card {
        padding: 1.25rem;
    }

    .tech-card__content h3 {
        font-size: 1.1rem;
    }

    .tech-tag {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
}

/* Benefícios */
.benefits {
    padding: 8rem 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(70, 166, 111, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(79, 62, 188, 0.1) 0%, transparent 50%);
    position: relative;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    margin-bottom: 6rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

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

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(70, 166, 111, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(70, 166, 111, 0.2);
}

.benefit-card__icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--color-success), #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 
        0 10px 25px rgba(70, 166, 111, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.benefit-card:hover .benefit-card__icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 
        0 20px 40px rgba(70, 166, 111, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.15);
}

.benefit-card__content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
    font-weight: 600;
}

.benefit-card__content p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Trust Section */
.trust-section {
    text-align: center;
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(79, 62, 188, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(145, 119, 242, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.trust-title {
    font-size: 1.8rem;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-text-primary), var(--color-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-subtitle {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    min-width: 110px;
}

.trust-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(79, 62, 188, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.trust-icon {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.trust-item:hover .trust-icon {
    filter: grayscale(0);
}

.trust-item span:last-child {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Responsividade para benefícios */
@media (max-width: 768px) {
    .benefits {
        padding: 6rem 0;
    }

    .benefits__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
        margin-bottom: 4rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-card__icon {
        width: 4rem;
        height: 4rem;
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .benefit-card__content h3 {
        font-size: 1.25rem;
    }

    .benefit-card__content p {
        font-size: 0.9rem;
    }

    .trust-section {
        padding: 3rem 0;
        margin: 0 1rem;
    }

    .trust-title {
        font-size: 1.5rem;
    }

    .trust-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .trust-logos {
        gap: 1rem;
    }

    .trust-item {
        padding: 1rem 1.25rem;
        min-width: 100px;
    }

    .trust-icon {
        font-size: 1.5rem;
    }

    .trust-item span:last-child {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .benefits {
        padding: 4rem 0;
    }

    .benefit-card {
        padding: 1.25rem;
    }

    .benefit-card__icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.25rem;
    }

    .benefit-card__content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .benefit-card__content p {
        font-size: 0.85rem;
    }

    .trust-title {
        font-size: 1.3rem;
    }

    .trust-subtitle {
        font-size: 0.85rem;
    }

    .trust-item {
        padding: 0.8rem 1rem;
        min-width: 90px;
    }

    .trust-icon {
        font-size: 1.25rem;
    }

    .trust-item span:last-child {
        font-size: 0.75rem;
    }
}

/* Projetos */
.projects {
    background: var(--color-background);
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0.3;
}

.projects__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.project-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--project-color, var(--color-primary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(0, 0, 0, 0.2);
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card[data-color="#4F3EBC"] {
    --project-color: #4F3EBC;
}

.project-card[data-color="#9177F2"] {
    --project-color: #9177F2;
}

.project-card[data-color="#221E40"] {
    --project-color: #221E40;
}

.project-card[data-color="#161426"] {
    --project-color: #161426;
}

.project-card[data-color="#46A66F"] {
    --project-color: #46A66F;
}

.project-card[data-color="#E74C3C"] {
    --project-color: #E74C3C;
}

.project-card[data-color="#8E44AD"] {
    --project-color: #8E44AD;
}

.project-card[data-color="#F39C12"] {
    --project-color: #F39C12;
}

.project-card[data-color="#1ABC9C"] {
    --project-color: #1ABC9C;
}

.project-card[data-color="#E67E22"] {
    --project-color: #E67E22;
}

.project-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-lg);
}

.project-card__category {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.project-card:hover .project-card__category {
    background: var(--project-color);
    border-color: var(--project-color);
    color: var(--color-white);
    transform: scale(1.05);
}

.project-card__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
}

.project-card__icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--project-color);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-card__icon::after {
    opacity: 1;
}

.project-card__icon i {
    font-size: 1.5rem;
    color: var(--color-white);
    transition: transform 0.3s ease;
}

.project-card:hover .project-card__icon i {
    transform: scale(1.1) rotate(5deg);
}

.project-card__content {
    margin-bottom: var(--spacing-lg);
}

.project-card__content h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    transition: color 0.3s ease;
}

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

.project-card__content p {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
}

.project-card__tech {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.tech-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.project-card:hover .tech-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--project-color);
    color: var(--project-color);
    transform: translateY(-2px);
}

.tech-badge:nth-child(2) {
    transition-delay: 0.1s;
}

.tech-badge:nth-child(3) {
    transition-delay: 0.2s;
}

.project-card__footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: var(--spacing-lg);
}

.project-card__metrics {
    display: flex;
    gap: var(--spacing-xl);
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metric__value {
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    transition: color 0.3s ease;
}

.project-card:hover .metric__value {
    color: var(--project-color);
}

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

/* Responsividade para projetos */
@media (max-width: 1024px) {
    .projects__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .project-card {
        padding: 1.5rem;
    }

    .project-card__image {
        height: 180px;
        margin-bottom: 1rem;
    }

    .project-card__content h3 {
        font-size: 1.35rem;
    }

    .project-card__content p {
        font-size: 0.95rem;
    }

    .tech-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .metric__value {
        font-size: 1.1rem;
    }

    .metric__label {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .projects {
        padding: 6rem 0;
    }

    .projects__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .project-card {
        padding: 1.5rem;
    }

    .project-card__image {
        height: 160px;
        margin-bottom: 1rem;
    }

    .project-card__header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }

    .project-card__category {
        align-self: flex-end;
    }

    .project-card__content h3 {
        font-size: 1.25rem;
    }

    .project-card__content p {
        font-size: 0.9rem;
    }

    .project-card__metrics {
        gap: var(--spacing-lg);
        flex-wrap: wrap;
        justify-content: center;
    }

    .tech-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .projects {
        padding: 4rem 0;
    }

    .projects__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .project-card {
        padding: 1.25rem;
    }

    .project-card__image {
        height: 140px;
        margin-bottom: 0.75rem;
    }

    .project-card__content h3 {
        font-size: 1.1rem;
    }

    .project-card__content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .project-card__metrics {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: center;
    }

    .metric {
        width: 100%;
        max-width: 150px;
    }

    .tech-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
}

/* Contato */

/* Hero Title - Versão 2.0 */
.hero__title {
    margin-bottom: var(--spacing-2xl);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.title-intro {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.title-main {
    font-size: clamp(3.5rem, 12vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.9;
    margin: 0.2rem 0;
    position: relative;
    
    /* Gradiente animado principal */
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #60A5FA 20%,
        #2563EB 40%,
        #1E40AF 60%,
        #60A5FA 80%,
        #ffffff 100%
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* Animações */
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    animation: 
        zoomInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards,
        gradientFlow 4s ease-in-out 1.5s infinite;
}

.title-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(37, 99, 235, 0.3) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    animation: sweep 2s ease-in-out 1.2s infinite;
}

.title-outro {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
    max-width: 500px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
    white-space: nowrap;
    position: relative;
}

.title-outro::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary-light), transparent);
    opacity: 0;
    animation: underlineGlow 1.5s ease-out 1.5s forwards;
}

@keyframes underlineGlow {
    to {
        opacity: 0.7;
    }
}

/* Animações */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomInUp {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes gradientFlow {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 0%;
    }
}

@keyframes sweep {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

.hero__text {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    max-width: 600px;
    position: relative;
}

.hero__text::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary), var(--color-primary-light));
    border-radius: 2px;
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.8s forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        left: -10px;
    }
}

/* Background Effects */
.hero__background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent);
    animation: floatOrb 8s infinite ease-in-out;
}

.orb-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.orb-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    animation-delay: 3s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 5%;
    animation-delay: 6s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.6;
    }
}

/* Hero Badge */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 50px;
    padding: var(--spacing-sm) var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    color: var(--color-primary-light);
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero__badge i {
    font-size: 1rem;
    animation: electric 2s infinite;
}

@keyframes electric {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Hero Stats */
.hero__stats {
    display: flex;
    gap: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Text Highlights */
.text-highlight {
    color: var(--color-primary-light);
    font-weight: 600;
}

.text-accent {
    color: var(--color-white);
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Enhanced Features */
.feature__icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    color: var(--color-white);
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Enhanced Buttons */
.button--glow {
    position: relative;
    overflow: hidden;
}

.button--glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.button--glow:hover::after {
    left: 100%;
}

.button--outlined {
    border: 2px solid rgba(37, 99, 235, 0.5);
    background: transparent;
}

.button--outlined:hover {
    border-color: var(--color-primary);
    background: rgba(37, 99, 235, 0.1);
}

/* Trust Section */
.hero__trust {
    margin-top: var(--spacing-xl);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 1.4s forwards;
}

.trust-text {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.trust-logos {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.4);
    color: var(--color-primary-light);
}

/* Enhanced Sphere */
.sphere-pulse {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(96, 165, 250, 0.1);
    border-radius: 50%;
    animation: pulseSphere 6s infinite ease-in-out;
}

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

/* Tech Orbits */
.tech-orbits {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
}

.orbit {
    position: absolute;
    border: 1px dashed rgba(96, 165, 250, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-1 {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 30s;
}

.orbit-2 {
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 25s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 20s;
}

.orbit-item {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(37, 99, 235, 0.8);
    color: var(--color-white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid rgba(96, 165, 250, 0.5);
    animation: counterRotate 30s linear infinite;
}

.orbit-2 .orbit-item {
    animation: counterRotate 25s linear infinite reverse;
}

.orbit-3 .orbit-item {
    animation: counterRotate 20s linear infinite;
}

@keyframes counterRotate {
    from {
        transform: translateX(-50%) rotate(0deg);
    }
    to {
        transform: translateX(-50%) rotate(-360deg);
    }
}

/* Project Card Image */
.project-card__image {
    width: 100%;
    height: 200px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-bottom: var(--spacing-lg);
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.9) contrast(1.1);
}

.project-card:hover .project-card__image img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.2);
}

/* Overlay effect */
.project-card__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        var(--project-color) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.project-card:hover .project-card__image::before {
    opacity: 0.3;
}

/* Loading state */
.project-card__image img[loading="lazy"] {
    opacity: 0;
    animation: fadeInImage 0.6s ease-out 0.2s forwards;
}

@keyframes fadeInImage {
    to {
        opacity: 1;
    }
} 