/* ===== RESET E CONFIGURAÇÕES GERAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* ===== EFEITOS DE VIDRO E GRADIENTES ===== */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.header-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

/* ===== PAINEL TORCIDO COM LANDING PAGES ===== */
.landing-pages-showcase {
    perspective: 1000px;
}

.landing-page-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.landing-page-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.landing-page-card .bg-gradient-to-br {
    position: relative;
    overflow: hidden;
}

.landing-page-card .bg-gradient-to-br::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.landing-page-card:hover .bg-gradient-to-br::before {
    left: 100%;
}

/* Efeito de rotação suave */
.landing-pages-showcase:hover .landing-page-card:nth-child(1) {
    transform: rotate(-1deg) translateY(-5px);
}

.landing-pages-showcase:hover .landing-page-card:nth-child(2) {
    transform: rotate(1deg) translateY(-5px);
}

.landing-pages-showcase:hover .landing-page-card:nth-child(3) {
    transform: rotate(-0.5deg) translateY(-5px);
}



/* ===== EFEITO MODERNO PARA BOTÕES ===== */
.modern-button {
    position: relative;
    background: linear-gradient(90deg, #0aff9d 0%, #111 100%);
    border: none;
    border-radius: 12px;
    padding: 20px 56px;
    min-width: 200px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(.4,1.5,.5,1);
    box-shadow: 0 4px 15px rgba(10, 255, 157, 0.18);
    z-index: 1;
}

.modern-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    transition: left 0.5s cubic-bezier(.4,1.5,.5,1);
    z-index: 2;
}

.modern-button:hover::before {
    left: 100%;
}

.modern-button::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(120deg, #0aff9d, #111, #0aff9d, #111 80%);
    background-size: 300% 300%;
    animation: borderGlow 2.5s linear infinite;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: 1;
}

.modern-button:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px rgba(10, 255, 157, 0.25);
}

.modern-button:active {
    transform: translateY(0) scale(0.98);
}

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

.floating {
    animation: floating 4s ease-in-out infinite;
}

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

