.services-section {
    background-color: var(--accent-color);
    padding: 4rem 0;
    width: 100%;
}

.services-section h1 {
    font-size: 3.8rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.service-category {
    margin-bottom: 3rem;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.service-card {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 60, 52, 0.8), transparent);
    padding: 1rem;
    text-align: center;
    color: var(--bg-color);
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-gallery h2,
.highlights h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.gallery-item video {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.gallery-item.visible video {
    opacity: 1;
}

/* CÓDIGO ATUALIZADO A PARTIR DAQUI */
.highlights-grid {
    display: grid;
    /* Define 2 colunas de larguras iguais */
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
}

.highlight-item {
    background-color: var(--bg-color);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
}

.highlight-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.before-after {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.before-after img {
    width: 45%;
    max-width: 100%;
    border-radius: 10px;
}
/* CÓDIGO ATUALIZADO TERMINA AQUI */

.how-it-works {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
}

.how-it-works-content {
    margin-top: 1.5rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.how-it-works-content.visible {
    opacity: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.step-item {
    background-color: var(--bg-color);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.step-item h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-item p {
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .services-section h1 {
        font-size: 3.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.2rem;
    }
    
    .service-card {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 2.5rem 0;
    }

    .services-section h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .service-card {
        height: 220px;
        border-radius: 8px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .service-content {
        padding: 0.8rem;
    }

    .service-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .service-content .cta-button {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .highlights h2 {
        font-size: 1.8rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-item h3 {
        font-size: 1rem;
    }

    .step-item p {
        font-size: 0.8rem;
    }
}

@media (max-width: 600px) {
    .services-section {
        padding: 2rem 0;
    }
    
    .services-section h1 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.8rem;
        padding: 0 0.3rem;
    }
    
    .service-card {
        height: 180px;
    }
    
    .service-content h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .service-content .cta-button {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 1.5rem 0;
    }
    
    .services-section h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 0 0.2rem;
    }
    
    .service-card {
        height: 160px;
        border-radius: 6px;
    }
    
    .service-content {
        padding: 0.6rem;
    }
    
    .service-content h3 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .service-content .cta-button {
        padding: 0.4rem 0.7rem;
        font-size: 0.75rem;
    }
    
    .highlights h2 {
        font-size: 1.5rem;
    }
}
/* ...existing code acima... */

/* --- CARROSSEL DE VÍDEOS VERTICAL TIKTOK MOSTRANDO 4 POR VEZ --- */
.highlights-carousel-container {
    margin-top: 40px;
    padding: 0 10px;
    width: 100%;
    overflow: hidden;
}

.highlights-carousel-container h2 {
    margin-bottom: 20px !important;
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.highlights-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 500px;
    padding: 0 60px; /* Espaço para as setas */
}

.carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(.4,.2,.2,1);
    will-change: transform;
    width: 100%;
    overflow: visible;
    gap: 20px;
}

.highlight-item {
    flex: 0 0 300px;
    min-width: 300px;
    max-width: 300px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 18px 12px 12px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-item h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.3;
}

.carousel-media {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-video {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    background: #eee;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    display: block;
    margin: 0 auto;
    /* Melhorias para mobile */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
}

.carousel-arrow {
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-arrow:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.left {
    left: 10px;
}

.carousel-arrow.right {
    right: 10px;
}

.carousel-arrow:active,
.carousel-arrow:focus {
    background: var(--secondary-color);
    color: #fff;
}

/* Media Queries para responsividade do carrossel */
@media (max-width: 1200px) {
    .highlights-carousel {
        padding: 0 50px;
    }
    
    .highlight-item {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
    }
    
    .carousel-video {
        height: 350px;
    }
}

@media (max-width: 900px) {
    .highlights-carousel-container h2 {
        font-size: 2rem;
    }
    
    .highlights-carousel {
        padding: 0 40px;
        min-height: 400px;
    }
    
    .highlight-item {
        flex: 0 0 250px;
        min-width: 250px;
        max-width: 250px;
    }
    
    .carousel-video {
        height: 300px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-arrow.left {
        left: 5px;
    }
    
    .carousel-arrow.right {
        right: 5px;
    }
}

@media (max-width: 768px) {
    .highlights-carousel-container {
        padding: 0 5px;
        margin-top: 20px;
    }
    
    .highlights-carousel-container h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .highlights-carousel {
        padding: 0 30px;
        min-height: 350px;
    }
    
    .highlight-item {
        flex: 0 0 220px;
        min-width: 220px;
        max-width: 220px;
    }
    
    .carousel-video {
        height: 250px;
    }
    
    .highlight-item h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 600px) {
    .highlights-carousel-container {
        padding: 0 2px;
    }
    
    .highlights-carousel {
        padding: 0 20px;
        min-height: 300px;
    }
    
    .highlight-item {
        flex: 0 0 200px;
        min-width: 200px;
        max-width: 200px;
    }
    
    .carousel-video {
        height: 220px;
    }
    
    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .carousel-arrow.left {
        left: 2px;
    }
    
    .carousel-arrow.right {
        right: 2px;
    }
}

@media (max-width: 480px) {
    .highlights-carousel-container h2 {
        font-size: 1.5rem;
    }
    
    .highlights-carousel {
        padding: 0 15px;
        min-height: 280px;
    }
    
    .highlight-item {
        flex: 0 0 180px;
        min-width: 180px;
        max-width: 180px;
    }
    
    .carousel-video {
        height: 200px;
    }
    
    .highlight-item h3 {
        font-size: 0.9rem;
    }
}

/* ...existing code abaixo... */