/* =======================
   Depoimentos Section
   ======================= */

#depoimentos {
    position: relative;
    padding: 8rem 1rem;
    padding-bottom: 8rem;
    background: var(--color-navy);
}

.dep-header {
    margin-bottom: 2rem;
}

.dep-categoria {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-green);
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
}

.dep-titulo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-bg);
}

.dep-descricao {
    font-size: 1rem;
    color: var(--color-bg);
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.dep-swiper {
    padding: 1rem 0 3rem;
}


/* =======================
   Cards
   ======================= */
.dep-card {
    background: var(--color-bg);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

.dep-card:hover {
    transform: translateY(-4px);
}

.dep-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.dep-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.dep-texto {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-style: italic;
}

.dep-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #264444;
    margin-bottom: 0.25rem;
}

.dep-content span {
    font-size: 0.875rem;
    color: #777;
}

/* Swiper navegação */
.swiper-button-next,
.swiper-button-prev {
    color: #264444;
}

.custom-shape-divider-top-1758920536 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-top-1758920536 svg {
    position: relative;
    display: block;
    width: calc(105% + 1.3px);
    height: 75px;
}

.custom-shape-divider-top-1758920536 .shape-fill {
    fill: var(--color-green);
}

/** For tablet devices **/
@media (min-width: 768px) and (max-width: 1023px) {
    .custom-shape-divider-top-1758920536 svg {
        width: calc(105% + 1.3px);
        height: 55px;
    }
}

/** For mobile devices **/
@media (max-width: 767px) {
    .custom-shape-divider-top-1758920536 svg {
        width: calc(105% + 1.3px);
        height: 39px;
    }
}

.swiper-pagination-bullet {
    background: #264444;
}

.custom-shape-divider-top-1758918473 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1758918473 svg {
    position: relative;
    display: block;
    width: calc(134% + 1.3px);
    height: 93px;
}

.custom-shape-divider-top-1758918473 .shape-fill {
    fill: var(--color-green);
}

/* ============ Responsivo ============ */
@media (min-width: 768px) {
    .swiper-wrapper {
        display: flex;
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .swiper-wrapper {
        display: flex;
        gap: 1rem;
    }
}