.gradient-border {
    background: linear-gradient(90deg, #ffffff, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.hero-gradient {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
}

.card-gradient {
    background: linear-gradient(45deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
}

.text-gradient {
    background: linear-gradient(90deg, #ffffff, #999999);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hover-gradient:hover {
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
}

.glow {
    box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

/* ===== BACKGROUNDS E IMAGENS ===== */
.hero-bg {
    background-image: url('https://readdy.ai/api/search-image?query=modern%20minimalist%20web%20development%20workspace%20with%20multiple%20screens%20showing%20UI%20designs%2C%20dark%20monochromatic%20setting%2C%20professional%20development%20environment%2C%20high%20contrast%20black%20and%20white&width=1600&height=800&seq=1&orientation=landscape');
    background-size: cover;
    background-position: center;
}

/* ===== TIPOGRAFIA ===== */
.text-effect {
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.02em;
}

/* ===== EFEITOS DE HOVER SIMPLES ===== */
.card-hover:hover {
    transform: translateY(-3px);
    transition: transform 0.3s ease;
}

/* ===== CARDS DE PORTFÓLIO ===== */
.portfolio-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(10, 255, 157, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(10, 255, 157, 0.1),
        0 0 40px rgba(10, 255, 157, 0.05);
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(10, 255, 157, 0.05), transparent);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.portfolio-card .text-primary {
    background: linear-gradient(90deg, #0aff9d, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

.service-card:hover {
    border-color: #0aff9d;
    transition: border-color 0.3s ease;
}

.service-card.active {
    border-color: #0aff9d;
    box-shadow: 0 0 20px rgba(10, 255, 157, 0.3);
    background: linear-gradient(45deg, rgba(10, 255, 157, 0.05) 0%, rgba(255,255,255,0.02) 100%);
    transform: translateY(-5px);
}

.service-card.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(10, 255, 157, 0.1), transparent);
    border-radius: 8px;
    animation: cardGlow 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cardGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

/* ===== CARDS DE TESTEMUNHOS MELHORADOS ===== */
.testimonial-card-enhanced {
    position: relative;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(10, 255, 157, 0.8) 50%, transparent 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(10, 255, 157, 0.5);
}

.testimonial-card-enhanced::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(10, 255, 157, 0.8) 50%, transparent 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(10, 255, 157, 0.5);
}

.testimonial-card-enhanced:hover {
    transform: translateY(-5px);
    border-color: rgba(10, 255, 157, 0.3);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(10, 255, 157, 0.2),
        0 0 30px rgba(10, 255, 157, 0.1);
}

.testimonial-card-enhanced:hover::before,
.testimonial-card-enhanced:hover::after {
    background: linear-gradient(90deg, transparent 0%, rgba(10, 255, 157, 1) 50%, transparent 100%);
    box-shadow: 0 0 15px rgba(10, 255, 157, 0.8);
}

/* ===== FORMULÁRIOS ===== */
input:focus, textarea:focus {
    outline: none;
    border-color: #0aff9d;
    box-shadow: 0 0 0 2px rgba(10, 255, 157, 0.2);
    transition: all 0.3s ease;
}

/* ===== GRADIENTES DE TEXTO ===== */
.gradient-text {
    background: linear-gradient(90deg, #0aff9d, #a020f0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ===== EFEITOS DE GLOW SIMPLES ===== */
.glow-effect {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.purple-glow {
    text-shadow: 0 0 5px rgba(160, 32, 240, 0.3);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .text-effect {
        font-size: 2.5rem;
    }
    
    .hero-bg {
        background-position: center center;
    }
    
    .floating {
        animation: none;
    }
    
    /* Centralizar botões no mobile */
    .header-modern-button,
    .hero-modern-button,
    .saber-mais-button,
    .modern-button {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    
    /* Centralizar texto e botão na hero section */
    section .text-left {
        text-align: center;
    }
    
    /* Centralizar todos os títulos no mobile */
    h1, h2, h3, h4, h5, h6 {
        text-align: center !important;
    }
    
    /* Centralizar parágrafos e textos descritivos */
    p {
        text-align: center;
    }
    
    /* Centralizar links "Ver Website" nos cards de portfólio */
    .bg-white\/5 a,
    .glass-effect a {
        display: block;
        text-align: center;
        margin: 0 auto;
    }
    
    /* Centralizar ícones e conteúdo dos service cards */
    .service-card {
        text-align: center;
    }
    
    .service-card .w-16 {
        margin: 0 auto;
    }
    
    .service-card ul {
        display: inline-block;
        text-align: left;
        margin: 0 auto;
    }
    
    /* Centralizar cards de feedback/depoimentos */
    .testimonial-card-enhanced {
        text-align: center;
    }
    
    .testimonial-card-enhanced .flex.items-center {
        justify-content: center;
    }
    
    .testimonial-card-enhanced .text-yellow-400 {
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }
}

/* ===== ANIMAÇÕES SIMPLES ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes slideRightToLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes carouselSlide {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

.slide-right-to-left {
    animation: slideRightToLeft 0.8s ease-out;
}

.continuous-slide {
    animation: continuousSlideRightToLeft 4s ease-in-out infinite;
}

.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 4rem;
}

.carousel-slide {
    display: flex;
    gap: 3rem;
    animation: carouselSlide 20s linear infinite;
    white-space: nowrap;
    opacity: 0.7;
}

.carousel-slide:hover {
    animation-play-state: paused;
}

.carousel-slide > div {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.carousel-slide > div:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ===== UTILITÁRIOS ===== */
.neon-border {
    border: 1px solid rgba(10, 255, 157, 0.3);
    transition: border-color 0.3s ease;
}

.transition-all {
    transition: all 0.3s ease;
}

/* ===== ESTILOS PARA LOTTIE PLAYER ===== */
lottie-player {
    pointer-events: none;
}

/* ===== ESTILOS PARA REMIX ICONS ===== */
:where([class^="ri-"])::before { 
    content: "\f3c2"; 
}

/* ===== ESTILOS PARA CHECKBOX CUSTOMIZADO ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== ESTILOS PARA SCROLL SUAVE ===== */
html {
    scroll-behavior: smooth;
}

/* ===== ESTILOS PARA SELEÇÃO DE TEXTO ===== */
::selection {
    background: rgba(10, 255, 157, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(10, 255, 157, 0.3);
    color: #ffffff;
}

/* ===== EFEITOS DE HOVER ADICIONAIS SIMPLES ===== */
button:hover {
    transform: translateY(-1px);
    transition: transform 0.2s ease;
}

a:hover {
    transition: color 0.2s ease;
}

/* ===== ANIMAÇÃO DE CARREGAMENTO SIMPLES ===== */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* ===== SELETOR DE IDIOMAS ===== */
.language-selector {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    margin-left: 1rem;
}

.language-flag {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-size: cover;
    background-position: center;
}

.language-flag:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.language-flag.active {
    border-color: #ffffff;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.flag-pt {
    background-image: url('https://flagcdn.com/w40/pt.png');
}

.flag-us {
    background-image: url('https://flagcdn.com/w40/us.png');
}

.flag-es {
    background-image: url('https://flagcdn.com/w40/es.png');
}

/* ===== LOGO REDONDA ===== */
.logo-round {
    border-radius: 50% !important;
    object-fit: cover;
    width: 48px !important;
    height: 48px !important;
    display: block;
}

/* ===== EFEITOS DE TEXTO ===== */
.hero-modern-button {
    position: relative;
    background: linear-gradient(90deg, #ffffff 0%, #666666 50%, #111111 100%);
    border: none;
    border-radius: 12px;
    padding: 20px 56px;
    min-width: 200px;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(.4,1.5,.5,1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.18);
    z-index: 1;
}

.hero-modern-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s cubic-bezier(.4,1.5,.5,1);
    z-index: 2;
}

.hero-modern-button:hover::before {
    left: 100%;
}

.hero-modern-button::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(120deg, #ffffff, #666666, #111111, #ffffff 80%);
    background-size: 300% 300%;
    animation: borderGlowHero 2.5s linear infinite;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: 1;
}

.hero-modern-button:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

.hero-modern-button:active {
    transform: translateY(0) scale(0.98);
}

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

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

/* ===== BOTÃO COMPACTO DO HEADER ===== */
.header-modern-button {
    position: relative;
    background: linear-gradient(90deg, #0aff9d 0%, #111 100%);
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    min-width: auto;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(.4,1.5,.5,1);
    box-shadow: 0 2px 8px rgba(10, 255, 157, 0.15);
    z-index: 1;
}

.header-modern-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    transition: left 0.5s cubic-bezier(.4,1.5,.5,1);
    z-index: 2;
}

.header-modern-button:hover::before {
    left: 100%;
}

.header-modern-button::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1px;
    background: linear-gradient(120deg, #0aff9d, #111, #0aff9d, #111 80%);
    background-size: 300% 300%;
    animation: borderGlow 2.5s linear infinite;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: 1;
}

.header-modern-button:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 12px rgba(10, 255, 157, 0.2);
}

.header-modern-button:active {
    transform: translateY(0) scale(0.98);
}

/* ===== BOTÃO SABER MAIS ===== */
.saber-mais-button {
    position: relative;
    background: linear-gradient(90deg, #ffffff 0%, #f1f1f1 50%, #ffffff 100%);
    border: 2px solid #0aff9d;
    border-radius: 8px;
    padding: 12px 32px;
    min-width: 140px;
    color: #000000;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(.4,1.5,.5,1);
    box-shadow: 0 4px 15px rgba(10, 255, 157, 0.2);
    z-index: 1;
    text-decoration: none;
    display: inline-block;
}

.saber-mais-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.2), transparent);
    transition: left 0.8s cubic-bezier(.4,1.5,.5,1);
    z-index: 2;
}

.saber-mais-button:hover::before {
    left: 100%;
}

.saber-mais-button::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 6px;
    padding: 2px;
    background: linear-gradient(120deg, #0aff9d, #333333, #0aff9d, #333333 80%);
    background-size: 300% 300%;
    animation: borderGlow 5s linear infinite;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: 1;
}

.saber-mais-button:hover {
    transform: translateY(-2px) scale(1.2);
    box-shadow: 0 6px 20px rgba(10, 255, 157, 0.3);
    color: #000000;
    transition: all 0.8s cubic-bezier(.4,1.5,.5,1);
}

.saber-mais-button:active {
    transform: translateY(0) scale(1.02);
    transition: all 0.3s cubic-bezier(.4,1.5,.5,1);
}

/* ===== DIVISOR NEON ===== */
.neon-divider {
    position: relative;
    height: 0.5px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.02) 20%, rgba(255,255,255,0.1) 35%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.1) 65%, rgba(255,255,255,0.02) 80%, transparent 100%);
    box-shadow: 
        0 0 3px rgba(255, 255, 255, 0.2),
        0 0 6px rgba(255, 255, 255, 0.1);
}

.neon-divider::before {
    content: '';
    position: absolute;
    inset: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.3) 40%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.3) 60%, rgba(255,255,255,0.05) 75%, transparent 100%);
    filter: blur(1px);
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 0.7),
        0 0 20px rgba(255, 255, 255, 0.5);
}

