/* ===== ESTILOS PARA PÁGINA DE TESTIMONIOS ===== */

.testimonios-section {
    position: relative;
    padding: 100px 20px 80px;
    background: transparent;
    min-height: 100vh;
}

.testimonios-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(17, 24, 39, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.testimonios-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonios-profile {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonios-profile-img {
    flex-shrink: 0;
}

.testimonios-profile-img img {
    height: 128px;
    width: 184px;
    border-radius: 10px;
    object-fit: contain;
}

.testimonios-profile-info {
    flex-grow: 1;
}

.testimonios-profile-info h1 {
    font: var(--font-title);
    color: var(--primary-text);
    margin-bottom: 0.5rem;
}

.testimonios-rating {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

.testimonios-rating-number {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--secondary-text);
    margin-right: 0.5rem;
}

.testimonios-stars {
    color: #FFE100;
    margin-right: 0.5rem;
}

.testimonios-stars i {
    font-size: 1rem;
}

.testimonios-count {
    color: #9ca3af;
}

.testimonios-category {
    color: #9ca3af;
    margin-top: 0.25rem;
}

.testimonios-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.testimonios-btn {
    background: var(--button-blue);
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.testimonios-btn:hover {
    background: var(--button-blue-hover);
    transform: translateY(-2px);
}

.testimonios-btn i {
    margin-right: 0.5rem;
}

.testimonios-btn-secondary {
    background: rgba(55, 65, 81, 0.8);
}

.testimonios-btn-secondary:hover {
    background: rgba(75, 85, 101, 0.9);
}

.testimonios-content {
    padding: 2rem;
}

.testimonios-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.testimonios-content-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.testimonios-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonio-item {
    display: flex;
    gap: 1rem;
}

.testimonio-avatar {
    flex-shrink: 0;
}

.testimonio-avatar img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

.testimonio-body {
    flex-grow: 1;
}

.testimonio-author {
    font-weight: bold;
    color: var(--secondary-text);
    margin-bottom: 0.25rem;
}

.testimonio-meta {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.testimonio-badge {
    font-size: 0.75rem;
    background: #ea580c;
    color: white;
    font-weight: 600;
    padding: 0.125rem 0.375rem;
    border-radius: 0.125rem;
}

.testimonio-rating-stars {
    color: #FFE100;
    margin-right: 0.5rem;
}

.testimonio-rating-stars i {
    font-size: 0.875rem;
}

.testimonio-text {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonio-response {
    margin-top: 1rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(75, 85, 101, 0.8);
}

.testimonio-response-title {
    font-size: 0.875rem;
    font-weight: bold;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.testimonio-response-text {
    color: #9ca3af;
    font-style: italic;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Responsive */
@media (min-width: 640px) {
    .testimonios-profile {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .testimonios-section {
        padding: 80px 15px 60px;
    }

    .testimonios-header,
    .testimonios-content {
        padding: 1.5rem;
    }

    .testimonios-content-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonio-item {
        flex-direction: column;
    }
}
