* {
    font-family: 'Inter', sans-serif;
}

.terminal-font {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
}

.navbar-transparent {
    background: rgba(15, 23, 42, 0);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-solid {
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    backdrop-filter: blur(20px);
}

.liquid-gradient {
    background: linear-gradient(-45deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe, #a8edea, #fed6e3);
    background-size: 400% 400%;
    animation: liquidFlow 15s ease infinite;
}

.liquid-gradient-alt {
    background: linear-gradient(45deg, #a855f7, #06d6a0, #3b82f6, #8b5cf6, #10b981, #6366f1);
    background-size: 300% 300%;
    animation: liquidFlow 20s ease infinite reverse;
}

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

.hero-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    clip-path: ellipse(95% 100% at 100% 100%);
}

/* Typewriter Effect Styles */
.typewriter-container {
    position: relative;
    display: inline-block;
    min-height: 1.2em;
}

.typewriter-text {
    position: relative;
    color: transparent;
    background: linear-gradient(135deg, #a855f7 0%, #06d6a0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 700;
    display: inline-block;
}

.typewriter-visible {
    color: transparent;
    background: linear-gradient(135deg, #a855f7 0%, #06d6a0 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.terminal-cursor {
    display: inline-block;
    background: #a855f7;
    width: 3px;
    height: 1.2em;
    margin-left: 2px;
    animation: cursor-blink 1s infinite;
    vertical-align: text-bottom;
}

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

.terminal-effect {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #a855f7;
    border-radius: 8px;
    padding: 4px 8px;
    color: #00ff00;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9em;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    position: relative;
}

.terminal-effect::before {
    content: '>';
    color: #a855f7;
    margin-right: 8px;
    font-weight: bold;
}

.tech-orbit {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.tech-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.tech-planet {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    margin-left: -40px;
    margin-top: -40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    color: white;
    transform-origin: 0 0;
    animation: orbit 20s linear infinite;
    transition: all 0.3s ease;
}

.tech-planet:hover {
    transform: scale(1.2);
    z-index: 20;
}

.tech-planet.backend { background: linear-gradient(135deg, #8b5cf6, #a855f7); }
.tech-planet.frontend { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.tech-planet.erp { background: linear-gradient(135deg, #10b981, #059669); }
.tech-planet.devops { background: linear-gradient(135deg, #f59e0b, #d97706); }
.tech-planet.database { background: linear-gradient(135deg, #ef4444, #dc2626); }
.tech-planet.mobile { background: linear-gradient(135deg, #f97316, #ea580c); }

@keyframes orbit {
    from { 
        transform: rotate(0deg) translateX(160px) rotate(0deg);
    }
    to { 
        transform: rotate(360deg) translateX(160px) rotate(-360deg);
    }
}

.tech-planet:nth-child(1) { animation-delay: 0s; }
.tech-planet:nth-child(2) { animation-delay: -3.33s; }
.tech-planet:nth-child(3) { animation-delay: -6.66s; }
.tech-planet:nth-child(4) { animation-delay: -10s; }
.tech-planet:nth-child(5) { animation-delay: -13.33s; }
.tech-planet:nth-child(6) { animation-delay: -16.66s; }

@media (max-width: 768px) {
    .tech-orbit {
        width: 300px;
        height: 300px;
    }
    .tech-center {
        width: 90px;
        height: 90px;
    }
    .tech-planet {
        width: 60px;
        height: 60px;
        margin-left: -30px;
        margin-top: -30px;
        font-size: 10px;
    }
    @keyframes orbit {
        from { 
            transform: rotate(0deg) translateX(120px) rotate(0deg);
        }
        to { 
            transform: rotate(360deg) translateX(120px) rotate(-360deg);
        }
    }
}

.gradient-text {
    background: linear-gradient(135deg, #a855f7 0%, #06d6a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 85, 247, 0.1);
}

.glow-purple {
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

.glow-green {
    box-shadow: 0 0 20px rgba(6, 214, 160, 0.3);
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

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

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

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
}

.nav-link-enhanced {
    position: relative;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(6, 214, 160, 0.1));
    border-radius: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link-enhanced::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0.25rem;
    left: 50%;
    background: linear-gradient(135deg, #a855f7, #06d6a0);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link-enhanced:hover::before {
    opacity: 1;
}

.nav-link-enhanced:hover::after {
    width: calc(100% - 2rem);
}

.nav-link-enhanced:hover {
    transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* WhatsApp Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.8);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Particles Container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Mobile adjustments for WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
    
    .whatsapp-tooltip {
        display: none; /* Hide tooltip on mobile */
    }
}

/* Auth Forms */
.auth-form {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.form-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: white;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #a855f7;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
    outline: none;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-primary {
    background: linear-gradient(135deg, #a855f7, #06d6a0);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

.alert {
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    border: 1px solid;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.alert-error {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.alert-info {
    background-color: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.alert-warning {
    background-color: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

/* Mobile adjustments for WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
    
    .whatsapp-tooltip {
        display: none; /* Hide tooltip on mobile */
    }
}

/* Client Cards */
.client-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.client-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: all 0.8s;
}

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

.client-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.client-card:nth-child(1):hover {
    box-shadow: 0 25px 50px rgba(168, 85, 247, 0.2);
}

.client-card:nth-child(2):hover {
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.2);
}

.client-card:nth-child(3):hover {
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.2);
}

/* Responsive adjustments for client section */
@media (max-width: 768px) {
    .client-card {
        margin-bottom: 1rem;
    }
    
    .client-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
}

/* Active page indicator */
.nav-link-active {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(6, 214, 160, 0.2));
    border-radius: 0.5rem;
}

.nav-link-active::after {
    width: calc(100% - 2rem);
    opacity: 1;
}

/* Improved navbar organization */
.navbar-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 1rem;
}

@media (max-width: 768px) {
    .navbar-section {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .navbar-divider {
        display: none;
    }
}

/* Access Button Styles */
.access-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'JetBrains Mono', monospace;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.access-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.access-button:active {
    transform: translateY(0);
}

/* Access Modal Styles */
#access-modal {
    animation: fadeIn 0.3s ease-out;
}

#access-modal .bg-slate-900 {
    animation: slideUp 0.3s ease-out;
    transform: translateY(0);
}

#access-modal.hiding {
    animation: fadeOut 0.2s ease-in;
}

#access-modal.hiding .bg-slate-900 {
    animation: slideDown 0.2s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

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

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

/* Responsive adjustments for access button */
@media (max-width: 768px) {
    .access-button {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
    
    #access-modal .max-w-md {
        max-width: calc(100vw - 2rem);
        margin: 1rem;
    }
}

/* Ensure access button doesn't interfere with WhatsApp button */
@media (max-width: 768px) {
    .access-button {
        bottom: 85px; /* Space for WhatsApp button */
    }
}

/* ===== CLIENTS CAROUSEL STYLES ===== */

.clients-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    mask: linear-gradient(
        90deg,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(
        90deg,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

.clients-carousel {
    position: relative;
    width: 100%;
    height: 180px;
}

.carousel-track {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    height: 100%;
    width: max-content;
    gap: 4rem;
    animation: scroll-right 30s linear infinite;
}

.carousel-track-1 {
    animation: scroll-right 20s linear infinite; /* Reduzido de 30s para 20s */
}

.carousel-track-partners {
    animation: scroll-left 25s linear infinite; /* Velocidade diferente para variação */
}

/* Carousel Animation */
@keyframes scroll-right {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0%);
    }
}

/* Animação para esquerda (parceiros) */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Pause animation on hover */
.clients-carousel-wrapper:hover .carousel-track {
    animation-play-state: paused;
}

/* Client Logo Items */
.client-logo-item {
    flex-shrink: 0;
    width: 350px;
    height: 160px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-logo-container {
    position: relative;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-logo-container::before {
    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 ease;
    z-index: 3;
}

/* Logo Styles - Agora ocupa todo o card */
.client-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Overlay para melhor legibilidade do texto - aparece apenas no hover */
.client-logo-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
    opacity: 0;
    transition: all 0.4s ease;
}

/* Client Info - Aparece apenas no hover */
.client-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.5) 70%,
        transparent 100%
    );
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.client-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.025em;
}

.client-info span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    line-height: 1.3;
}

/* Hover Effects */
.client-logo-item:hover .client-logo-container {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(168, 85, 247, 0.2);
}

.client-logo-item:hover .client-logo-container::before {
    left: 100%;
}

.client-logo-item:hover .client-logo {
    filter: brightness(0.7) contrast(1.1);
    transform: scale(1.05);
}

.client-logo-item:hover .client-logo-container::after {
    opacity: 1;
}

.client-logo-item:hover .client-info {
    opacity: 1;
    transform: translateY(0);
}

.client-logo-item:hover .client-info h4 {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.client-logo-item:hover .client-info span {
    color: rgba(255, 255, 255, 0.95);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .clients-carousel {
        height: 150px;
    }
    
    .carousel-track {
        gap: 3rem;
    }
    
    .client-logo-item {
        width: 300px;
        height: 130px;
    }
    
    .client-info {
        padding: 0.75rem;
    }
    
    .client-info h4 {
        font-size: 0.9rem;
    }
    
    .client-info span {
        font-size: 0.8rem;
    }
    
    .carousel-track-1 {
        animation-duration: 30s;
    }
}

@media (max-width: 768px) {
    .clients-carousel {
        height: 140px;
    }
    
    .carousel-track {
        gap: 2rem;
    }
    
    .client-logo-item {
        width: 260px;
        height: 120px;
    }
    
    .client-info {
        padding: 0.5rem;
    }
    
    .client-info h4 {
        font-size: 0.85rem;
        margin-bottom: 0.125rem;
    }
    
    .client-info span {
        font-size: 0.75rem;
    }
    
    .carousel-track-1 {
        animation-duration: 25s;
    }
    
    /* Simplificar hover effects no mobile */
    .client-logo-item:hover .client-logo-container {
        transform: translateY(-4px) scale(1.02);
    }
}

@media (max-width: 480px) {
    .clients-carousel-wrapper {
        padding: 1rem 0;
    }
    
    .clients-carousel {
        height: 120px;
    }
    
    .carousel-track {
        gap: 1.5rem;
    }
    
    .client-logo-item {
        width: 220px;
        height: 100px;
    }
    
    .client-info {
        padding: 0.4rem;
    }
    
    .client-info h4 {
        font-size: 0.8rem;
    }
    
    .client-info span {
        font-size: 0.7rem;
    }
    
    .carousel-track-1 {
        animation-duration: 20s;
    }
}

/* Enhanced Visual Effects */
.client-logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(168, 85, 247, 0.05) 0%,
        rgba(6, 214, 160, 0.05) 100%
    );
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 4;
}

.client-logo-item:hover::before {
    opacity: 1;
}

/* Fallback para quando não há imagem */
.client-logo[src*="placeholder"] {
    object-fit: contain;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    filter: none;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .carousel-track {
        animation: none;
    }
    
    .clients-carousel-wrapper {
        overflow-x: auto;
        mask: none;
        -webkit-mask: none;
    }
    
    .carousel-track {
        position: static;
        width: auto;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .client-logo-item {
        position: static;
    }
    
    .client-logo-item:hover .client-logo-container {
        transform: none;
    }
    
    .client-logo-item:hover .client-logo {
        transform: none;
    }
}

/* Print styles */
@media print {
    .clients-carousel-wrapper {
        overflow: visible;
        mask: none;
        -webkit-mask: none;
    }
    
    .carousel-track {
        animation: none;
        position: static;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .client-logo {
        filter: none !important;
    }
    
    .client-info {
        background: rgba(0, 0, 0, 0.1) !important;
        color: black !important;
    }
    
    .client-info h4,
    .client-info span {
        color: black !important;
        text-shadow: none !important;
    }
}

/* Especial para logos sem fundo ou muito claros */
.client-logo-item[data-light-logo="true"] .client-logo-container::after {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}
/* Form styles for light backgrounds */
.form-input-light {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(100, 116, 139, 0.3);
    color: #1e293b; /* slate-800 */
    transition: all 0.3s ease;
}

.form-input-light:focus {
    border-color: #a855f7;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
    outline: none;
    background: rgba(255, 255, 255, 1);
}

.form-input-light::placeholder {
    color: rgba(100, 116, 139, 0.6); /* slate-500 with opacity */
}

/* Override for contact page specifically */
.contact-form .form-input {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(100, 116, 139, 0.3);
    color: #1e293b;
}

.contact-form .form-input:focus {
    border-color: #a855f7;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
    outline: none;
    background: rgba(255, 255, 255, 1);
}

.contact-form .form-input::placeholder {
    color: rgba(100, 116, 139, 0.6);
}

/* Wrapper para parceiros */
.partners-carousel-wrapper {
    overflow: hidden;
    mask: linear-gradient(
        90deg,
        transparent,
        white 10%,
        white 90%,
        transparent
    );
    -webkit-mask: linear-gradient(
        90deg,
        transparent,
        white 10%,
        white 90%,
        transparent
    );
}

.partners-carousel {
    display: flex;
    width: 200%;
}