.neon-divider::after {
    content: '';
    position: absolute;
    inset: 0;
    height: 7px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.02) 30%, rgba(255,255,255,0.15) 45%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.15) 55%, rgba(255,255,255,0.02) 70%, transparent 100%);
    filter: blur(2px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* Linhas conectoras dos cards de soluções */
.services-grid {
    position: relative;
}

.service-card {
    position: relative;
    z-index: 2;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2));
    transform: translateY(-50%);
    animation: gentle-pulse 6s ease-in-out infinite;
}

.service-card:nth-child(even)::after {
    left: auto;
    right: -20px;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), transparent);
    animation-delay: 3s;
}

/* Linhas verticais conectando */
.service-card::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.15));
    transform: translateX(-50%);
    animation: gentle-pulse-vertical 8s ease-in-out infinite;
}

.service-card:nth-child(n+3)::before {
    top: auto;
    bottom: -20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.15), transparent);
    animation-delay: 4s;
}

/* Animação suave e moderna para linhas horizontais */
@keyframes gentle-pulse {
    0%, 100% {
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2));
        opacity: 0.6;
    }
    50% {
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4));
        opacity: 1;
    }
}

/* Animação suave e moderna para linhas verticais */
@keyframes gentle-pulse-vertical {
    0%, 100% {
        background: linear-gradient(180deg, transparent, rgba(255,255,255,0.15));
        opacity: 0.6;
    }
    50% {
        background: linear-gradient(180deg, transparent, rgba(255,255,255,0.3));
        opacity: 1;
    }
} 

