.services-section {
    position: relative;
    padding: 120px 0;
    background: transparent;
    overflow: visible;
    margin-top: 0px;
    z-index: 5;
    
}

/* Header da seção */
.services-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

/* Container do carrossel */
.services-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    height: 600px;
    perspective: 1000px;
}

/* Indicadores de navegação */
.carousel-indicators {
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 15;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
}

.indicator:hover {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.4);
}

.indicator.active {
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(39, 159, 245, 0.5);
}

.indicator.active::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid rgba(39, 159, 245, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Carrossel principal */
.services-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
    padding-top: 16px;
    
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

/* Slides do serviço */
.service-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(100px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.service-slide[hidden] {
    display: block !important;
    visibility: hidden;
    opacity: 0;
    transform: translateY(100px) scale(0.9);
    pointer-events: none;
}

.service-slide.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    visibility: visible;
}

.service-slide.active[hidden] {
    display: block !important;
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Cards de serviço com glassmorphism */
.service-glass-card {
    height: 100%;
    padding: 3rem;
    padding-top: 2.5rem;
    background: rgba(15, 20, 25, 0.3);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
}

.service-glass-card.focusable-card:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    box-shadow: 0 20px 40px rgba(39, 159, 245, 0.2);
}

/* Efeito de brilho */
.service-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    z-index: -1;
}

/* Ícone do serviço */
.service-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
}

.service-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 24px;
    opacity: 0.9;
    filter: blur(20px);
    animation: iconGlow 3s ease-in-out infinite alternate;
}

@keyframes iconGlow {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

.service-icon {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(39, 159, 245, 0.3);
    transition: all var(--transition-base);
}

.service-glass-card:hover {
    transform: scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.service-glass-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(39, 159, 245, 0.4);
}

/* Título do serviço */
.service-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Descrição do serviço */
.service-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

/* Features do serviço */
.service-features {
    width: 100%;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
    margin: 0;
}

.feature-item:hover {
    background: rgba(39, 159, 245, 0.1);
    border-color: rgba(39, 159, 245, 0.3);
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1rem;
    color: var(--accent-color);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feature-item span {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.4;
}

/* CTA do serviço */
.service-cta {
    height: 56px;
    min-height: 56px;
    max-height: 56px;
    padding: 0 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    background-size: 100% 100%;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    line-height: 1;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(39, 159, 245, 0.3);
    width: 260px;
    min-width: 260px;
    max-width: 260px;
    box-sizing: border-box;
    outline: none;
}

.service-cta:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    box-shadow: 0 8px 25px rgba(39, 159, 245, 0.4);
}

.service-cta::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.6s ease;
}

.service-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(39, 159, 245, 0.4);
}

.service-cta:hover::before {
    left: 100%;
}

.service-cta:hover i {
    transform: translateX(5px);
}

.service-cta i {
    transition: transform var(--transition-base);
    font-size: 1.05rem;
    line-height: 1;
}

.service-cta span {
    line-height: 1;
    font-size: 1.05rem;
    white-space: nowrap;
    display: inline-block;
}

/* Controles de navegação */
.carousel-controls {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 15;
}

.carousel-control {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    color: var(--text-primary);
    font-size: 1.2rem;
}

.carousel-control:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(39, 159, 245, 0.3);
}

.carousel-control:active {
    transform: scale(0.95);
}

/* Animação de scroll do carrossel */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.service-slide.slide-up-enter {
    animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.service-slide.slide-down-enter {
    animation: slideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@media (max-width: 1024px) {
    .carousel-indicators {
        left: -60px;
    }
    
    .carousel-controls {
        right: -60px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-carousel-container {
        height: 700px;
    }
    
    .carousel-indicators {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 2rem;
        transform: none;
    }
    
    .carousel-controls {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
        transform: none;
    }
    
    .service-glass-card {
        padding: 2rem;
    }
    
    .service-title {
        font-size: 1.75rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .service-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .services-carousel-container {
        height: 800px;
    }
    
    .service-glass-card {
        padding: 1.5rem;
        border-radius: 24px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .indicator.active {
        width: 12px;
        height: 12px;
    }
}