/* ========== PÁGINA DE CLIENTES ========== */
.clientes-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../img/clientes/clientes-hero.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.clientes-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.clientes-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Seção de Depoimentos */
.depoimentos-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.depoimentos-container {
    max-width: 1200px;
    margin: 0 auto;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.depoimento-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.depoimento-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.depoimento-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #0066cc;
}

.depoimento-header h4 {
    margin: 0;
    color: #333;
}

.depoimento-header .estrelas {
    color: #ffc107;
    margin-top: 5px;
}

.depoimento-card p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.depoimento-card p::before {
    content: '"';
    font-size: 3rem;
    color: #0066cc;
    opacity: 0.2;
    position: absolute;
    left: -10px;
    top: -20px;
}

/* Seção de Cases de Sucesso */
.cases-section {
    padding: 80px 20px;
}

.cases-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.case-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
}

.case-card:hover {
    transform: translateY(-10px);
}

.case-img {
    height: 200px;
    overflow: hidden;
}

.case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card:hover .case-img img {
    transform: scale(1.1);
}

.case-content {
    padding: 20px;
    background: white;
}

.case-content h3 {
    margin-top: 0;
    color: #0066cc;
}

.case-content p {
    color: #666;
    margin-bottom: 15px;
}

.case-tag {
    display: inline-block;
    background: #0066cc;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

/* Seção de Parceiros */
.parceiros-section {
    padding: 60px 20px;
    background: #f1f5f9;
}

.parceiros-container {
    max-width: 1200px;
    margin: 0 auto;
}

.parceiros-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.parceiro-item {
    flex: 0 0 calc(20% - 40px);
    min-width: 150px;
    text-align: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.parceiro-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.parceiro-item img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

/* Responsividade */
@media (max-width: 768px) {
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .parceiro-item {
        flex: 0 0 calc(33.333% - 40px);
    }
    
    .clientes-hero {
        padding: 80px 20px;
    }
    
    .clientes-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .parceiro-item {
        flex: 0 0 calc(50% - 40px);
    }
    
    .depoimento-header {
        flex-direction: column;
        text-align: center;
    }
    
    .depoimento-header img {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
/* ===== ESTILOS ESPECÍFICOS PARA PÁGINA DE CLIENTES ===== */
.clientes-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../img/clientes/hero-bg.jpg') center/cover;
    color: white;
    text-align: center;
    padding: 100px 0;
    margin-bottom: 40px;
}

.clientes-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.clientes-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Depoimentos */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.depoimento-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-10px);
}

.depoimento-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.depoimento-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.depoimento-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.estrelas {
    color: #FFD700;
    font-size: 1rem;
}

/* Cases de Sucesso */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.case-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.case-card:hover {
    transform: translateY(-10px);
}

.case-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.case-content {
    padding: 20px;
    background: white;
}

.case-tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

/* Parceiros */
.parceiros-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.parceiro-item {
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parceiro-item img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.parceiro-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Responsivo */
@media (max-width: 768px) {
    .clientes-hero h1 {
        font-size: 2rem;
    }
    
    .clientes-hero p {
        font-size: 1rem;
    }
    
    .depoimentos-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .parceiro-item {
        width: 120px;
    }
}