/* ===== NOTIFICAÇÕES TOAST ===== */
.toast-notification,
.footer-toast-notification {
  animation: slideInRight 0.5s ease-out;
}

.toast-notification.slide-out,
.footer-toast-notification.slide-out {
  animation: slideOutRight 0.5s ease-in;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Melhorar o visual das notificações */
.toast-notification .flex,
.footer-toast-notification .flex {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Efeito de hover nos botões de fechar */
.toast-notification button:hover,
.footer-toast-notification button:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

/* Sombras mais suaves */
.toast-notification .shadow-2xl,
.footer-toast-notification .shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* ===== FLAGS ===== */

/* ===== NOVO LAYOUT DE PORTFÓLIO ===== */
.portfolio-card-modern {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(10, 255, 157, 0.2);
}

.portfolio-card-modern img {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card-modern:hover img {
    transform: scale(1.05);
}

.portfolio-card-compact {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card-compact:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(10, 255, 157, 0.2);
}

.portfolio-card-compact img {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card-compact:hover img {
    transform: scale(1.05);
}

/* ===== TAGS E BADGES ===== */
.tag-primary {
    background: rgba(10, 255, 157, 0.2);
    color: #0aff9d;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.tag-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ===== CAROUSEL DE TECNOLOGIAS ===== */
@keyframes infinite-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes infinite-scroll-hover {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.animate-infinite-scroll {
    animation: infinite-scroll 30s linear infinite;
}

.animate-infinite-scroll-hover {
    animation: infinite-scroll 15s linear infinite;
}

/* Manter animação rodando mesmo no hover */
.animate-infinite-scroll:hover {
    animation-play-state: running;
}

/* Efeito de hover nos cards de tecnologia */
.animate-infinite-scroll .bg-white\/5:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Gradientes para mascarar as bordas */
.animate-infinite-scroll::before,
.animate-infinite-scroll::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
}

.animate-infinite-scroll::before {
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 1), transparent);
}

.animate-infinite-scroll::after {
    right: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 1), transparent);
}

/* ===== MOCKUP RETANGULAR COM UI ===== */
.ui-mockup-container {
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Garantir que cada coluna tenha exatamente 50% de largura */
@media (min-width: 768px) {
    .grid.md\\:grid-cols-2 > div {
        width: 50%;
        flex: 0 0 50%;
    }
    
    .ui-mockup-container {
        max-width: 90%;
    }
}

@media (min-width: 1024px) {
    .ui-mockup-container {
        max-width: 95%;
    }
}

@media (min-width: 1280px) {
    .ui-mockup-container {
        max-width: 100%;
    }
}

/* Header compacto do mockup */
.mockup-header {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.mockup-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(10, 255, 157, 0.6), transparent);
}

/* Barra de URL compacta */
.mockup-url-bar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 11px;
    transition: all 0.3s ease;
}

/* Removido efeito hover da URL */

/* Conteúdo com imagem UI */
.mockup-content {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    min-height: 400px;
    height: 400px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Removido efeito hover do conteúdo */

/* Imagem UI */
.ui-preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: all 0.4s ease;
    display: block;
}

/* ===== CORREÇÃO MOBILE PARA IMAGEM HERO ===== */
@media (max-width: 768px) {
    .ui-mockup-container {
        max-width: 90%;
        margin: 0 auto; /* Centralizar no mobile */
        border-radius: 12px;
    }
    
    .mockup-content {
        min-height: 350px;
        height: 350px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .ui-preview-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
    }
}

@media (max-width: 480px) {
    .ui-mockup-container {
        max-width: 95%;
        margin: 0 auto; /* Centralizar no mobile pequeno */
        border-radius: 8px;
    }
    
    .mockup-content {
        min-height: 320px;
        height: 320px;
    }
    
    .ui-preview-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
    }
    
    /* Ajustar o grid para mobile */
    .grid.md\\:grid-cols-2 {
        gap: 2rem;
    }
}

/* Removido efeito hover da imagem */

/* Overlay com informações */
.ui-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(10px);
    padding: 16px;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

/* Overlay sempre visível */
.ui-overlay {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 13px;
    margin-bottom: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.overlay-content p {
    font-size: 11px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Badge removido */ 