/* ==========================================
   TESTIMONIALS SECTION - DESKTOP
   Sin líneas divisorias
   ========================================== */

:root {
    --testimonials-orange: #FF5C00;
    --testimonials-gray: #666666;
}

.testimonials-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 80px 20px; */
    background: #ffffff;
}

.testimonials-card {
    width: 100%;
    max-width: 1200px;
    height: 500px;
    background: radial-gradient(circle at 20% 50%, #3d1608 0%, #050505 40%, #000 100%);
    border-radius: 24px;
    display: flex;
    position: relative;
    overflow: hidden;
    transition: opacity 0.3s ease;
    padding: 0 80px;
}

/* ==========================================
   SECCIÓN IMAGEN - IZQUIERDA
   ========================================== */

.testimonials-image-section {
    flex: 0 0 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.testimonials-img-container {
    width: 360px;
    height: 360px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
    position: relative;
    flex-shrink: 0;
}

.testimonials-img-container img,
.testimonials-img-container div {
    width: 100%;
    height: 100%;
    display: block;
}

.testimonials-img-container img {
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.testimonials-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff8c00 0%, #ff4d00 50%, #b33600 100%);
}

/* ==========================================
   SECCIÓN CONTENIDO - DERECHA
   ========================================== */

.testimonials-content-section {
    flex: 1;
    padding: 60px 20px 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

/* Header */
.testimonials-header-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Domi', sans-serif;
    text-transform: uppercase;
    border: none; /* SIN LÍNEA */
}

.testimonials-isotipo {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    margin-right: 2px;
}

.testimonials-orange-text {
    color: var(--testimonials-orange);
}

/* Quote */
.testimonials-quote-row {
    border: none; /* SIN LÍNEA */
}

.testimonials-quote-row h2 {
    color: white;
    font-size: clamp(1.8rem, 3vw, 2.25rem);
    font-weight: 400;
    line-height: 1.1;
    margin: 0;
    font-family: 'Domi', sans-serif;
    transition: opacity 0.3s ease;
    border: none; /* SIN LÍNEA */
}

.testimonials-gray-text {
    color: var(--testimonials-gray);
}

/* Footer */
.testimonials-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border: none; /* SIN LÍNEA */
}

.testimonials-author-info {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.testimonials-dash {
    color: var(--testimonials-orange);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 300;
    border: none; /* SIN LÍNEA */
}

.testimonials-name-box h4 {
    color: white;
    margin: 0;
    font-size: 18px;
    letter-spacing: 1px;
    font-family: 'Domi', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.testimonials-name-box p {
    color: #888;
    margin: 4px 0 0;
    font-size: 13px;
    font-family: 'Domi', sans-serif;
    font-weight: 400;
}

.testimonials-slide-number {
    color: white;
    font-size: 22px;
    font-family: 'Domi', sans-serif;
    font-weight: 300;
}

/* ==========================================
   BOTONES DE NAVEGACIÓN
   ========================================== */

.testimonials-nav-arrow {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: all 0.3s ease;
    padding: 0;
    top: 50%;
    transform: translateY(-50%);
}

.testimonials-arrow-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.testimonials-prev {
    left: 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.testimonials-prev .testimonials-arrow-icon {
    filter: brightness(0) invert(1);
}

.testimonials-next {
    right: 15px;
    background: var(--testimonials-orange);
}

.testimonials-next .testimonials-arrow-icon {
    filter: brightness(0) invert(1);
}

.testimonials-nav-arrow:hover {
    transform: translateY(-50%) scale(1.1);
}

.testimonials-prev:active,
.testimonials-next:active {
    transform: translateY(-50%) scale(0.95);
}