/* ==========================================
   CLIENTS SECTION (WHO WE SERVE) - DESKTOP
   Dentro de services-section (comparte fondo)
   ========================================== */

.clients-section {
    width: 100%;
    padding: 100px 20px;
    position: relative;
    z-index: 2;
}

.clients-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px; /* MUY CERCA DEL TEXTO */
}

/* ==========================================
   STACK DE TARJETAS - IZQUIERDA
   ========================================== */

.card-stack {
    position: relative;
    width: 350px;
	left: 150px;
    height: 450px;
    perspective: 1000px;
    flex-shrink: 0;
}

.client-card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    background-size: cover;
    background-position: center;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.5);
}

/* Posiciones del stack */
.client-card.pos-1 {
    z-index: 3;
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
}

.client-card.pos-2 {
    z-index: 2;
    transform: translate(-40px, 10px) rotate(-5deg);
    opacity: 0.9;
}

.client-card.pos-3 {
    z-index: 1;
    transform: translate(-80px, 20px) rotate(-10deg);
    opacity: 0.7;
}

.client-card.pos-hidden {
    z-index: 0;
    transform: translate(-120px, 30px) rotate(-15deg);
    opacity: 0;
    pointer-events: none;
}

/* ==========================================
   CONTENIDO DE TEXTO - DERECHA
   ========================================== */

.clients-content {
    flex: 1;
    max-width: 600px;
}

/* Label con isotipo */
.clients-label {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    font-family: 'Domi', sans-serif;
    text-transform: uppercase;
}

.isotipo-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.isotipo-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1); /* Blanco */
    opacity: 0.8;
}

.clients-label span {
    color: #ff5c00;
}

/* Título */
.clients-title {
    font-size: clamp(2.5rem, 4vw, 3.1rem);
    line-height: 1.0;
    margin: 0;
    text-transform: uppercase;
    font-weight: 500;
    color: white;
    font-family: 'Domi', sans-serif;
    /* letter-spacing: -1px; */
}

.clients-title .highlight {
    background: linear-gradient(135deg, #ff8a00 0%, #ff4d00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}