/* Reconhecimentos Section */
.reconhecimentos {
    padding: calc(var(--header-height) + 20px) 0 60px;
    background: var(--background-light);
}

.reconhecimentos-carousel {
    position: relative;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.carousel-container-rec {
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 0;
    transition: height 0.3s ease;
}

.carousel-track-rec {
    display: flex;
    transition: transform 0.5s ease-in-out;
    align-items: flex-start;
}

.reconhecimento-slide {
    min-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    position: relative;
}

@media (min-width: 1024px) {
    .reconhecimento-slide {
        min-width: 33.333%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .reconhecimento-slide {
        min-width: 50%;
    }
}

.reconhecimento-card {
    background: var(--background-white);
    padding: 15px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    margin: 0 5px;
    border: 1px solid var(--neutral-border);
}

.reconhecimento-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.reconhecimento-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: block;
}

.reconhecimento-image:hover {
    transform: scale(1.02);
}

.reconhecimento-caption {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid var(--neutral-border);
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.carousel-navigation-rec {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 10;
    align-self: center;
}

.carousel-btn-rec {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--main-primary);
    background: white;
    color: var(--main-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.carousel-btn-rec:hover {
    border-color: var(--main-dark);
    color: var(--main-dark);
    box-shadow: var(--shadow-medium);
    transform: scale(1.1);
}

.carousel-btn-rec:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: var(--neutral-border);
    color: var(--text-muted);
}

.carousel-btn-rec:disabled:hover {
    border-color: var(--neutral-border);
    color: var(--text-muted);
    box-shadow: var(--shadow-light);
    transform: none;
}

.carousel-indicators-rec {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    align-self: center;
}

.indicator-rec {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--neutral-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-rec.active {
    background: var(--main-dark);
    transform: scale(1.2);
}

.indicator-rec:hover {
    background: var(--main-primary);
}

@media (max-width: 767px) {
    .reconhecimentos {
        padding: calc(var(--header-height) + 10px) 0 40px;
    }

    .reconhecimentos-carousel {
        gap: 10px;
    }

    .reconhecimento-card {
        padding: 12px;
        margin: 0 2px;
    }

    .carousel-navigation-rec {
        gap: 15px;
    }

    .carousel-btn-rec {
        width: 44px;
        height: 44px;
    }

    .carousel-indicators-rec {
        gap: 6px;
    }

    .indicator-rec {
        width: 10px;
        height: 10px;
    }

    .reconhecimento-caption {
        margin-top: 12px;
        padding-top: 10px;
        font-size: 0.88rem;
    }
}