.services-new {
    position: relative;
    padding: var(--spacing-24) 0;
    background-color: var(--white);
    overflow: hidden;
}

/* Background e elementos decorativos */
.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.services-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.services-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.services-shapes .shape {
    position: absolute;
    opacity: 0.05;
}

.services-shapes .shape-1 {
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    border: 2px solid var(--primary-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphShape 15s ease-in-out infinite;
}

.services-shapes .shape-2 {
    bottom: 15%;
    left: 5%;
    width: 200px;
    height: 200px;
    background-color: var(--secondary-color);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morphShape 20s ease-in-out infinite alternate-reverse;
}

.services-shapes .shape-3 {
    top: 40%;
    left: 50%;
    width: 150px;
    height: 150px;
    border: 2px solid var(--secondary-light);
    border-radius: 50%;
    animation: rotateRing 30s linear infinite;
}

/* Cabeçalho da seção */
.services-header {
    position: relative;
    text-align: center;
    margin-bottom: var(--spacing-16);
    z-index: 2;
}

.services-subtitle {
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-2);
    position: relative;
    display: inline-block;
}

.services-subtitle::before,
.services-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: var(--secondary-color);
}

.services-subtitle::before {
    left: -40px;
}

.services-subtitle::after {
    right: -40px;
}

.services-title {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-4);
}

.services-title span {
    position: relative;
    color: var(--primary-color);
    z-index: 1;
}

.services-title span::before {
    content: '';
    position: absolute;
    left: -5px;
    bottom: 5px;
    width: calc(100% + 10px);
    height: 10px;
    background-color: var(--secondary-light);
    opacity: 0.3;
    z-index: -1;
    transform: skewX(-15deg);
}

.services-description {
    font-size: var(--text-lg);
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Container de serviços */
.services-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-16);
}

/* Item de serviço */
.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--spacing-8);
    position: relative;
}

.service-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.service-item:nth-child(odd) .service-card {
    order: 2;
}

.service-item:nth-child(odd) .service-image {
    order: 1;
}

/* Cartão de serviço */
.service-card {
    padding: var(--spacing-8);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
    position: relative;
    z-index: 2;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(105, 43, 83, 0.05), transparent);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.service-item:hover .service-card {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-item:hover .service-card::before {
    opacity: 1;
}

/* Ícone do serviço */
.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    font-size: var(--text-2xl);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-6);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.service-item:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
}

.service-item:hover .service-icon::before {
    opacity: 1;
    transform: scale(1);
}

/* Conteúdo do serviço */
.service-content {
    margin-top: var(--spacing-4);
}

.service-title {
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-4);
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    transition: width 0.3s ease;
}

.service-item:hover .service-title::after {
    width: 100%;
}

.service-description {
    font-size: var(--text-base);
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-6);
}

/* Link do serviço */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.service-link i {
    font-size: var(--text-xs);
    transition: transform 0.3s ease;
}

.service-item:hover .service-link {
    color: var(--primary-dark);
}

.service-item:hover .service-link i {
    transform: translateX(5px);
}

/* Imagem do serviço */
.service-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    transform: rotate(-3deg);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-item:nth-child(even) .service-image {
    transform: rotate(3deg);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(105, 43, 83, 0.2), rgba(212, 169, 119, 0.2));
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

.service-item:hover .service-image {
    transform: rotate(0deg);
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-item:hover .service-overlay {
    opacity: 0.7;
}

/* Partículas flutuantes */
.service-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}



/* Classes de animação para entrada */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.fade-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.fade-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Efeito de brilho nos cartões */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    opacity: 0;
    transition: left 0.7s ease;
    z-index: 1;
}

.service-item:hover .service-card::after {
    left: 150%;
    opacity: 0.8;
}